.custom-container {
  max-width: 1600px;
  margin: 0 auto;
}

.rail-hero-title, .rail-main-heading{
    padding-left:0px !important;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}
.project-item {
    padding: 0px !important;
}
/* Logo */
.navbar-brand img {
  height: 69px;
  width: auto;
}

/* Nav links */
.navbar-nav .nav-link {
  color: #374151 !important;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  padding: 8px 11px !important;
  white-space: nowrap;
  transition: color .2s;
}

.navbar-nav .nav-link:hover {
  color: #10069F !important;
}

/* ================= DESKTOP HOVER DROPDOWN ================= */
@media (min-width: 992px) {

  .nav-item.dropdown {
    position: relative;
  }

  .dropdown-menu {
    display: block;
    width: 320px;
    left: -45px;
    min-width: 320px;
    max-width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: none;
    border-radius: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    padding: 20px 48px;

    will-change: transform, opacity;
  }

  .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown-item {
    border-bottom: 1px solid #bbbbbb;
    padding: 24px 0px 6px 0px !important;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 300;
    color: #374151;
    padding: 9px 0;
    background: transparent !important;
    white-space: nowrap;
    transition: color .2s;
  }


  .dropdown-item:hover {
    color: #10069F;
    font-weight: 700;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 991.98px) {

  .navbar-collapse {
    padding: 16px 0;
  }

  .navbar-nav .nav-link {
    padding: 10px 16px !important;
    border-bottom: 1px solid #f0f0f0;
  }

  .navbar-nav .dropdown-toggle::after {
    float: right;
    margin-top: 7px;
  }

  .dropdown-menu {
    position: static !important;
    transform: none !important;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: #f5f5f5;
    border-left: 3px solid #10069F;
    margin: 0 0 0 16px;
    padding: 4px 16px;
  }

  .dropdown-item {
    font-size: 14px;
    font-weight: 300;
    color: #374151;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
    background: transparent !important;
    transition: color .2s;
  }

  .dropdown-item:last-child {
    border-bottom: none;
  }

  .dropdown-item:hover {
    color: #10069F;
  }
}

/* footer */
/* FOOTER */
.ccs-footer {
  font-size: 14px;
  overflow-x: hidden;
}

/* TOP */
.ccs-footer-top {
  background: #fff;
  padding: 35px 0px 40px 50px;

}

/* LOGO */
.footer-logo {
  max-width: 100px;
}

/* HEADINGS */
.footer-heading {
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}

/* LINKS */
.footer-link,
.footer-links a {
  font-size: 16px;
  color: #909090;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0px;
  transition: 0.3s;
}

.footer-link:hover,
.footer-links a:hover {
  color: #10069F;
}

/* TEXT */
.footer-text {
  color: #777;
  line-height: 1.6;
}

/* SOCIAL */
.footer-social a {
  display: inline-block;
  /* 🔥 IMPORTANT FIX */
  color: rgb(144 144 144);
  margin-right: 15px;
  font-size: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
  color: #10069F;
  transform: translateY(-3px) scale(1.1);
}


/* BOTTOM */
.ccs-footer-bottom {
  background: #10069F;
  color: #909090;
  padding: 25px 50px;
  font-size: 16px;
}

.ccs-footer-bottom a {
  color: #909090;
  margin-right: 20px;
  text-decoration: none;
}

.ccs-footer-bottom a:hover {
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ccs-footer-top {
    padding: 40px 20px;
  }

  .ccs-footer-bottom {
    text-align: center;
  }
}

/*  Hero section */
.hero {
  background: url('../images/hero.webp') center center/cover no-repeat;
  height: 100vh;
  flex-direction: row;
  align-items: center;
  display: flex;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}

h1.first-heading {
  margin-bottom: 0;
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 500;
  color: rgb(255, 255, 255);
  font-size: 72px;
  line-height: 72px;
  text-transform: uppercase;

}

h1.second-heading {
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  font-size: 72px;
  line-height: 72px;

}

/* Initial hidden state */
.hero-content {
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(60px);
  animation: fadeUp 1s ease forwards;
  padding: 60px 0;
}


/* Animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optional: delay for headings (stagger effect) */
.first-heading {
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.2s;
}

.second-heading {
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.5s;
}

.scroll-down-btn {
  position: absolute;
  bottom: -38px;
  /* distance from bottom of hero */
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.75);
  /* text-opacity-75 */
  animation: bounce 1s infinite;
  z-index: 100;
  outline: none;
  padding: 0;
}

.scroll-down-btn:hover {
  color: rgba(255, 255, 255, 1);
  /* hover full opacity */
}

/* Bounce keyframes */
@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-15px);
  }

  60% {
    transform: translateX(-50%) translateY(-7px);
  }
}

.about-section {
  background-color: #f4f4f4;
  padding: 96px 0;
}

.about-section h2 {
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 300;
  color: #000;
  font-size: 36px;
  line-height: 40px;
  margin-bottom: 24px;
}

.highlight {
  color: #10069F;
  font-weight: 700;
}

.about-right p.est-text {
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #000;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 32px;

}

.about-right p.other-text {
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 300;
  color: #000;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 32px;

}

a.learn-more {

  font-size: 18px;
  color: #10069F;
  border: 1px solid #10069F;
  padding: 5px 28px;
  text-transform: uppercase;
  text-decoration: none;
}

a.learn-more:hover {
  background-color: #10069F;
  color: #fff;
}

/* CARD */
/* SERVICES */
.services-section {
  padding: 80px 0;
  /* ✅ top bottom spacing added */
  background: #fff;
}

/* HEADING */
.services-heading {
  padding: 0 20px 40px;
}

/* FULL WIDTH GRID */
.container-fluid {
  padding: 0;
}

.row {
  margin: 0;
}



/* 5 CARDS PER ROW */
.col-lg-2-4 {
  width: 20%;
  padding:0px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .col-lg-2-4 {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .col-lg-2-4 {
    width: 100%;
  }
}

/* CARD */
.service-card {
  position: relative;
  overflow: hidden;
  height: 270px;
  cursor: pointer;

  opacity: 0;
  transform: translateY(40px);
  transition: all 0.3s ease;
}

.service-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* IMAGE */
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

/* OVERLAY */
.overlay-dark {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.overlay-hover {
  position: absolute;
  inset: 0;
  transition: 0.3s;
}

/* HOVER */
/* .service-card:hover img {
        transform: scale(1.1);
      } */

.service-card:hover .overlay-hover {
  background: #0d6efd;
  opacity: 0.6;
}

/* TEXT */
.service-title {
  position: absolute;
  top: 50%;
  font-size: 20px;
  font-family: "Source Sans Pro", sans-serif;
  left: 15px;
  transform: translateY(-50%);
  color: #fff;
  font-weight: 600;
}

/* ARROW */
.arrow-btn {
  position: absolute;
  bottom: 20px;
  left: 15px;
  width: 35px;
  height: 35px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-btn span {
  color: #fff;
}

.service-card:hover .arrow-btn {
  background: #fff;
}

.service-card:hover .arrow-btn span {
  color: #0d6efd;
}

/* NEXT SECTION */
.next-section {
  height: 100vh;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
}


/* DEFAULT OVERLAY */

/* HOVER OVERLAY */
.overlay-hover {
  position: absolute;
  inset: 0;
  /* transition: background 0.3s, opacity 0.3s; */
  background: transparent;
  /* starts transparent */
}

/* HOVER EFFECT */
.service-card:hover .overlay-hover {
  background: #10069F;
  /* your hover color */
  opacity: 1;
}

.video-services-heading {

  padding: 80px 20px 40px;
  padding-left: 60px;
}

.video-services-heading h2 {
  font-size: 40px;
  font-weight: 300;
}

.video-services-heading h2 strong {
  color: rgb(16 6 159);
  font-weight: 700;
}

.video-section {
  height: 500px;
  background: #2b2b2b;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
}

/* LEFT TEXT */
.left-content {
  position: absolute;
  left: 60px;
  color: white;
  max-width: 400px;
}

.left-content h3 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

/* CENTER VIDEO (MAIN FIX) */
.video-wrapper {

  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-wrapper video {
  height: 100%;
  width: 310px;
  border-radius: 5px;
  object-fit: cover;
}

/* LEFT ARROWS */
.controls-left {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  gap: 15px;
}

.arrow-video-btn {
  width: 35px;
  height: 35px;
  border: 1px solid white;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Rotate for previous button */
.arrow-video-btn.rotate {
  transform: rotate(180deg);
}

/* SVG icon */
.arrow-video-btn .icon {
  width: 16px;
  height: 16px;
  fill: white;
  transition: 0.3s;
}

/* Hover effect */
.arrow-video-btn:hover {
  background: white;
}

.arrow-video-btn:hover .icon {
  fill: #2b2b2b;
}

/* RIGHT DOTS */
.controls-right {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  gap: 10px;
}

.video-dot {
  width: 16px;
  height: 16px;
  border: 1px solid white;
  border-radius: 50%;
  cursor: pointer;
}

.video-dot:hover {
  background: #808080;
  border: 2px solid white;
}

.video-dot.active {
  background: white;
}

/* ================= RESPONSIVE ================= */

/* Tablets */
@media (max-width: 992px) {

  .video-section {
    height: 450px;
  }

  .left-content {
    left: 30px;
    max-width: 300px;
  }

  .left-content h3 {
    font-size: 16px;
  }

  .video-wrapper video {
    width: 260px;
    height: 90%;
  }

  .controls-left {
    left: 30px;
    bottom: 30px;
  }

  .controls-right {
    right: 30px;
    bottom: 30px;
  }
}


/* Mobile */
@media (max-width: 768px) {

  .video-section {
    height: auto;
    padding: 40px 20px 80px;
    flex-direction: column;
  }

  /* TEXT TOP */
  .left-content {
    position: static;
    text-align: center;
    margin-bottom: 20px;
  }

  .left-content h3 {
    font-size: 14px;
  }

  /* VIDEO CENTER */
  .video-wrapper video {
    width: 220px;
    height: auto;
  }

  /* CONTROLS CENTERED */
  .controls-left {
    position: absolute;
    left: 20px;
    bottom: 20px;
  }

  .controls-right {
    gap: 5px;
    display: flex;
    position: absolute;
    right: 20px;
    bottom: 20px;
    flex-wrap: wrap;
    max-width: 150px;
    justify-content: flex-end;
    flex-direction: column;
  }

  .custom-contact-title {
    margin-left: 0 !important;
  }

  .dot {
    width: 12px;
    height: 12px;
  }
}


/* Small Mobile */
@media (max-width: 480px) {

  .left-content h3 {
    font-size: 12px;
  }

  .video-wrapper video {
    width: 180px;
  }

  .arrow-video-btn {
    width: 30px;
    height: 30px;
  }

  .arrow-video-btn .icon {
    width: 14px;
    height: 14px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}



/* SECTION BACKGROUND */
/* SECTION */
.ccs-wrapper {
  background: #10069F;
  padding: 100px 0;
  color: #fff;
}

/* INNER (more left spacing control) */
.ccs-inner {
  padding-left: 60px;
  padding-right: 40px;
}

/* HEADER */
.ccs-header {
  margin-bottom: 30px;
}

/* TITLE */
.ccs-heading {
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 20px;
  /* ✅ more space */
}

.ccs-heading span {
  font-weight: 700;
}

/* RIGHT LOGO (more right push) */
.ccs-watermark {
  width: 110px;
  margin-right: 30px;
}

/* SUBTITLE */
.ccs-subheading {
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 25px;
  /* ✅ more gap */
}

/* PARAGRAPH */
.ccs-description {
  font-weight: 300;
  margin-bottom: 80px;
  /* ✅ BIG spacing like design */
  max-width: 850px;
}

/* LOGOS ROW */
.ccs-logos {
  max-width: 1200px;
}

/* LOGOS */
.ccs-brand {
  max-width: 120px;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}

.ccs-brand:hover {
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ccs-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ccs-heading {
    font-size: 28px;
  }

  .ccs-watermark {
    margin-right: 0;
    margin-top: 10px;
  }

  .ccs-header {
    flex-direction: column;
    align-items: flex-start;
  }
}



.project-section {
  height: 500px;
  position: relative;
  overflow: hidden;
  background: #2b2b2b;
}

/* TITLE */
.project-main-title {
  position: absolute;
  top: 70px;
  left: 70px;
  color: white;
  font-size: 36px;
  font-weight: 300;
  z-index: 2;
}

/* IMAGE */
.project-bg-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.project-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.5);
}

/* CONTENT */
.project-content {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  color: white;
  z-index: 2;
}

.project-content h4 {
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  padding-left: 10px;
}

.project-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  padding-left: 10px;
}

/* BUTTON */
.project-btn {
  padding: 8px 45px;
  border: 1px solid white;
  background: transparent;
  color: white;
  transition: 0.3s;
  margin-left: 10px;
}

.project-btn:hover {
  background: white;
  color: #4506AE;
}

/* ARROWS */
.project-controls-left {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  gap: 15px;
  z-index: 2;
}

.project-arrow-btn {
  width: 35px;
  height: 35px;
  border: 1px solid white;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}

.project-arrow-btn.rotate {
  transform: rotate(180deg);
}

.project-icon {
  width: 16px;
  fill: white;
}

.project-arrow-btn:hover {
  background: white;
}

.project-arrow-btn:hover .project-icon {
  fill: black;
}

/* DOTS */
.project-controls-right {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.project-dot {
  width: 15px;
  height: 15px;
  border: 1px solid white;
  border-radius: 50%;
  cursor: pointer;
}

.project-dot:hover {
  background: #808080;
  border: 2px solid white;
}

.project-dot.active {
  background: white;
}






/* NEWS */
.news-section {
  padding: 100px 0;
}

/* TITLE */
.text-primary-custom {
  color: #10069F;
}

/* BUTTON */
.btn-outline-custom {
  border: 2px solid #10069F;
  color: #10069F;
  padding: 10px 20px;
  transition: 0.3s;
  background: transparent;
}

.btn-outline-custom:hover {
  background: #10069F;
  color: #fff;
}

/* GRID */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */
.news-card {
  display: flex;
  height: 220px;
  border: 1px solid #e5e5e5;
  background: #f3f3f3;
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}



/* IMAGE */
.news-img {
  width: 35%;
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.news-card:hover .news-img img {
  transform: scale(1.1);
}

/* CONTENT */
.news-content {
  width: 65%;
  padding: 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-content h5 {
  font-size: 15px;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #000;
}

/* DATE */
.news-date {
  position: absolute;
  bottom: 15px;
  left: 25px;
  font-size: 11px;
  color: #999;
}

/* ARROW */
.news-arrow-btn {
  position: absolute;
  right: 20px;
  top: 80%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #10069F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: 0.3s;
}

.news-card:hover .news-arrow-btn {
  background: #10069F;
  color: #fff;
}

/* RIGHT BOX */
.side-box {
  border: 1px solid #10069F;
  color: #10069F;
  height: 75px;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  transition: 0.3s;
}

.side-box:hover {
  background: #10069F;
  color: #fff;
}

/* RESPONSIVE */
@media(max-width:992px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

/*  CONTACT SECTION */
.custom-contact-section {
  background: #f3f3f3;
  padding: 80px 20px;
}

/* TITLE */
.custom-contact-title {
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 40px;
  margin-left: -50px;
}

.custom-contact-title span {
  font-size: 36px;
  font-weight: 700;
  color: #10069F;

}

/* LEFT INFO */
.custom-contact-info {
  margin-bottom: 30px;
}

.custom-icon {
  width: 32px;
  height: 32px;
  fill: #10069F;
  flex-shrink: 0;
}

.custom-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.custom-contact-item a {
  margin-left: 15px;
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}

.custom-contact-item:hover a {
  color: #10069F;
  transform: scale(1.05);
}

/* FORM */
.custom-contact-form label {
  font-size: 14px;
  text-transform: uppercase;
  color: #2b2b2b;
}

.custom-contact-form input,
.custom-contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 12px;
  border: 1px solid #ddd;
  background: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
}

.custom-contact-form input:focus,
.custom-contact-form textarea:focus {
  outline: none;
  border-color: #10069F;
  background: #fff;
}

/* BUTTON */
.custom-btn-wrapper {
  position: relative;
  width: 160px;
  height: 30px;
  border: 2px solid #10069F;
  cursor: pointer;
  transition: 0.3s;
}

.custom-btn-wrapper span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #10069F;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
}

.custom-btn-wrapper:hover {
  background: #10069F;
}

.custom-btn-wrapper:hover span {
  color: #fff;
}

.about-us-heading {


  transform: translateY(20px);
  animation: slideUpFade 1s ease-out forwards;
  animation-delay: 0.3s;

}

.about-section {
  background: #f5f5f5;
}

/* LEFT HEADING */
.about-heading {
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.1;
  max-width: 450px;
  padding-left: 20px;
  color: #000;
}

/* RIGHT HEADING */
.about-subheading {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: #000;
}

/* PARAGRAPH */
.about-text p {
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 20px;
}

/* LIST */
.about-text ul {
  padding-left: 20px;
}

.about-text ul li {
  margin-bottom: 6px;
  font-weight: 300;
}


.vision-section {
  background: #fff;
}

/* LEFT HEADING */
.vision-heading {
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.4;
  max-width: 420px;
}

/* SECTION TITLES */
.section-title {
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 6px;
  border-bottom: 1px solid #10069F;
  /* cleshar color */
  /* display: inline-block; */
  padding-bottom: 2px;
}

/* TEXT */
.section-text {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 25px;
  color: #000;
}

/* VALUE CARD */
.value-card {
  padding: 10px 0px;
  display: flex;
  flex-direction: column;
}

/* ICON */
.value-icon {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* TITLE */
.value-title {
  font-weight: 700;
  color: #10069F;
  border-bottom: 2px solid #10069F;
  display: inline-block;
  margin-bottom: 8px;
}

/* TEXT */
.value-text {
  font-size: 15px;
  font-weight: 300;
  color: #000;
}


.about-ccs-group-section {
  background: #f5f5f5;
}

/* HEADING */
.about-ccs-group-heading {
  font-size: 2.2rem;
  font-weight: 300;
  color: #10069F;
}

/* CARD */
.about-ccs-group-card {
  padding: 20px 15px;
}

/* IMAGE */
.about-ccs-group-img {
  width: 120px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

/* TITLE */
.about-ccs-group-title {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 20px;
  color: #000000;
}

/* TEXT */
.about-ccs-group-text {
  font-size: 13px;
  font-weight: 300;
  color: #000000;
  margin-top: 5px;
  padding: 5px 28px;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-ccs-group-heading {
    margin-bottom: 30px;
  }
}


/* TOP SECTION */
.timeline-section {
  background: #10069F;
  padding: 80px 0;
  position: relative;
}

/* LINE */
/* LINE */
.timeline-line {
  position: absolute;
  top: 152px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}

/* WRAPPER */
.timeline-wrapper {
  position: relative;
  z-index: 2;
}

/* YEAR ITEM */
.year-item {
  position: relative;
  text-align: center;
  cursor: pointer;
  font-size: 12px;

}

/* DOT EXACTLY ON LINE */
.year-item::before {
  content: "";
  position: absolute;
  top: -40px;
  /* 👈 same offset for all */
  left: 50%;
  transform: translate(-50%, -50%);
  /* 👈 CENTER ON LINE */
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  z-index: 3;
}

/* ACTIVE DOT (RING) */
.year-item.active::before {
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  background: #1e1aa8;
}

/* TEXT */
.year-item {
  margin-top: 60px;
  color: #fff;
}

/* POINTER TRIANGLE */
.timeline-pointer {
  width: 30px;
  height: 30px;
  background: #10069F;
  /* transform: rotate(45deg); */
  position: absolute;

  bottom: -94px;
  transform: translateX(538px) rotate(45deg);
  transition: 0.3s;
  z-index: 999;
}

/* BOTTOM SECTION */
.timeline-content-section {
  background: #f3f3f3;
  padding: 80px 0;
  position: relative;
}

.text-cleshar {
  color: #1e1aa8;
}

#yearText {
  font-size: 18px;
  color: #000;
}

/* ARROWS */
.timeline-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #10069F;
  background: transparent;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #10069F;
  cursor: pointer;
  transition: 0.3s;
}

.timeline-arrow:hover {
  background: #10069F;
  color: #fff;
}

.timeline-arrow-left {
  left: 20px;
}

.timeline-arrow-right {
  right: 20px;
}



/* SECTION */
#about-eot-sec {
  padding: 120px 0;
  background: #ffffff;
  font-family: Arial, sans-serif;
}

/* WRAPPER */
.about-eot-inner {
  position: relative;
  width: 80%;
  margin-left: 120px;
  /* push slightly right like design */
}

/* GREY CONTENT BOX */
.about-eot-content {
  background: #efefef;
  padding: 80px 90px;

  min-height: 600px;
  position: relative;
  transform: translateX(-50px);
  z-index: 1;
}

/* HEADING */
.about-eot-content h2 {
  font-size: 35px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 30px;

  color: #111;
  font-family: 'Source Sans Pro', sans-serif;
}

.about-eot-content h2 span {
  font-weight: 700;
  color: #10069F;
  font-family: 'Source Sans Pro', sans-serif;
}

/* SUB HEADING */
.about-eot-content h5 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #000000;
  width: 55%;
  font-family: 'Source Sans Pro', sans-serif;

}

/* PARAGRAPHS */
.about-eot-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #000000;
  max-width: 520px;
  width: 75%;
  font-family: 'Source Sans Pro', sans-serif;
}

/* IMAGE WRAPPER */
.about-eot-image-wrap {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-35%) translateX(90px);
  width: 50%;
  height: 600px;
  z-index: 2;
}

/* IMAGE */
.about-eot-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .about-eot-inner {
    width: 90%;
    margin-left: 40px;
  }

  .about-eot-content {
    width: 80%;
    padding: 60px;
  }

  .about-eot-image-wrap {
    width: 55%;
    transform: translateY(-50%) translateX(80px);
  }
}

@media (max-width: 992px) {
  .about-eot-inner {
    width: 100%;
    margin: 0;
  }

  .about-eot-content {
    width: 100%;
    padding: 40px 25px;
  }

  .about-eot-image-wrap {
    position: relative;
    width: 100%;
    height: 400px;
    transform: none;
    margin-top: 30px;
  }
}

.board-section {
  background: #f5f5f5;
  min-height: 600px;
}

/* Heading */
.board-title {
  font-size: 2.5rem;
  font-weight: 300;
}

.board-title span {
  font-weight: 700;
  color: #10069F;
}

/* Card */
.board-card {
  width: 100%;
  max-width: 208px;
  margin: auto;
  transition: 0.3s;
}

.theboard-card {

  display: flex;
  justify-content: space-evenly !important;
  padding: 0 50px;
}

/* Image */
.board-img {
  width: 100%;
  height: 208px;
  overflow: hidden;
}

.board-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text */
.board-info {
  padding-top: 10px;
}

.board-info h3 {
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}

.board-info p {
  font-size: 14px;
  color: #777;
  margin: 0;
}

/* Hover */
.board-card:hover h3 {
  color: #10069F;
}


.acc-section {
  background: #fff;
  min-height: 600px;
}

/* Heading */
.acc-title {
  font-size: 2.5rem;
  font-weight: 300;
}

.acc-title span {
  font-weight: 700;
  color: #10069F;
}

/* Wrapper (IMPORTANT FOR GAP) */
.acc-wrapper {
  gap: 40px 80px;
  /* gap-y = 40px, gap-x = 80px */
  margin-top: 50px;
}

/* Logo item */
.acc-item {
  width: 120px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  cursor: pointer;
}

/* Image */
.acc-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Hover effect */
.acc-item:hover {
  transform: scale(1.1);
}

.policies-section {
  background: #f5f5f5;
  padding: 80px 60px;
}

/* HEADING */
.policies-title {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 40px;
}

.policies-title span {
  font-weight: 700;
  color: #10069F;
}

/* GRID (THIS IS KEY FOR EXACT MATCH) */
.policies-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 60px;
  /* EXACT SPACING */
}

/* CARD */
.policy-card {
  width: 100%;
  max-width: 360px;
  min-width: 320px;
  border-bottom: 2px solid #10069F;
}

/* INNER */
.policy-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
}

/* TEXT */
.policy-inner h3 {
  font-size: 22px;
  font-weight: 700;
  color: #10069F;
  margin: 0;
}

/* ARROW */
.abt-arrow-btn {
  width: 34px;
  height: 34px;
  border: 1px solid #10069F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.abt-arrow-btn i {
  color: #10069F;
  font-size: 14px;
  transition: 0.25s;
}

/* HOVER EXACT */
.policy-card:hover .abt-arrow-btn {
  background: #10069F;
}

.policy-card:hover .abt-arrow-btn i {
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {}

@media (max-width: 768px) {
  .policies-section {
    padding: 60px 20px;
  }

  .policies-grid {
    gap: 30px;
  }
}

/* project */
.filters-wrapper {
  padding-top: 4rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 768px) {
  .filters-wrapper {
    padding-top: 6rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .filters-wrapper {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

.filters-box {
  border-bottom: 1px solid #ddd;
  margin: 0 auto 1.5rem auto;
  /* center */
  padding: 2rem 0;
  max-width: 1200px;
}

.filters-title {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
}

.search-input {
  border: none;
  border-bottom: 1px solid #999;
  outline: none;
  width: 20%;
}



/* Dropdown wrapper */
.dropdown-custom {
  position: relative;
}

/* Button */
.dropdown-btn {
  width: 100%;
  text-align: left;
  padding: 6px 35px 6px 10px;
  background: transparent;
  border: none;
  font-weight: 500;
  color: #6b7280;
  position: relative;
}

/* Icon */
.dropdown-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.dropdown-icon svg {
  width: 20px;
  height: 20px;
  color: #9ca3af;
}

/* Dropdown menu (UL) */
.dropdown-menu-custom {
  display: none;
  position: absolute;
  width: fit-content;
  margin-top: 5px;
  right: 10;
  max-height: 240px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 5px 0;
  font-size: 14px;
  color: #6b7280;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  z-index: 30;
}

/* Items */
.dropdown-menu-custom li {
  padding: 8px 12px 8px 40px;
  cursor: pointer;
  list-style: none;
}

/* Hover (IMPORTANT) */
.dropdown-menu-custom li:hover {
  background: #f3f4f6;
  color: #111827;
}

/* Show */
.dropdown-menu-custom.show {
  display: block;
}


.results-heading {
  font-size: 14px;
  padding-top: 4rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* md */
@media (min-width: 768px) {
  .results-heading {
    padding-top: 6rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

/* lg */
@media (min-width: 992px) {
  .results-heading {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}



/* CARD */
.bs-card {
  height: 320px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.bs-card-img {
  width: 100%;
  height: 100%;
}

.bs-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

/* IMAGE ZOOM */
.bs-card:hover img {
  transform: scale(1.05);
}

/* DARK OVERLAY */
.bs-overlay-dark {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* BLUE HOVER OVERLAY */
.bs-overlay-hover {
  position: absolute;
  inset: 0;
  background: transparent;
  transition: 0.3s;
}

.bs-card:hover .bs-overlay-hover {
  background: #10069F;
}

/* TITLE */
.bs-card-title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  padding: 0 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

/* ARROW */
.bs-arrow-wrap {
  position: absolute;
  top: 75%;
  left: 20px;
}

.bs-arrow-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}

/* HOVER ARROW */
.bs-card:hover .bs-arrow-btn {
  background: #fff;
  color: #10069F;
}

.rail-hero-bg {
  z-index: 1;
}

.rail-hero-overlay {
  background: rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.rail-hero-content {
  z-index: 3;
}

.rail-hero-title {
  font-size: 4.1rem;
 
  
  padding-left: 40px;

  transform: translateY(20px);
  animation: railSlideUp 1s ease-out forwards;
  animation-delay: 0.3s;
}

/* SECTION BG */
.rail-service-section {
  background: #f5f5f5;
}

/* LEFT TEXT */
.rail-main-heading {
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.1;
  max-width: 450px;
  padding-left: 20px;
  color: #000;
}

/* RIGHT TITLE */
.rail-subheading {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: #000;
}

/* TEXT */
.rail-text p {
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 20px;
}


.service-section {
  width: 100%;
}

.service-box {
  background: #10069F;
  /* bg-cleshar */
  padding: 60px 20px;
  min-height: 300px;

}

@media (min-width: 768px) {
  .service-box {
    padding: 80px 40px;
  }
}

@media (min-width: 992px) {
  .service-box {
    padding: 100px 80px;
  }
}

/* HEADING */
.service-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
}

/* GRID spacing */
.service-grid>div {
  margin-bottom: 12px;
}

/* TEXT */
.service-grid h3 {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding-right: 10px;
  margin: 0;
}





.rail-cards-section {
  overflow: hidden;
}

/* CARD */
.rail-card {
  position: relative;
  height: 350px;
  cursor: pointer;
  overflow: hidden;
}

/* IMAGE */
.rail-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DARK OVERLAY */
.rail-overlay-dark {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  transition: 0.3s;
}

/* BLUE HOVER OVERLAY */
.rail-overlay-hover {
  position: absolute;
  inset: 0;
  background: transparent;
  transition: 0.3s;
}

/* HOVER EFFECT */
.rail-card:hover .rail-overlay-hover {
  background: #10069F;
}

/* TITLE */
.rail-card-title {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  padding: 0 20px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  z-index: 2;
}

/* ARROW */
.rail-arrow {
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 38px;
  height: 38px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 3;
  transition: all 0.4s ease;
}

/* ICON INSIDE */
.rail-arrow i {
  font-size: 14px;
  transition: transform 0.4s ease;
}

/* HOVER EFFECT */
.rail-card:hover .rail-arrow {
  background: #fff;
  color: #10069F;
}



.swiper-wrapper {
  display: flex;
}

/* Slide - use flex-basis for visible cards */
.swiper-slide {
  flex: 0 0 auto;
  /* Important for Swiper */
  box-sizing: border-box;
}

/* CARD */
.railx-card {
  position: relative;
  height: 320px;
  overflow: hidden;
  cursor: pointer;
}

/* IMAGE */
.railx-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s;
}

/* OVERLAY */
.railx-overlay-dark {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.railx-overlay-hover {
  position: absolute;
  inset: 0;
  background: #10069F;
  opacity: 0;
  transition: 0.4s;
  z-index: 2;
}

/* TITLE */
.railx-title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  padding: 0 20px;
  color: #fff;
  z-index: 3;
  text-align: center;
}

/* CARD ARROW */
.railx-arrow {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 36px;
  height: 36px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 3;
  transition: 0.3s;
}

/* HOVER */
.railx-card:hover .railx-overlay-hover {
  opacity: 1;
}

.railx-card:hover .railx-arrow {
  background: #fff;
  color: #10069F;
}

/* SWIPER NAVIGATION BUTTONS OUTSIDE */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;

  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #10069F;
  z-index: 10;

}

.swiper-button-prev {
}

.swiper-button-next {
}

.swiper-button-prev:hover,
.swiper-button-next:hover {

  color: #10069F;
}

/* hqse */
.hsqe-health-image-wrap {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-41%) translateX(90px);
  width: 50%;
  height: 500px;
  z-index: 2;
}

.hsqe-health-image-wrap1 {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-41%) translateX(90px);
  width: 50%;
  height: 600px;

  z-index: 2;
}

.hsqe-health-image-wrap1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* IMAGE */
.hsqe-health-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* GPX CSS START  */
.gpx-wrapper {
  background: #ffffff;
}

/* IMAGE */
.gpx-img-box {
  width: 476px !important;
  height: 476px !important;
}

.gpx-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT */
.gpx-title {
  font-size: 34px;
  font-weight: 700;
  color: #1006AB;
  margin-bottom: 15px;
}

.gpx-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* LINE */
.gpx-line {
  height: 2px;
  background: #1006AB;
  margin: 20px 0;
  opacity: 0.6;
}

/* READ MORE */
.gpx-hidden {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.gpx-read.active .gpx-hidden {
  max-height: 200px;
  padding-bottom: 50px;
}

/* BUTTON */
.gpx-toggle {
  cursor: pointer;
  gap: 12px;
}

/* CIRCLE */
.gpx-circle {
  width: 36px;
  height: 36px;
  border: 2px solid #1006AB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.gpx-circle:hover {
  background: #1006AB;
}

/* ARROW */
.gpx-arrow {
  width: 16px;
  height: 16px;
  fill: #1006AB;
  transform: rotate(90deg);
  transition: 0.3s;
}

.gpx-circle:hover .gpx-arrow {
  fill: #fff;
}

.gpx-read.active .gpx-arrow {
  transform: rotate(270deg);
}

/* TEXT BUTTON */
.gpx-text-btn {
  color: #1006AB;
  font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .gpx-row {
    flex-direction: column;
  }

  .gpx-title {
    margin-top: 20px;
  }
}


/* TRAINING CSS */
.training-logo-hover {
  max-height: 70px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.training-logo-hover:hover {
  transform: scale(1.1);
}


.hover-text-info:hover {
  color: #10069F !important;
}

.hover-text-cleshar:hover {
  color: #10069F !important;
}

.training-card {
  min-width: 390px;
  max-width: 600px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.training-card:hover {
  background: #10069F;
  color: #fff;
}

.training-card:hover h6,
.training-card:hover p {
  color: #fff !important;
}

.training-card:hover .badge {
  background: #fff !important;
  color: #333 !important;
}

/* FLEX GRID LIKE TAILWIND CALC */
.training-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.training-col {
  width: 100%;
}

@media (min-width:576px) {
  .training-col {
    width: calc(80% - 2rem);
  }
}

@media (min-width:768px) {
  .training-col {
    width: calc(65% - 2rem);
  }
}

@media (min-width:992px) {
  .training-col {
    width: calc(50% - 2rem);
  }
}

@media (min-width: 1200px) {
  .training-col {
    width: calc(50% - 20px);
    /* still 2 per row but wider */
  }
}

/* INPUT STYLE */
.input-underline {
  border: none;
  border-bottom: 1px solid #ccc;
  outline: none;
}

.training-col a {
  display: block;
}

.training-card {
  cursor: pointer;
}


.ui-dropdown {
  position: relative;
  width: 220px;
}

.ui-dropdown-btn {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  background: transparent;
  text-align: left;
  padding: 6px 30px 6px 5px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  position: relative;
}

.ui-dropdown-btn i {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
}

/* DROPDOWN */
.ui-dropdown-menu {
  position: absolute;
  width: 100%;
  background: #fff;
  border: 1px solid #e5e5e5;
  max-height: 260px;
  overflow-y: auto;
  display: none;
  z-index: 999;
}

/* ITEMS */
.ui-dropdown-menu li {
  padding: 10px 12px;
  font-size: 16px;
  color: #777;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-left: 28px;
}

/* HOVER (does NOT change value) */
.ui-dropdown-menu li:hover {
  color: #10069F;
}

/* ACTIVE (✔ + blue text like image) */

.ui-dropdown-menu li.active {
  color: #1a1aff;
  font-weight: 500;
}

/* ✔ check icon (perfect alignment) */
.ui-dropdown-menu li.active::before {
  content: "✔";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  color: #1a1aff;
  font-size: 16px;
}

/* Scrollbar like UI */
.ui-dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.ui-dropdown-menu::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.rail-card-training {
  position: relative;
  height: 250px;
  cursor: pointer;
  overflow: hidden;
}

.rail-card-training:hover .rail-overlay-hover {
  background: #10069F;
}



.academy-contact-btn {
  font-size: 14px;
  width: 140px;
  height: 35px;
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;


}

.academy-contact-btn:hover {
  background-color: #fff;
  color: #10069F;
}



.job-heading {
  font-size: 2.25rem;
  /* same as text-4xl */
  color: #10069F;
  /* your cleshar color */
}

@media (min-width: 576px) {
  .job-heading {
    text-align: left;
  }
}

.job-inner {
  background: #fff;
  transition: all 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.job-card:hover .job-inner {
  background: #10069F;
  color: #fff;
}

.job-title {
  color: #10069F;
  font-weight: 600;
}

.job-card:hover .job-title {
  color: #fff;
}

.job-badge {
  background: #10069F;
  color: #fff;
  font-size: 12px;
}

.job-card:hover .job-badge {
  background: #fff;
  color: #333;
}

/* Tailwind border-b replica */
.result-heading {
  border-bottom: 1px solid #dee2e6;
  margin-bottom: 1.5rem;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
}

@media (min-width: 576px) {
  .result-heading {
    text-align: left;
  }
}

.filter-bar span {
  font-size: 14px;
  color: #444;
  white-space: nowrap;
}

/* Underline input like Tailwind */
.filter-input {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  padding: 2px 5px;
  min-width: 160px;
}

.filter-input:focus {

  box-shadow: none;
  border-color: #10069F;
}


.filter-input.form-control {
  border: none !important;
  border-bottom: 1px solid #ccc !important;
  border-radius: 0;
  padding: 2px 5px;
  min-width: 140px;
  box-shadow: none;
}

.filter-input.form-control:focus {
  border: 1px solid #000000 !important;

  box-shadow: none !important;
  outline: none;
}

/* Small clean dropdown like your UI */
.filter-select {
  border: none !important;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  padding: 2px 25px 2px 5px;
  width: 140px;
  background-color: transparent;
  font-weight: 500;
  color: #666;

}

.filter-select:focus {
  box-shadow: none;
  border-color: #10069F;
}

.filter-input::placeholder {
  font-size: 14px;
  color: #999;
}

/* spacing control */
.filter-bar>div {
  margin-bottom: 8px;
}

.job-inner {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  padding: 20px;
}

/* HOVER (group-hover replica) */
.job-card:hover .job-inner {
  background: #10069F;
  color: #fff;
}

/* TITLE */
.job-title {
  font-size: 16px;
  color: #10069F;
  font-weight: 600;
}

.job-card:hover .job-title {
  color: #fff;
}

/* BADGE */
.job-badge {
  background: #10069F;
  color: #fff;
  font-size: 11px;
}

.job-card:hover .job-badge {
  background: #fff;
  color: #333;
}

/* ICON */
.icon {
  fill: #888;
  transition: 0.2s;
}

.job-card:hover .icon {
  fill: #fff;
}

/* TEXT */
.small-text {
  font-size: 11px;
  font-weight: 300;
}

.job-type,
.job-location {

  font-size: 13px;
}




.job-dropdown {
  position: relative;
  width: 200px;
}

.job-dropdown-btn {
  width: 100%;
  border: none;

  background: transparent;
  text-align: left;

  font-weight: 500;
  color: #666;
  cursor: pointer;
  position: relative;
}

.job-dropdown-btn i {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
}

.job-dropdown-menu {
  position: absolute;
  width: 100%;
  background: #fff;
  border: 1px solid #e5e5e5;
  max-height: 260px;
  overflow-y: auto;
  display: none;
  z-index: 999;
}

.job-dropdown-menu li {
  padding: 10px 12px;
  font-size: 16px;
  color: #777;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-left: 28px;
}

.job-dropdown-menu li:hover {
  color: #10069F;
}

.job-dropdown-menu li.active {
  color: #1a1aff;
  font-weight: 500;
}

.job-dropdown-menu li.active {
  color: #1a1aff !important;
  font-weight: 500;
}

.job-dropdown-menu li.active::before {
  content: "\2713";
  /* ✔ unicode */
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: #1a1aff !important;
  font-size: 14px;
  font-weight: bold;
}

.job-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px 30px;
}

.job-title {
  font-size: 22px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 15px;
}

.job-info {
  font-size: 18px;
  line-height: 1.8;
  color: #222;
}

.apply-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 34px;
  border: 2px solid #1B33D6;
  color: #1b33d6;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 1px;
  transition: 0.3s;
  background: #fff;
}

.apply-btn:hover {
  background: #1b33d6;
  color: #fff;
}

.divider {
  border-top: 1px solid #8F8F8F;
  margin: 40px 0;
}

.section-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  
}

.detail-item {
  margin-bottom: 28px;
}

.detail-label {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.detail-value {
  font-size: 14px;
  color: #111;
}

@media(max-width:768px) {

  .job-title {
    font-size: 20px;
  }

  .section-title {
    font-size: 20px;
  }

  .detail-label {
    font-size: 18px;
  }

  .job-info,
  .detail-value {
    font-size: 14px;
  }

  .apply-btn {
    font-size: 16px;
    padding: 10px 24px;
  }
}

@media (max-width: 991px) {

  .navbar-collapse {
    background: #fff;
    padding: 20px 0;
    max-height: 85vh;
    overflow-y: auto;
  }

  .mobile-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-menu-link {
    flex: 1;
    padding: 14px 0 !important;
    color: #000 !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
  }

  .accordion-icon {
    border: 0;
    background: transparent;
    width: 42px;
    height: 42px;
    font-size: 26px;
    cursor: pointer;
    transition: .3s;
    line-height: 1;
  }

  .accordion-icon[aria-expanded="true"] {
    transform: rotate(45deg);
  }

  .submenu-mobile {
    list-style: none;
    margin: 0;
    padding: 0 20px 12px 35px;
  }

  .submenu-mobile li a {
    display: block;
    padding: 8px 0;
    color: #666;
    text-decoration: none;
    font-size: 14px;
  }

  .nav-item:not(:last-child) {
    border-bottom: 1px solid #eee;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
    
        .about-eot-content{
            transform:none;
                    padding: 20px !important;
        }
        .about-eot-content p{
            max-width:100% !important; 
            width: 100% !important;
        }
        #about-eot-sec{
          padding: 40px 0px !important;
        }
          .hsqe-health-image-wrap1,
  .hsqe-health-image-wrap {
    height: max-content;
    position: relative !important;
    width: fit-content;
    top: auto;
    left: 0;
    right: 0;
    transform: none;
  }
        #location{
    display:none;
}
}
@media (min-width: 320px) and (max-width: 768px) {
  .video-services-heading{
    padding-left: 20px !important;
  }
  .project-main-title {
    padding-left: 10px !important;
  }
  .project-section{
    padding-left: 20px;
  }
  .project-controls-left, .project-content, .project-main-title{
    left: 0 !important;
  }
  div#job-desc {
    word-break: break-all;
}
  .hero{
    justify-content: center !important;
  }
  h1.fw-light.text-white.text-uppercase.display-4.ps-5 {
    padding-left: 10px !important;
    margin: 0;
}
.job-wrapper {
  padding: 15px !important;
}
  .timeline-arrow {
    transform: translateY(-47px);
  }
  .timeline-line {
  top: 139px !important;
  }
  .modal-box .col-12.col-md-5.mb-5.mb-md-0 {
    margin-bottom: 0 !important;
}
.contact-item{
  margin-bottom: 5px !important;
}
  .position-absolute.top-50.start-0.translate-middle-y.px-3.pt-5.px-md-5.px-lg-5{
    padding: 0px 20px !important;
}

  .service-desktop{
    display: none !important;
  }
  .navbar-transparent .mobile-menu-item a.mobile-menu-link, .navbar-transparent a.nav-link{
    color: #000 !important;

  }
  .modal-inner {
    padding: 20px !important;
}
h1.modal-title {
    font-size: 28px;
}
 .modal-subtitle {
margin-bottom: 20px !important;

}
  .about-eot-content ul {
    width: 100% !important; 
}
  #location {
    display: none !important;
  }
.about-us-heading{
    transform:none !important;
}
.btn-send-custom , .btn-cancel-custom{
  width: 120px !important;
}

h1.first-heading, h1.second-heading{
  font-size: 48px !important;
}
#location{
    display:none;
}
.navbar-brand{
  padding-left: 20px !important;
}
#about-eot-sec{
    padding:40px 0px !important;
}
.rail-text{
    padding-bottom:20px!important;
}
.rail-cards-section, .services-section{
    padding:20px 0px !important;
}
.rail-main-heading {
        font-size: 26px !important;
        padding-left: 0px !important;
        line-height: normal;
    }
.about-section {
    padding: 20px  0!important;}
.about-heading {
    padding-left: 0 !important;}
    
    .about-us-heading {
        padding: 0  20px !important;
        transform: none !important;
        font-size: 40px !important;
    }
.value-card {
    padding: 0px !important;
}
  .hsqe-health-image-wrap1,
  .hsqe-health-image-wrap {
    height: max-content;
    position: relative !important;
    width: fit-content;
    top: auto;
    left: 0;
    right: 0;
    transform: none;
  }

  .gpx-img-box {
    width: auto !important;
    height: auto !important;
  }

  .rail-main-heading {
    padding-left: 0px !important;
  }

  .ccs-footer-top {
    padding: 40px 0px;
  }

  .about-eot-content {
    padding: 20px !important;
    transform: none;
  }

  .about-eot-content h5,
  .about-eot-content h1,
  .about-eot-content p {

    width: fit-content !important;
  }

  .timeline-pointer {
    transform: translateX(200px) rotate(45deg);
  }

  .theboard-card {
    padding: 10px !important;
  }

  .rail-hero-title {
      padding: 0 !important;
    font-size: 45px;
  }

}


:root {
  --cleshar: #10069F;
  --darkgrey: #333333;
  --mediumgrey: #999999;
}

.open-btn {
  background: var(--cleshar);
  color: #fff;
  border: none;
  padding: 12px 32px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 0.04em;
}

.open-btn:hover {
  background: #142e6e;
}

/* ── Overlay ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  overflow-y: auto;
  background: rgba(107, 114, 128, 0.75);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.active {
    display: block !important;
    z-index: 9999999999 !important;
}

@media (min-width: 640px) {
  .modal-overlay {
    align-items: center;
    padding: 0;
  }
}

/* ── Modal box ── */
.modal-box {
  background: #fff;
  border-radius: 8px;
  width: 100%;
  min-width: 350px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@media (min-width: 640px) {
  .modal-box {
    width: 80%;
    margin: 2rem auto;
  }
}

/* ── Inner padding ── */
.modal-inner {
  padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
  .modal-inner {
    padding: 4rem 2.5rem;
  }
}

@media (min-width: 1024px) {
  .modal-inner {
    padding: 4rem 5rem;
  }
}

/* ── Heading ── */
.modal-title {
  font-size: 2.25rem;
  font-weight: 300;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.modal-title span {
  font-weight: 700;
  color: var(--cleshar);
}

.modal-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  color: #333;
}

/* ── Contact icons ── */
.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  gap: 1rem;
}

.contact-item svg {
  color: var(--cleshar);
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

.contact-item a {
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

.contact-item a:hover {
  color: var(--cleshar);
  transform: scale(1.05);
}

/* ── Form ── */
.field-label {
  display: block;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--darkgrey);
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.position-text {
  color: var(--darkgrey);
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.4;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.3);
  color: var(--darkgrey);
  padding: 0.75rem;
  border: 1px solid rgba(153, 153, 153, 0.25);
  border-radius: 0;
  outline: none;
  font-size: 1rem;
  transition: border-color 0.2s, background 0.2s;
}

.form-input:focus {
  border-color: var(--cleshar);
  background: #fff;
  box-shadow: none;
  outline: none;
}

/* ── Buttons ── */
.btn-cancel-custom {
  position: relative;
  height: 40px;
  width: 160px;
  background: transparent;
  border: 2px solid var(--darkgrey);
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-cancel-custom span {
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--darkgrey);
  transition: color 0.2s;
  white-space: nowrap;
}

.btn-cancel-custom:hover {
  background: var(--darkgrey);
}

.btn-cancel-custom:hover span {
  color: #fff;
}

.btn-send-custom {
  position: relative;
  height: 40px;
  width: 160px;
  background: transparent;
  border: 2px solid var(--cleshar);
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-send-custom span {
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--cleshar);
  transition: color 0.2s;
  white-space: nowrap;
}

.btn-send-custom:hover {
  background: var(--cleshar);
}

.btn-send-custom:hover span {
  color: #fff;
}

/* ── Field spacing ── */
.field-group {
  margin-top: 2rem;
}



/* ===========================
    HERO
    =========================== */

.csr-hero {
  position: relative;
  height: 450px;
  background-image: url("../images/hero-image.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
}

.csr-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.csr-hero-content {
  position: relative;
  z-index: 2;
}

.csr-hero h1 {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 900px;
  line-height: 1.1;
  white-space: nowrap;
}

/* ===========================
    COMMON SECTION
    =========================== */

.csr-section {
  padding: 90px 0;
}

.csr-title {
  font-size: 36px;
  line-height: 40px;
  color: #222;
  font-weight: 300;
  margin-bottom: 40px;
}

.csr-title span {
  color: #10069f;
  font-weight: 700;
}

.csr-subtitle {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.6px;
  max-width: 850px;
  margin-bottom: 60px;
  color: #222;
  font-family:
    Source Sans Pro,
    sans-serif;
}

/* ===========================
    OUR PEOPLE
    =========================== */

.people-card {
  padding-right: 30px;
  position: relative;
  padding-right: 35px;
}

.people-svg-arrow svg {
  width: 192px;
  height: 192px;
}

.people-svg-arrow {
  position: absolute;
  left: -33%;
  top: 22%;
}

.people-icon svg {
  width: 80px;
  color: #10069f;
}

.people-card p {}

.people-card h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #10069f;
}

.people-card h4 {
  font-size: 24px;
  color: #10069f;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.people-card h4 {
  color: #000010;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 600;
  text-transform: uppercase;
}

/* ===========================
    COMMUNITY
    =========================== */

.community-section {
  background: #efefef;
}

.community-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.community-card h5 {
  font-size: 24px;
  color: #2024c8;
  font-weight: 700;
  margin-top: 18px;
}

.community-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

/* ===========================
    RESPONSIVE
    =========================== */

@media (max-width: 991px) {
  .csr-hero {
    height: 300px;
  }

  .csr-hero h1 {
    font-size: 42px;
  }

  .csr-title {
    font-size: 34px;
  }

  .people-card {
    margin-bottom: 40px;
    padding-right: 0;
  }

  .community-card {
    margin-bottom: 35px;
  }
}

@media (max-width: 767px) {
  .csr-hero h1 {
    font-size: 32px;
    white-space: normal;
  }

  .csr-section {
    padding: 60px 0;
  }

  .csr-title {
    font-size: 28px;
  }

  .csr-image-box {
    margin-top: 30px;
  }

  .csr-image-box img {
    height: 350px;
  }
}

.csr-page {
  width: 100%;
}

div#careerModalOverlay{
  z-index: 11111 !important;
}
h3.railx-title {
    text-align: left;
    font-size: 1.25rem;
    line-height: 1.75rem;
    /* font-size: 15px; */
    /* transform: none; */
    text-transform: uppercase;
}
.about-eot-content ul {
    width: 62%;
}
.about-us-heading{
  padding-top: 0px !important;

}
.position-absolute.top-50.start-0.translate-middle-y.px-3.pt-5.px-md-5.px-lg-5 {
    padding-top: 0px !important;
    padding-left:0px !important;
}
.navbar-transparent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
        background-color: rgba(43, 43, 43, 0.3) !important;

}

.navbar-transparent .nav-link,
.navbar-transparent .navbar-brand {
    color: #fff !important;
}

.navbar-transparent .navbar-toggler-icon {
    filter: invert(1);
}

/* Dropdown stays white/light for readability */
.navbar-transparent .dropdown-menu {
    background-color: #fff;
}

.navbar-transparent .dropdown-item {
    color: #212529 !important;
}

.navbar-transparent .dropdown-item:hover {
    background-color: #f0f0f0;
    color: #10069F !important;
}
body {
    max-width: 1600px;
    margin: 0 auto;
}

.hero-policy {
      background: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1600&q=80') center/cover no-repeat;
      min-height: 55vh;
      position: relative;
    }
    .hero-policy::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.35);
    }
    .hero-title {
      position: relative;
      z-index: 1;
      color: #fff;
      font-weight: 700;
      font-size: clamp(2rem, 5vw, 3.5rem);
      text-transform: uppercase;
      line-height: 1.15;
    }

    .section-bg { background: #f4f4f2; }

    .section-heading { font-size: 2rem; font-weight: 300; }
    .section-heading .accent { color: var(--cleshar); font-weight: 700; }

    .policy-list { max-width: 400px; }

    .policy-link {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 0;
      border-bottom: 1.5px solid var(--cleshar);
      text-decoration: none;
    }
    .policy-link:last-child { border-bottom: none; }

    .policy-name {
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--cleshar);
      margin: 0;
    }

    .arrow-btn-policy {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1.5px solid var(--cleshar);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--cleshar);
      transition: background 0.2s, color 0.2s;
    }
    .policy-link:hover .arrow-btn-policy {
      background: var(--cleshar);
      color: #fff;
    }
    .hero-privacy {
      background: url('https://images.unsplash.com/photo-1563986768609-322da13575f3?w=1600&q=80') center/cover no-repeat;
      min-height: 55vh;
      position: relative;
    }
    .hero-privacy::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.40);
    }
    .hero-title {
      position: relative;
      z-index: 1;
      color: #fff;
      font-weight: 700;
      font-size: clamp(2rem, 5vw, 3.5rem);
      text-transform: uppercase;
      line-height: 1.15;
    }

    .section-bg { background: #f4f4f2; }

    h1.page-title { font-size: 2.2rem; font-weight: 300; }
    h1.page-title span { color: var(--cleshar); font-weight: 700; white-space: nowrap; }

    h2.section-heading {
      font-size: 1.1rem;
      font-weight: 700;
      text-transform: uppercase;
      color: #212529;
      margin-bottom: 0.5rem;
    }

    h3.notice-subtitle {
      font-size: 0.9rem;
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 2rem;
    }

    p.content-text { font-weight: 300; font-size: 1rem; }
    p.content-bold { font-weight: 600; font-size: 1rem; }

    ul.content-list {
      font-weight: 300;
      font-size: 1rem;
      padding-left: 2rem;
    }
    ul.content-list li { margin-bottom: 0.5rem; }

    a.cleshar-link {
      color: inherit;
      text-decoration: underline;
    }
    a.cleshar-link:hover { color: var(--cleshar); }

    .address-block { padding-left: 1.25rem; font-weight: 300; }



    /* MOBILE ONLY */
.mobile-service-slider {
    position: relative;
    width: 100%;
    height: 620px;
    overflow: hidden;
    background: #000;
}

/* IMAGE */
.mobile-slider-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.mobile-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .4s ease;
}

/* OVERLAY */
.mobile-slider-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.75),
            rgba(0,0,0,0.25),
            rgba(0,0,0,0.15)
        );
    z-index: 2;
}

/* CONTENT */
.mobile-slider-content {
    position: absolute;
    left: 20px;
    bottom: 150px;
    z-index: 5;
    color: #fff;
}

.mobile-slider-content h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 22px;
    line-height: 1.1;
}

/* BUTTON */
.mobile-service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 165px;
    height: 46px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: .5px;
    transition: .3s ease;
}

.mobile-service-btn:hover {
    background: #fff;
    color: #000;
}

/* CONTROLS */
.mobile-slider-controls {
    position: absolute;
    bottom: 45px;
    left: 20px;
    right: 20px;
    z-index: 10;

    display: flex;
    align-items: center;
}

/* ARROWS */
.mobile-arrow-wrap {
    display: flex;
    gap: 12px;
}

.mobile-arrow-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid #fff;
    background: transparent;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .3s ease;
}

.mobile-arrow-btn:hover {
    background: #fff;
    color: #000;
}

.mobile-arrow-icon {
    width: 18px;
    fill: currentColor;
}

.rotate {
    transform: rotate(180deg);
}

/* DOTS */
.mobile-dots {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 18px;
    flex-wrap: wrap;
}

.mobile-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: transparent;
    transition: .3s ease;
}

.mobile-dot.active {
    background: #fff;
    transform: scale(1.1);
}

/* HIDE ON DESKTOP */
@media(min-width:992px){
    .mobile-service-slider{
        display:none !important;
    }
}
.modal-box .col-12.col-md-5.mb-5.mb-md-0 {
    margin-bottom: 0 !important;
}
.news-card-img img{
  object-fit: cover;
  height: 450px;
} 
#scrollProgressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: #10069F;
  z-index: 9999;
  transition: width 0.1s ease;
}
.services-heading h2 strong {
    color: rgb(16 6 159);
    font-weight: 700;
}
.services-heading h2 {
    font-size: 40px;
    font-weight: 300;
}
h1.news-card-title.mb-4 {
    font-size: 32px;
    font-weight: 500;
    color: #10069f;
    line-height: 40px;
}