body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #0f172a;
  background: linear-gradient(180deg, #fbf6f6 0%, #f3f7fb 100%);
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
}

.myGreen {
  color: #e3000f;
}

.myBgGreen {
  background-color: #e3000f;
}

/*** Spinner Start ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .8s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .8s ease-out, visibility 0s linear .0s;
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity .8s ease-out, visibility 0s linear .0s;
  -moz-transition: opacity .8s ease-out, visibility 0s linear .0s;
  -ms-transition: opacity .8s ease-out, visibility 0s linear .0s;
  -o-transition: opacity .8s ease-out, visibility 0s linear .0s;
}

/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

.btn {
  text-transform: uppercase;
  font-weight: 500;
  transition: .5s;
}

.btn.btn-primary {
  box-shadow: inset 0 0 0 0 var(--bs-dark);
}

.btn.btn-primary:hover {
  box-shadow: inset 200px 0 0 0 var(--bs-dark) !important;
  color: var(--bs-primary) !important;
}

.btn.btn-dark {
  box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-dark:hover {
  box-shadow: inset 200px 0 0 0 var(--bs-primary);
  color: var(--bs-light) !important;
}



/*** Topbar Start ***/

.search-btn {
  position: relative;
  width: 100%;
  padding: 0 0 0 25px;
}

.search-btn .form-group {
  width: 100%;
}

.search-btn button {
  position: absolute;
  right: 25px;
}

@media (max-width: 992px) {
  .search-btn {
    display: none;
  }
}

@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
  }

  .search-btn {
    display: none;
  }

  .topbar-info {
    flex-direction: column;
  }

  .topbar-info a {
    padding: 0 0 10px 0;
  }

  .topbar-icon {
    padding: 0 0 10px 0;
  }
}

@media (max-width: 576px) {
  .topbar-top {
    display: none;
  }
}

/*** Topbar End ***/

/*** Navbar Start ***/
.navbar .navbar-nav {
  padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
  padding: 15px;
  color: var(--bs-dark);
  font-weight: 500;
  font-size: 16px;
  outline: none;
  transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--bs-primary);
  transition: .5s;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 800;
  vertical-align: middle;
  margin-left: 8px;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    transition: .5s;
    opacity: 0;
  }
}

.dropdown .dropdown-menu a:hover,
.dropdown .dropdown-menu a.active {
  background: var(--bs-dark);
  color: var(--bs-primary);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  transition: .5s;
  opacity: 1;
}

.navbar-toggler {
  background: var(--bs-secondary);
  color: var(--bs-light) !important;
  padding: 5px 12px;
  border: 2px solid var(--bs-primary) !important;
}

.container-fluid.bg-light.navbar-fixed {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  /* above page content but below modals/tooltips */
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  will-change: transform;
  transition: box-shadow 220ms ease, transform 220ms ease;
  /* keep original background (bg-light) so design doesn't change */
  background-color: inherit;
}

/* subtle shadow so pinned navbar reads as overlay (optional visual only) */
.container-fluid.bg-light.navbar-fixed {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* small upward shift animation when it first pins (feels smoother) */
.container-fluid.bg-light.navbar-fixed.show-up {
  transform: translateY(0);
}

/* ensure the navbar's inner container still aligns like before */
.container-fluid.bg-light.navbar-fixed .container {
  max-width: 1140px;
  /* keeps same container sizing — no visual change */
  margin: 0 auto;
}

/* make sure mobile toggler stays on top (if needed) */
.container-fluid.bg-light.navbar-fixed .navbar-toggler {
  z-index: 1060;
}


/*** Navbar End ***/



/*** Carousel Start ***/

.carousel-item {
  position: relative;
  height: 100vh;
  min-height: 500px;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
}

/* Add dark overlay for better text visibility */
.carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.75) 100%);
  z-index: 1;
}

/* Center align caption text */
.carousel-caption {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 0 10%;
  z-index: 2;
}

/* ---------- Small Heading (h4) ---------- */
.carousel-caption h4 {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid #ffb400;
  padding: 8px 14px;
  border-radius: 6px;
  color: #fff;
  font-size: clamp(1rem, 1.4vw + 0.3rem, 1.25rem);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* ---------- Main Heading (h1) ---------- */
.carousel-caption h1 {
  font-weight: 800;
  line-height: 1.1;
  font-size: clamp(1.8rem, 3.5vw + 0.8rem, 3.8rem);
  margin-top: 0.8rem;
  margin-bottom: 1.2rem;
  background: #f6f7fb;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
  position: relative;
}

/* Underline accent animation */
.carousel-caption h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #e3000f, #ffb400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.carousel-item.active h1::after {
  transform: scaleX(1);
}

/* ---------- Button Styling ---------- */
.carousel-caption .btn {
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 50px;
  /* background: linear-gradient(90deg, #e3000f, #ff7a00); */
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.carousel-caption .btn:hover {
  background: linear-gradient(90deg, #ff7a00, #ffb400);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 122, 0, 0.3);
}

/* ---------- Carousel Controls ---------- */
.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(230, 0, 0, 0.9);
  border: none;
  border-radius: 50%;
  transition: all 0.3s ease;
  opacity: 1;
  z-index: 3;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: linear-gradient(90deg, #ff7a00, #e3000f);
  transform: translateY(-50%) scale(1.05);
}




/* ---------- Indicators ---------- */
#carouselId .carousel-indicators li {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid #e3000f;
  transition: all 0.3s ease;
}

#carouselId .carousel-indicators .active {
  background: #e3000f;
  transform: scale(1.3);
}

/* ---------- Responsive Design ---------- */
@media (max-width: 992px) {
  .carousel-caption {
    padding: 0 8%;
    text-align: center;
    justify-content: center;
  }

  .carousel-caption h1::after {
    left: 50%;
    transform: translateX(-50%) scaleX(0);
  }

  .carousel-item.active h1::after {
    transform: translateX(-50%) scaleX(1);
  }

  .carousel-caption h4 {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .carousel-item {
    height: 450px;
  }

  .carousel-caption h1 {
    font-size: clamp(1.4rem, 5vw + 0.5rem, 2.5rem);
  }

  .carousel-caption h4 {
    font-size: 1rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

@media (max-width: 576px) {
  .carousel-caption {
    padding: 0 5%;
  }

  .carousel-caption h1 {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .carousel-caption h4 {
    font-size: 0.9rem;
  }

  .carousel-caption .btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}

/*** Carousel End ***/


/*** About Start ***/

.about-section {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 50%, #f0f2fb 100%);
  position: relative;
  overflow: hidden;
}

/* decorative soft accent */
.about-section::before {
  content: "";
  position: absolute;
  top: -15%;
  right: -20%;
  width: 60%;
  height: 60%;
  transform: rotate(18deg);
  background: linear-gradient(135deg, rgba(230, 0, 0, 0.08), rgba(255, 187, 0, 0.06));
  border-radius: 40%;
  z-index: 0;
}

/* ---------- Image ---------- */
.about-img {
  position: relative;
  z-index: 2;
}

.shape-left,
.shape-right {
  position: absolute;
  width: 150px;
  height: 220px;
  border-radius: 18px;
  z-index: 1;
  filter: blur(10px);
  opacity: 0.6;
  -webkit-filter: blur(10px);
}

.shape-left {
  left: -6%;
  top: 18%;
  transform: rotate(20deg);
  background: linear-gradient(180deg, #e3000f, #a80000);
}

.shape-right {
  right: -6%;
  bottom: 18%;
  transform: rotate(-18deg);
  /* background: linear-gradient(180deg, #e3000f, #a80000); */
}

.main-img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  position: relative;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 8px solid rgba(0, 0, 0, 0.6);
}

.experiences {
  position: absolute;
  top: -20px;
  right: -10px;
  width: 150px;
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  z-index: 4;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: floatUp 6s ease-in-out infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(-8px);
  }

  50% {
    transform: translateY(6px);
  }

  100% {
    transform: translateY(-8px);
  }
}

.years {
  font-size: 46px;
  color: #e3000f;
  margin-bottom: 0;
}

/* ---------- Content ---------- */
.badge-about {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 30px;
  border: 2px solid #e3000f;
  font-weight: 600;
  color: #111;
}

.about-title {
  font-weight: 800;
  background: linear-gradient(90deg, #e3000f, #ffb400);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.about-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 5px;
  border-radius: 5px;
  margin-top: 10px;
  background: linear-gradient(90deg, #e3000f, #ffb400);
}

.about-desc {
  color: #4a4a4a;
  font-size: 1.05rem;
  text-align: justify;
}

/* ---------- Service Boxes ---------- */
.service-box {
  background: #dcdcdc;
  color: #111;
  height: 130px;
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(230, 0, 0, 0.25);
}

.icon-wrap-about {
  background: rgba(255, 255, 255, 0.675);
  border-radius: 12px;
  width: 70px;
  height: 70px;
  margin: 0 auto 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrap-about i {
  color: #e3000f;
}

.service-label {
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.2;
}

/* ---------- Button ---------- */
.find-btn {
  /* background: linear-gradient(90deg, #e3000f, #ffb400); */
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 30px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.find-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* ---------- Responsive ---------- */

/* Medium Devices (Tablets ≤992px) */
@media (max-width: 992px) {
  .about-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .about-title {
    font-size: 2rem;
  }

  .main-img {
    border: 6px solid rgba(0, 0, 0, 0.6);
  }

  .experiences {
    position: absolute;
    right: 0;
    top: -10px;
    width: 130px;
  }

  .service-box {
    padding: 12px;
  }

  .iicon-wrap-about {
    width: 60px;
    height: 60px;
  }
}

/* Small Devices (Phones ≤768px) */
@media (max-width: 768px) {
  .about-section::before {
    display: none;
  }

  .shape-left,
  .shape-right {
    display: none;
  }

  .main-img {
    border: 5px solid rgba(0, 0, 0, 0.6);
    border-radius: 14px;
  }

  .experiences {
    position: relative;
    width: 100%;
    max-width: 200px;
    margin: 20px auto 0 auto;
    animation: none;
  }

  .about-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .about-desc {
    text-align: center;
  }

  .services-row {
    justify-content: center;
  }

  .service-box {
    margin-bottom: 15px;
  }

  .find-btn {
    width: 100%;
    margin-top: 20px;
  }
}

/* Extra Small Devices (≤480px) */
@media (max-width: 480px) {
  .about-title {
    font-size: 1.6rem;
  }

  .years {
    font-size: 38px;
  }

  .service-label {
    font-size: 0.85rem;
  }
}



/*** About End ***/


/*** Services Start ***/

/* Heading pill */
.label-pill {
  border-color: rgba(0, 0, 0, 0.08);
  position: relative;
}

.label-pill .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: linear-gradient(45deg, #e3000f, #ff8a00);
  border-radius: 50%;
  margin-right: .6rem;
  vertical-align: middle;
}

/* Card glass */
.card-glass {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(245, 245, 246, 0.95));
  border-radius: 18px;
  padding: 1.8rem;
  border: 1px solid rgba(16, 24, 40, 0.03);
  box-shadow: 0 10px 25px rgba(16, 24, 40, 0.06);
  transition: transform .32s cubic-bezier(.2, .9, .2, 1), box-shadow .28s;
  height: 100%;
  min-height: 360px;
  /* ensures visual consistency on tall screens */
}

/* hover */
.services-item:hover.card-glass,
.services-item:focus-within.card-glass {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(16, 24, 40, 0.12);
}

/* media */
.card-media {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.1rem;
  background: #f5f5f6;
  position: relative;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s cubic-bezier(.2, .9, .2, 1);
}

.services-item:hover .card-media img {
  transform: scale(1.04);
}

/* badge on image */
.media-badge {
  position: absolute;
  right: 12px;
  top: 12px;
  background: linear-gradient(90deg, #e3000f, #ff8a00);
  color: #fff;
  padding: .35rem .6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .75rem;
  box-shadow: 0 8px 22px rgba(227, 0, 15, 0.12);
  z-index: 3;
}

/* card content */
.card-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  gap: .6rem;
  height: 100%;
}

.card-body h4 {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 600;
  color: #111827;
}

.card-body .muted {
  margin: 0;
  color: #6b7280;
  font-size: .96rem;
  line-height: 1.6;
  flex-grow: 1;
}

/* button below paragraph */
.Service-card-footer {
  margin-top: .8rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

.learn-btn {
  background: linear-gradient(90deg, #e3000f, #ff8a00);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 6px 18px rgba(255, 77, 0, 0.18);
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease;
}

.learn-btn:hover,
.learn-btn:focus {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* small corner badge if used */
.card-badge {
  position: absolute;
  top: -10px;
  right: 18px;
  background: linear-gradient(90deg, #e3000f, #ff8a00);
  color: #fff;
  padding: .35rem .65rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .75rem;
  box-shadow: 0 6px 18px rgba(255, 77, 0, 0.12);
  z-index: 5;
}

/* Swiper styling */
.swiper {
  padding-bottom: 3.2rem;
}

.swiper-wrapper {
  align-items: stretch;
}

/* important for equal heights */
.swiper-slide {
  display: flex;
  align-items: stretch;
}

/* nav & pagination */
.swiper-button-prev,
.swiper-button-next {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e3000f;
  box-shadow: 0 8px 26px rgba(16, 24, 40, 0.06);
  transition: transform .18s ease, color .18s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  transform: translateY(-2px);
  color: #ff8a00;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px;
}

.swiper-pagination-bullet {
  background: #e3000f;
  opacity: .45;
  transition: transform .18s ease, opacity .18s ease;
}

.swiper-pagination-bullet-active {
  background: linear-gradient(90deg, #e3000f, #ff8a00);
  opacity: 1;
  transform: scale(1.04);
}

/* responsive adjustments */
@media (max-width:1199px) {
  .card-media {
    height: 180px
  }

  .card-glass {
    min-height: 340px
  }

  .card-body h4 {
    font-size: 1.08rem
  }
}

@media (max-width:992px) {
  .card-media {
    height: 160px
  }

  .card-glass {
    padding: 1.5rem;
    min-height: 300px
  }

  .learn-btn {
    padding: 9px 20px
  }
}

@media (max-width:576px) {
  .card-media {
    height: 140px
  }

  .card-glass {
    padding: 1.1rem;
    min-height: 280px
  }

  .learn-btn {
    padding: 8px 18px;
    font-size: .95rem
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 36px;
    height: 36px
  }
}

/* performance helper */
img[loading="lazy"] {
  display: block;
  max-width: 100%;
  height: auto
}


/*** Services End ***/

/*** Project Start ***/
.project-item {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 18px 18px 18px 18px;
  overflow: hidden;
}

.project-item::before {
  content: "";
  width: 100%;
  height: 40%;
  background: var(--bs-dark);
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  border-radius: 10px 10px 10px 10px;
}


.project-item::after {
  content: "";
  width: 100%;
  height: 60%;
  background: var(--bs-primary);
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 1;
  border-radius: 10px 10px 10px 10px;
}

.project-left {
  width: 180px;
  height: 70px;
  position: absolute;
  top: 22%;
  left: -18%;
  rotate: 30deg;
  z-index: 2;
}

.project-right {
  width: 180px;
  height: 70px;
  position: absolute;
  top: 22%;
  right: -18%;
  rotate: -30deg;
  z-index: 2;
}

.project-item img {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-item a {
  position: absolute;
  padding: 25px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0) rotate(-360deg);
  border-radius: 10px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .5s;
  opacity: 0;
}

.project-item:hover a {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
  background: var(--bs-primary);
  color: var(--bs-light) !important;
  opacity: 1;

}

.accent {
  background: linear-gradient(90deg, #d90429, #ff6a00 60%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}



/*** Before  Start ***/
.transformation-section {
  background: linear-gradient(180deg, #fff 0%, #fbfbfb 100%);
}

.transformation-title {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.02;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.transformation-title .accent {
  background: linear-gradient(90deg, #d90429, #ff6a00 60%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.transformation-text p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: .9rem;
  text-align: justify;
}

.transformation-features li {
  margin: 0.35rem 0;
  color: #444;
  font-weight: 600;
}

.btn-primary {
  background: linear-gradient(90deg, #d90429, #ff6a00);
  border: none;
  box-shadow: 0 6px 18px rgba(217, 4, 41, 0.12);
}

.transformation-stats .stat {
  text-align: left;
}

.stat-value {
  font-weight: 800;
  font-size: 1.25rem;
  color: #111;
}

.stat-label {
  font-size: .85rem;
  color: #777;
}

/* --- IMAGE AREA --- */
.transformation-media {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin-left: auto;
}

.ba-container {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: ew-resize;
  height: 360px;
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.08);
  transition: transform .35s ease, box-shadow .35s ease;
}

.ba-container:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(20, 20, 20, 0.12);
}

.ba-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.ba-resize {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  transition: width .12s ease;
}

.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  cursor: ew-resize;
  z-index: 6;
  transition: transform .12s ease, box-shadow .12s ease;
}

.ba-handle span {
  font-size: 18px;
  color: #111;
  opacity: 0.9;
  transform: translateY(-2px);
}

.ba-handle:active {
  transform: scale(.98);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
}

/* supporting photos */
.supporting-photos {
  position: absolute;
  bottom: -18px;
  right: -10px;
  display: flex;
  gap: 12px;
  pointer-events: none;
  z-index: 4;
}

.support-photo {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border: 6px solid #fff;
}

.photo-1 {
  transform: rotate(-6deg);
}

.photo-2 {
  transform: rotate(6deg);
  margin-right: 8px;
}

/* responsive */
@media (max-width: 991.98px) {
  .transformation-media {
    max-width: 100%;
  }

  .ba-container {
    height: 300px;
  }

  .supporting-photos {
    bottom: -14px;
    right: 12px;
  }
}

@media (max-width: 575.98px) {
  .ba-container {
    height: 220px;
  }

  .support-photo {
    width: 68px;
    height: 68px;
    border-width: 4px;
  }

  .transformation-text p {
    font-size: .92rem;
  }
}

/*** After End ***/


/*** Client Swipper Start ***/
.client-section {
  background: #f8f9fa;
  overflow: hidden;
  position: relative;
}

.client-subtitle {
  font-size: 1rem;
  letter-spacing: 1px;
  color: #e3000f;
  font-weight: 600;
  text-transform: uppercase;
}

.client-title {
  font-weight: 800;
  font-size: 1.8rem;
  color: #222;
}

/* Logo carousel wrapper */
.logo-carousel {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logos-slide {
  display: flex;
  align-items: center;
  animation: slide 25s linear infinite;
}

.logos-slide img {
  height: 70px;
  margin: 0 40px;
  /* filter: grayscale(100%); */
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}

/* Hover: full color logo effect */
.logos-slide img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

/* Infinite scroll animation */
@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .logos-slide img {
    height: 60px;
    margin: 0 25px;
  }
}

@media (max-width: 768px) {
  .logos-slide img {
    height: 50px;
    margin: 0 20px;
  }

  .client-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .logos-slide img {
    height: 45px;
    margin: 0 15px;
  }
}

/*** Client Swipper End ***/


/*** Call To Action start ***/

.cta-section {
  position: relative;
  background: url("https://res.cloudinary.com/dzcjlkjol/image/upload/v1759046991/front-view-man-cleaning-indoors_c76cjw.jpg") center center / cover no-repeat;
  background-attachment: fixed;
  color: #fff;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

/* Overlay for better text contrast */
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.6));
  z-index: 0;
}

/* Ensure text is above overlay */
.cta-section .container {
  position: relative;
  z-index: 2;
}

/* Text styling */
.cta-section h2 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* CTA Button */
.cta-btn {
  background: #fff;
  color: #ff3b3b;
  border: none;
  padding: 14px 32px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: all 0.35s ease;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-btn:hover {
  background: linear-gradient(90deg, #ff3b3b, #ff8a00);
  color: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  transform: translateY(-3px);
}

.cta-btn i {
  transition: transform 0.3s ease;
}

.cta-btn:hover i {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .cta-section {
    text-align: center;
  }

  .cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .cta-section p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .cta-section {
    padding: 3rem 1rem;
    text-align: center;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}


/*** Call To Action End ***/



/*** testimonial Start ***/
.label-pill {
  border-color: rgba(0, 0, 0, 0.06);
  padding-left: 1rem;
  padding-right: 1rem;
  background: #fff;
}

.testimony-title {
  max-width: 900px;
  line-height: 1.1;
}

/* base layout */
.testimonial-item {
  padding: 18px;
  max-width: 720px;
  margin: 20px auto;
  box-sizing: border-box;
}

.testimonial-content {
  background: #f3f4f5;
  border-radius: 14px;
  position: relative;
  box-shadow: 0 12px 28px rgba(15, 17, 19, 0.06);
  padding: 28px 30px;
  transition: all 0.35s ease;
}

.testimonial-content::before {
  content: "";
  width: 22px;
  height: 22px;
  background: #f3f4f5;
  position: absolute;
  left: 50%;
  bottom: -11px;
  transform: translateX(-50%) rotate(45deg);
  box-shadow: 0 6px 16px rgba(15, 17, 19, 0.03);
}

/* quote icon inside bubble */
.quote-icon {
  color: #ff3b3b;
  font-size: 30px;
  opacity: 0.9;
}

/* hover lift effect */
.testimonial-item:hover .testimonial-content {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(15, 17, 19, 0.1);
}

/* name & stars */
.testimonial-meta h4 {
  font-weight: 700;
}

.testimonial-meta p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 6px;
}

.stars i {
  color: #ff2626;
  font-size: 0.9rem;
  margin-right: 4px;
}

/* Owl Carousel navs & dots */
.testimonial-carousel .owl-nav button.owl-prev,
.testimonial-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(90deg, #ff2626, #ff6b00);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(15, 17, 19, 0.12);
  transition: all 0.3s ease;
  z-index: 2;
}

.testimonial-carousel .owl-nav button.owl-prev:hover,
.testimonial-carousel .owl-nav button.owl-next:hover {
  transform: translateY(-50%) scale(1.1);
}

.testimonial-carousel .owl-nav button.owl-prev {
  left: -10px;
}

.testimonial-carousel .owl-nav button.owl-next {
  right: -10px;
}

/* dots */
.testimonial-carousel .owl-dots {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.testimonial-carousel .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  transition: all 0.3s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
  width: 30px;
  border-radius: 20px;
  background: linear-gradient(90deg, #ff2626, #ff6b00);
}

/* responsive adjustments */
@media (max-width: 991.98px) {
  .testimonial-item {
    margin: 16px auto;
  }
}

@media (max-width: 575.98px) {
  .testimonial-content {
    padding: 20px;
  }

  .quote-icon {
    font-size: 26px;
  }

  .stars i {
    font-size: 0.85rem;
  }
}

/*** testimonial End ***/

/*** FAQ section visuals */

.faq-section {
  background: #fff;
  position: relative;
  z-index: 1;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #f9f9f9;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  margin-bottom: 18px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 25px rgba(255, 77, 0, 0.08);
  transform: translateY(-2px);
}

/* Question Button */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: #222;
  font-weight: 600;
  text-align: left;
  padding: 20px 24px;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #ff3b3b;
}

/* Chevron Icon */
.faq-icon {
  font-size: 1.1rem;
  color: #ff3b3b;
  transition: transform 0.35s ease;
}

/* Answer Area */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: #fff;
  padding: 0 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-answer p {
  font-size: 0.98rem;
  color: #555;
  line-height: 1.6;
  margin: 15px 0;
}

/* Active State */
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 20px 24px;
}

.faq-item.active .faq-question {
  color: #ff3b3b;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #ff8a00;
}

/* Responsive */
@media (max-width: 991.98px) {
  .faq-question {
    font-size: 1rem;
    padding: 18px 20px;
  }

  .faq-answer {
    padding: 0 20px;
  }
}

@media (max-width: 575.98px) {
  .faq-item {
    margin-bottom: 14px;
  }

  .faq-question {
    font-size: 0.95rem;
  }
}

/*** FAQ section visuals End*/

/*** Contact Start ***/
.contact-link a i,
.contact-link a h5,
.contact-link a.h5 {
  transition: .5s;
}

.contact-link a i:hover,
.contact-link a h5:hover,
.contact-link a.h5:hover {
  color: var(--bs-primary) !important;
}

/*** Contact End ***/


/*** Footer Start ***/
.site-footer {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: url("https://res.cloudinary.com/dzcjlkjol/image/upload/v1761494403/1825_h8srrl.jpg") center center / cover no-repeat;
}

/* dark overlay so text is readable */
.site-footer .footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 18, 0.644);
  pointer-events: none;
  z-index: 0;
}

/* container content sits above overlay */
.site-footer .container {
  position: relative;
  z-index: 2;
}

/* Footer card (glass look) */
.footer-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.153), rgba(255, 255, 255, 0.099));
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.35);
  transition: transform .28s ease, box-shadow .28s ease;
}

/* Slight lift on hover for desktop */
.footer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.45);
}

/* Typography helpers */
.footer-card h4,
.footer-card h5 {
  color: #fff;
  margin-bottom: 8px;
}

.muted {
  color: rgba(255, 255, 255, 0.84);
}

.small {
  font-size: .9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Links */
.footer-links a,
.footer-contact {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 6px 0;
  transition: color .2s ease, transform .18s;
}

.footer-links a:hover,
.footer-contact:hover {
  color: #fb4d59;
  transform: translateX(4px);
}

/* Social icons */
.socials .social {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.socials .social:hover {
  background: linear-gradient(90deg, #e3000f, #ff8a00);
  transform: translateY(-4px);
}

/* logo */
.footer-logo img {
  display: block;
  margin-bottom: 8px;
  height: 70px;
}

/* contact links style */
.footer-contact {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
  margin-top: 12px;
}

.footer-map-wrapper {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.footer-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* responsive adjustments */
@media (max-width: 991.98px) {
  .footer-inner .col-md-6 {
    margin-bottom: 10px;
  }

  .footer-card {
    padding: 18px;
  }

  .footer-logo img {
    height: 36px;
  }

  .socials .social {
    width: 36px;
    height: 36px;
  }

  .newsletter .form-control {
    padding: 9px 10px;
  }
}

@media (max-width: 575.98px) {
  .footer-inner {
    text-align: left;
  }

  .footer-card {
    padding: 14px;
    border-radius: 10px;
  }

  .footer-links a {
    padding: 8px 0;
  }

  .site-footer {
    padding-bottom: 80px;
  }

  .back-to-top {
    right: 12px;
    bottom: 12px;
    width: 44px;
    height: 44px;
  }
}




/*** Footer End ***/


/*** Page Header */

.page-header-section {
  position: relative;
  background-image: url('https://res.cloudinary.com/dzcjlkjol/image/upload/v1761664897/2386_gbkzoi.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

/* Overlay for readability */
.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  z-index: 0;
}

/* Content positioning */
.header-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

/* Title styling */
.header-title {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

/* Subtitle */
.header-subtitle {
  color: #f5f5f5;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Breadcrumb styling */
.breadcrumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 8px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.breadcrumb a {
  color: #f1f1f1;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  color: #e3000f;
}

.breadcrumb .active {
  color: #fff;
  font-weight: 700;
}

/* Buttons */
.header-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
}

.btn-main {
  background: linear-gradient(90deg, #e3000f, #ff8a33);
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-main:hover {
  background: #000;
  transform: translateY(-3px);
  color: #e3000f;
}

.btn-outline {
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .page-header-section {
    height: 50vh;
  }

  .header-title {
    font-size: 32px;
  }

  .header-subtitle {
    font-size: 14px;
    padding: 0 10px;
  }

  .header-buttons {
    flex-direction: column;
    gap: 10px;
  }
}


/*** About page section */

/* ---------- Layout & base ---------- */


/* Container helpers (section-level) */
.robust-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 20px;
  box-sizing: border-box;
}

.robust-inner.narrow {
  max-width: 980px;
}

/* ------------------------------
   SERVICES SECTION
   ------------------------------ */
.robust-services-section {
  margin-top: 30px;
  padding: 34px 20px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #fffbf7 100%);
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.04);
}

.robust-section-heading {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(90deg, #e3000f, #ffb400);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.robust-section-heading::after {
  content: "";
  display: block;
  width: 70px;
  height: 5px;
  border-radius: 5px;
  margin-top: 10px;
  background: linear-gradient(90deg, #e3000f, #ffb400);
  text-align: center;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.robust-section-sub {
  color: #6b7280;
  margin: 0 auto 20px;
  max-width: 820px;
}

/* services grid */
.robust-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 14px;
}

.robust-service {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.096);
  transition: transform 220ms ease;
  border: 1px solid rgba(0, 0, 0, 0.063);
}

.robust-service:hover {
  transform: translateY(-6px);
}

.service-icon {
  font-size: 20px;
  margin-bottom: 10px;
  color: #e3000f;
}

.robust-service h4 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #0f172a;
}

.robust-service p {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
}

/* ------------------------------
   COMPANY SNAPSHOT
   ------------------------------ */
.robust-snapshot-section {
  margin-top: 30px;
  padding: 30px 20px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.robust-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 18px;
  margin-top: 18px;
}

.snapshot-card {
  background: linear-gradient(180deg, #fff 0%, #fbfbfb 100%);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.107);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  border: 1px solid rgba(0, 0, 0, 0.063);
}

.snapshot-number {
  display: block;
  color: #e3000f;
  font-size: 25px;
  font-weight: 800;
}

.snapshot-label {
  margin: 6px 0 0;
  color: #6b7280;
  font-size: 13px;
}

/* coverage list */
.robust-coverage {
  margin-top: 25px;
}

.coverage-title {
  margin: 6px 0 8px;
  color: #0f172a;
  font-size: 16px;
}

.coverage-list {
  list-style: disc;
  padding-left: 20px;
  color: #475569;
  margin: 0;
}

.coverage-list li {
  margin-bottom: 6px;
  font-size: 14px;
}

/* ------------------------------
   ACHIEVEMENTS
   ------------------------------ */
.robust-achievements-section {
  padding: 18px;
  text-align: center;
  background: #ffffff;
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.04);
}

.achievements-row {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.achievement {
  flex: 1 1 220px;
  padding: 12px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.107);
  border: 1px solid rgba(0, 0, 0, 0.063);
}

.achievement-number {
  color: #e3000f;
  font-size: 20px;
  margin: 0 0 6px;
  font-weight: 800;
}

/* ------------------------------
   Responsive adjustments
   ------------------------------ */
@media (max-width: 980px) {
  .robust-about-section {
    grid-template-columns: 1fr;
    /* stack */
    padding: 22px;
    gap: 18px;
  }

  .robust-image-wrap {
    max-width: 100%;
  }

  .robust-about-content {
    padding-left: 0;
    min-width: auto;
  }

  .robust-mini-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .robust-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .robust-snapshot-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .achievements-row {
    flex-direction: column;
  }

  .robust-heading,
  .robust-title {
    font-size: 28px;
  }

  .robust-badge {
    right: 12px;
    top: 12px;
    padding: 8px 10px;
  }
}

@media (max-width: 560px) {
  .robust-mini-cards {
    grid-template-columns: 1fr;
  }

  .robust-services-grid {
    grid-template-columns: 1fr;
  }

  .robust-section-heading {
    font-size: 18px;
  }

  .robust-title,
  .robust-heading {
    font-size: 22px;
  }

  .robust-about-section {
    padding: 16px;
    border-radius: 12px;
  }

  .robust-image-wrap img {
    border-radius: 12px;
  }

  .robust-badge {
    right: 8px;
    top: 8px;
    padding: 6px 8px;
  }

  .snapshot-card {
    min-height: 80px;
    padding: 14px;
  }

  .snapshot-number {
    font-size: 18px;
  }

  .snapshot-label {
    font-size: 13px;
  }
}

/*** Page-dm Header */

.page-header-section-dm {
  position: relative;
  background-image: url('https://res.cloudinary.com/dzcjlkjol/image/upload/v1761482165/2889_lfzd0t.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

/* Title styling */
.header-title-dm {
  font-size: clamp(26px, 5vw, 56px);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

@media (min-width: 1400px) {
  .page-header-section-dm {
    min-height: 64vh;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .header-title-dm {
    font-size: clamp(32px, 4.2vw, 72px);
  }
}

@media (max-width: 1024px) {
  .page-header-section-dm {
    min-height: 48vh;
    padding: 4rem 1rem;
  }

  .header-title-dm {
    font-size: clamp(28px, 6.2vw, 48px);
  }
}

@media (max-width: 768px) {
  .page-header-section-dm {
    background-attachment: scroll;
    /* disable parallax for performance */
    min-height: 40vh;
    padding: 3rem 1rem;
  }

  .header-title-dm {
    font-size: clamp(22px, 7.5vw, 34px);
    letter-spacing: 0.6px;
  }
}

@media (max-width: 420px) {
  .page-header-section-dm {
    min-height: 34vh;
    padding: 2.2rem 0.8rem;
  }

  .header-title-dm {
    font-size: clamp(20px, 8.5vw, 28px);
    letter-spacing: 0.4px;
    margin-bottom: 0.4rem;
  }
}

/** --- Director Message Section --- */
.director-message-section {
  background-color: #ffffff;
  padding: 80px 20px;
}

.director-message-container.no-photo {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.director-message-content.full-width {
  width: 100%;
}

.director-message-heading {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ff6b1a 0%, #ff3b30 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.director-message-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  position: relative;
}

/* Decorative left accent bar */
.director-message-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 4px;
  background: linear-gradient(180deg, #ffb400, #e3000f);
  border-radius: 4px;
}

.director-message-text {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 14px;
}

/* Signature row */
.director-signature-row {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid #e5e7eb;
}

.director-signature-info {
  font-size: 14px;
  color: #0f172a;
  line-height: 1.4;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .director-message-heading {
    font-size: 26px;
  }

  .director-message-card {
    padding: 22px;
  }

  .director-message-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .director-message-heading {
    font-size: 22px;
  }

  .director-message-card {
    padding: 18px;
    border-radius: 12px;
  }
}
/* Vision Card - Responsive and Container Aligned */
.director-vision-card {
  background-color: #f8fafc;
  padding: 40px 50px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  line-height: 1.7;
  max-width: 1200px;
  margin: 0 auto;
  /* keeps within container */
  box-sizing: border-box;
}

/* Gradient Title */
.director-vision-title {
  font-size: calc(1.5rem + 1vw);
  font-weight: 800;
  background: linear-gradient(90deg, #e3000f, #ffb400);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: left;
}

/* Content Paragraphs */
.director-vision-card p {
  color: #1f2937;
  margin-bottom: 16px;
}

/* Core Values List */
.director-core-values {
  margin-top: 20px;
  padding-left: 25px;
  color: #334155;
}

.director-core-values li {
  margin: 8px 0;
  position: relative;
  font-weight: 500;
  list-style: none;
}

.director-core-values li::before {
  content: "•";
  position: absolute;
  left: -15px;
  color: #e3000f;
  font-size: 20px;
  line-height: 1;
}

/* ---------- Responsive Adjustments ---------- */

/* Tablet (medium screens) */
@media (max-width: 992px) {
  .director-vision-card {
    padding: 30px 32px;
    font-size: 15px;
  }

  .director-vision-title {
    font-size: calc(1.3rem + 1vw);
    text-align: center;
  }
}

/* Mobile (small screens) */
@media (max-width: 576px) {
  .director-vision-card {
    padding: 24px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    font-size: 14px;
  }

  .director-vision-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 16px;
  }

  .director-core-values {
    padding-left: 18px;
  }

  .director-core-values li {
    font-size: 14px;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .director-message-container {
    grid-template-columns: 1fr;
  }

  .director-message-photo-card {
    order: 2;
    min-height: 300px;
  }

  .director-message-content {
    order: 1;
  }

  .director-message-heading {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .director-message-section {
    padding: 50px 16px;
  }

  .director-message-heading {
    font-size: 22px;
  }

  .director-message-card,
  .director-vision-card {
    padding: 14px;
    font-size: 14px;
  }
}

/*** Page-vision mision Header */

.page-header-section-vm {
  position: relative;
  background-image: url('https://res.cloudinary.com/dzcjlkjol/image/upload/v1761488427/2151266583_qkpisw.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

/* Title styling */
.header-title-vm {
  font-size: clamp(26px, 5vw, 56px);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

@media (min-width: 1400px) {
  .page-header-section-vm {
    min-height: 64vh;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .header-title-vm {
    font-size: clamp(32px, 4.2vw, 72px);
  }
}

@media (max-width: 1024px) {
  .page-header-section-vm {
    min-height: 48vh;
    padding: 4rem 1rem;
  }

  .header-title-vm {
    font-size: clamp(28px, 6.2vw, 48px);
  }
}

@media (max-width: 768px) {
  .page-header-section-vm {
    background-attachment: scroll;
    /* disable parallax for performance */
    min-height: 40vh;
    padding: 3rem 1rem;
  }

  .header-title-vm {
    font-size: clamp(22px, 7.5vw, 34px);
    letter-spacing: 0.6px;
  }
}

@media (max-width: 420px) {
  .page-header-section-vm {
    min-height: 34vh;
    padding: 2.2rem 0.8rem;
  }

  .header-title-vm {
    font-size: clamp(20px, 8.5vw, 28px);
    letter-spacing: 0.4px;
    margin-bottom: 0.4rem;
  }
}

/* ===== Robust Facility Management - Vision & Mission Section ===== */
.rfm-vision-mission-section {
  padding: 80px 20px;
}

/* container width */
.rfm-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.rfm-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}

.rfm-logo-box {
  background: linear-gradient(135deg, #e3000f 0%, #ffb400 100%);
  width: 70px;
  height: 70px;
  border-radius: 14px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 6px 22px rgba(215, 38, 49, 0.18);
}

.rfm-header-text h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;

}

.rfm-header-text p {
  margin: 4px 0 0;
  color: #6b7280;
  /* muted slate */
  font-size: 14px;
}

/* Intro */
.rfm-intro {
  display: flex;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgb(255, 255, 255));
  border: 1px solid rgba(17, 24, 39, 0.04);
  border-radius: 16px;
  padding: 30px 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

/* optional image on the left of intro (use the file you uploaded) */
.rfm-intro::before {
  content: "";
  position: absolute;
  left: -60px;
  top: 10px;
  width: 360px;
  height: 320px;
  background-size: cover;
  background-position: center;
  filter: saturate(0.98) contrast(0.98) brightness(0.98);
  transform: translateZ(0);
  opacity: 1;
}

/* if you don't want the image in the intro, comment out .rfm-intro::before block above */

/* content inside intro */
.rfm-intro-left {
  flex: 1;
  min-width: 260px;
  z-index: 2;
  /* keep content above optional image */
}

.rfm-kicker {
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 1px;
  color: #111;
}

.rfm-intro-left h3 {
  font-size: calc(1.5rem + 1vw);
  font-weight: 800;
  background: linear-gradient(90deg, #e3000f, #ffb400);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: left;
}

.rfm-intro-left p {
  color: #374151;
  /* slate-700 paragraph */
  line-height: 1.6;
}

/* right side (Serving list) */
.rfm-intro-right {
  text-align: right;
  min-width: 200px;
  font-size: 14px;
  color: #6b7280;
  z-index: 2;
}

.rfm-intro-right span {
  display: block;
  font-weight: 600;
  color: #111827;
}

/* Grid */
.rfm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  z-index: 2;
}

.rfm-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(17, 24, 39, 0.04);
  transition: all 0.32s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.04);
}

.rfm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(215, 38, 49, 0.08);
}

.rfm-card-icon {
  font-size: 30px;
  margin-bottom: 12px;
  display: inline-block;
  background: rgba(215, 38, 49, 0.06);
  padding: 8px;
  border-radius: 10px;
}

.rfm-card h4 {
  margin: 6px 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

.rfm-card p {
  color: #374151;
  line-height: 1.6;
}

/* Values List */
.rfm-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.rfm-values li {
  background: rgba(255, 122, 24, 0.08);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 13px;
  color: #e3000f;
  border: 1px solid rgba(187, 35, 34, 0.06);
}

/* CTA Buttons */
.rfm-cta {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 2;
}

.rfm-btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: 0.24s ease;
}

.rfm-btn-primary {
  background: linear-gradient(135deg, #e3000f 0%, #ffb400 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(215, 38, 49, 0.18);
}

.rfm-btn-primary:hover {
  background: #000;
  transform: translateY(-3px);
  color: #e3000f;
}

.rfm-btn-outline {
  border: 1px solid rgba(17, 24, 39, 0.06);
  color: #111827;
  background: transparent;
}

.rfm-btn-outline:hover {
  background: rgba(17, 24, 39, 0.02);
}

/* Responsive tweaks */
/* ---------- Large Desktops (≥ 1440px) ---------- */
@media (min-width: 1440px) {
  .rfm-container {
    max-width: 1320px;
  }

  .rfm-header-text h2 {
    font-size: 28px;
  }

  .rfm-intro-left h3 {
    font-size: 26px;
  }

  .rfm-card h4 {
    font-size: 20px;
  }

  /* make the intro image larger on wide screens */
  .rfm-intro::before {
    left: -90px;
    top: 10px;
    width: 420px;
    height: 360px;
    opacity: 1;
    filter: none;
  }
}

/* ---------- Laptops (1025px–1439px) ---------- */
@media (max-width: 1439px) and (min-width: 1025px) {
  .rfm-container {
    padding: 0 40px;
  }

  .rfm-header-text h2 {
    font-size: 26px;
  }

  .rfm-intro-left h3 {
    font-size: 24px;
  }

  .rfm-card p {
    font-size: 15px;
  }

  .rfm-intro::before {
    left: -70px;
    width: 380px;
    height: 330px;
  }
}

/* ---------- Tablets (769px–1024px) ---------- */
@media (max-width: 1024px) {
  .rfm-header {
    flex-direction: column;
    text-align: center;
  }

  .rfm-header-text h2 {
    font-size: 22px;
  }

  .rfm-logo-box {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }

  .rfm-intro {
    flex-direction: column;
    text-align: center;
    padding: 25px 16px;
  }

  .rfm-intro-left h3 {
    font-size: 20px;
  }

  .rfm-intro-right {
    text-align: center;
    margin-top: 20px;
  }

  .rfm-card {
    padding: 20px;
  }

  .rfm-card h4 {
    font-size: 17px;
  }

  .rfm-btn {
    font-size: 14px;
  }

  /* hide the large intro image on tablets to avoid layout issues */
  .rfm-intro::before {
    display: none;
  }
}

/* ---------- Mobiles (481px–768px) ---------- */
@media (max-width: 768px) {
  .rfm-vision-mission-section {
    padding: 60px 16px;
  }

  .rfm-header {
    flex-direction: column;
    text-align: center;
  }

  .rfm-intro {
    flex-direction: column;
    text-align: center;
    margin-bottom: 40px;
  }

  .rfm-intro-left h3 {
    font-size: 20px;
  }

  .rfm-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .rfm-card {
    text-align: center;
  }

  .rfm-values {
    justify-content: center;
  }

  .rfm-cta {
    flex-direction: column;
    align-items: center;
  }

  .rfm-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ---------- Small Mobiles (361px–480px) ---------- */
@media (max-width: 480px) {
  .rfm-vision-mission-section {
    padding: 50px 12px;
  }

  .rfm-header-text h2 {
    font-size: 20px;
  }

  .rfm-intro-left h3 {
    font-size: 18px;
  }

  .rfm-card h4 {
    font-size: 16px;
  }

  .rfm-card p {
    font-size: 14px;
  }

  .rfm-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* ---------- Extra Small Devices (≤ 360px) ---------- */
@media (max-width: 360px) {
  .rfm-vision-mission-section {
    padding: 40px 10px;
  }

  .rfm-header-text h2 {
    font-size: 18px;
  }

  .rfm-intro-left h3 {
    font-size: 16px;
  }

  .rfm-card {
    padding: 18px;
  }

  .rfm-btn {
    font-size: 12px;
    padding: 8px 14px;
  }
}


/*** Page-vision mision Header */

.page-header-section-st {
  position: relative;
  background-image: url('https://res.cloudinary.com/dzcjlkjol/image/upload/v1761497082/9350_sx9nna.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

/* Title styling */
.header-title-st {
  font-size: clamp(26px, 5vw, 56px);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

@media (min-width: 1400px) {
  .page-header-section-st {
    min-height: 64vh;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .header-title-st {
    font-size: clamp(32px, 4.2vw, 72px);
  }
}

@media (max-width: 1024px) {
  .page-header-section-st {
    min-height: 48vh;
    padding: 4rem 1rem;
  }

  .header-title-st {
    font-size: clamp(28px, 6.2vw, 48px);
  }
}

@media (max-width: 768px) {
  .page-header-section-st {
    background-attachment: scroll;
    /* disable parallax for performance */
    min-height: 40vh;
    padding: 3rem 1rem;
  }

  .header-title-st {
    font-size: clamp(22px, 7.5vw, 34px);
    letter-spacing: 0.6px;
  }
}

@media (max-width: 420px) {
  .page-header-section-st {
    min-height: 34vh;
    padding: 2.2rem 0.8rem;
  }

  .header-title-st {
    font-size: clamp(20px, 8.5vw, 28px);
    letter-spacing: 0.4px;
    margin-bottom: 0.4rem;
  }
}


/* ===== Robust Facility Management — Our Strength Section ===== */
.rfm-strength-section {
  padding: 72px 20px;
  position: relative;
}


/* wrapper */
.rfm-strength-wrap {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  /* ensure content sits above decorative image */
}

/* header */
.rfm-strength-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.rfm-strength-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e3000f 0%, #ffb400 100%);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 8px 22px rgba(215, 38, 49, 0.12);
}

.rfm-strength-head h2 {
  margin: 12px 0 8px;
  font-size: 28px;
  line-height: 1.12;
  color: #111827;
}

.rfm-strength-lead {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
}

/* grid of cards */
.rfm-strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 28px;
}

.rfm-strength-card {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.04);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: transform .28s ease, box-shadow .28s ease;
}

.rfm-strength-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(215, 38, 49, 0.06);
}

.rfm-strength-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(215, 38, 49, 0.06);
  font-size: 22px;
  margin-bottom: 12px;
}

.rfm-strength-ico i {
  color: #e3000f;
  margin-bottom: 15px;
}

.rfm-strength-title {
  margin: 0 0 8px;
  font-size: 18px;
  color: #111827;
  font-weight: 700;
}

.rfm-strength-text {
  margin: 0;
  color: #374151;
  line-height: 1.6;
  font-size: 14px;
}

/* footer actions */
.rfm-strength-footer {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.rfm-strength-footer a:hover {
  background-color: #000;
  color: #e3000f;
  transform: translateY(-3px);
}

.rfm-strength-btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.rfm-strength-btn-primary {
  background: linear-gradient(135deg, #e3000f 0%, #ffb400 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(215, 38, 49, 0.14);
}

.rfm-strength-btn-primary:hover {
  transform: translateY(-3px);
  color: #fff;
}

.rfm-strength-btn-outline {
  background: transparent;
  border: 1px solid rgba(17, 24, 39, 0.06);
  color: #111827;
}

.rfm-strength-btn-outline:hover {
  background: rgba(17, 24, 39, 0.02);
}

/* ---------------- Responsive Breakpoints ---------------- */

/* large desktops */
@media (min-width: 1400px) {
  .rfm-strength-wrap {
    max-width: 1320px;
  }

  .rfm-strength-head h2 {
    font-size: 32px;
  }

  .rfm-strength-grid {
    gap: 26px;
  }
}

/* laptops / small desktops */
@media (max-width: 1399px) and (min-width: 1025px) {
  .rfm-strength-head h2 {
    font-size: 28px;
  }

  .rfm-strength-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* tablets */
@media (max-width: 1024px) {
  .rfm-strength-section {
    padding: 56px 20px;
  }

  .rfm-strength-head {
    text-align: center;
    margin: 0 auto 28px;
  }

  .rfm-strength-head h2 {
    font-size: 24px;
  }

  .rfm-strength-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .rfm-strength-section::before {
    display: none;
  }

  /* hide decorative image on tablet */
}

/* mobiles */
@media (max-width: 767px) {
  .rfm-strength-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .rfm-strength-head h2 {
    font-size: 20px;
  }

  .rfm-strength-ico {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .rfm-strength-section {
    padding: 42px 12px;
  }

  .rfm-strength-btn {
    width: 100%;
    text-align: center;
  }

  .rfm-strength-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
}

/* very small devices */
@media (max-width: 360px) {
  .rfm-strength-head h2 {
    font-size: 18px;
  }

  .rfm-strength-lead {
    font-size: 14px;
  }

  .rfm-strength-card {
    padding: 16px;
  }
}


/*** Page-contact Header */

.page-header-section-cont {
  position: relative;
  background-image: url('https://res.cloudinary.com/dzcjlkjol/image/upload/v1761576003/45_y8jufv.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

/* Title styling */
.header-title-cont {
  font-size: clamp(26px, 5vw, 56px);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

@media (min-width: 1400px) {
  .page-header-section-cont {
    min-height: 64vh;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .header-title-cont {
    font-size: clamp(32px, 4.2vw, 72px);
  }
}

@media (max-width: 1024px) {
  .page-header-section-cont {
    min-height: 48vh;
    padding: 4rem 1rem;
  }

  .header-title-cont {
    font-size: clamp(28px, 6.2vw, 48px);
  }
}

@media (max-width: 768px) {
  .page-header-section-cont {
    background-attachment: scroll;
    /* disable parallax for performance */
    min-height: 40vh;
    padding: 3rem 1rem;
  }

  .header-title-cont {
    font-size: clamp(22px, 7.5vw, 34px);
    letter-spacing: 0.6px;
  }
}

@media (max-width: 420px) {
  .page-header-section-cont {
    min-height: 34vh;
    padding: 2.2rem 0.8rem;
  }

  .header-title-cont {
    font-size: clamp(20px, 8.5vw, 28px);
    letter-spacing: 0.4px;
    margin-bottom: 0.4rem;
  }
}

/* ===== Contact Info Section ===== */
.rfm-contact-info-section {
  background-color: #fffcfb;
}

.rfm-contact-title {
  font-weight: 700;
  font-size: 32px;
  color: #2b2625;
}

.rfm-contact-subtitle {
  color: #6b6b6b;
  font-size: 16px;
}

.rfm-contact-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.rfm-contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 26px rgba(215, 38, 49, 0.1);
}

.rfm-contact-icon {
  font-size: 32px;
  color: #e3000f;
  margin-bottom: 10px;
}

.rfm-contact-heading {
  font-size: 18px;
  font-weight: 700;
  color: #2b2625;
  margin-bottom: 8px;
}

.rfm-contact-text {
  color: #555;
  font-size: 15px;
}

/* ===== Map ===== */
.rfm-map-section iframe {
  width: 100%;
  border: none;
}

/* ===== Contact Form Section ===== */
.rfm-form-section {
  background: #ffffff;
}

.rfm-form-title {
  font-weight: 700;
  color: #2b2625;
}

.rfm-form-underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #e3000f, #ffb400);
  margin: 10px auto 25px;
  border-radius: 10px;
}

.rfm-contact-form .form-control {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  box-shadow: none;
  transition: all 0.3s ease;
}

.rfm-contact-form .form-control:focus {
  border-color: #e3000f;
  box-shadow: 0 0 0 0.2rem rgba(215, 38, 49, 0.15);
}

.rfm-send-btn {
  background: linear-gradient(135deg, #e3000f, #ffb400);
  color: #fff;
  border: none;
  font-weight: 600;
  border-radius: 8px;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.rfm-send-btn:hover {
  transform: translateY(-2px);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .rfm-contact-title {
    font-size: 26px;
  }

  .rfm-contact-card {
    padding: 20px 15px;
  }

  .rfm-contact-icon {
    font-size: 28px;
  }
}

/*** Page-Why choose us Header */

.page-header-section-wcu {
  position: relative;
  background-image: url('https://res.cloudinary.com/dzcjlkjol/image/upload/v1761581833/114_bnjoft.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

/* Title styling */
.header-title-wcu {
  font-size: clamp(26px, 5vw, 56px);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

@media (min-width: 1400px) {
  .page-header-section-wcu {
    min-height: 64vh;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .header-title-wcu {
    font-size: clamp(32px, 4.2vw, 72px);
  }
}

@media (max-width: 1024px) {
  .page-header-section-wcu {
    min-height: 48vh;
    padding: 4rem 1rem;
  }

  .header-title-wcu {
    font-size: clamp(28px, 6.2vw, 48px);
  }
}

@media (max-width: 768px) {
  .page-header-section-wcu {
    background-attachment: scroll;
    /* disable parallax for performance */
    min-height: 40vh;
    padding: 3rem 1rem;
  }

  .header-title-wcu {
    font-size: clamp(22px, 7.5vw, 34px);
    letter-spacing: 0.6px;
  }
}

@media (max-width: 420px) {
  .page-header-section-wcu {
    min-height: 34vh;
    padding: 2.2rem 0.8rem;
  }

  .header-title-wcu {
    font-size: clamp(20px, 8.5vw, 28px);
    letter-spacing: 0.4px;
    margin-bottom: 0.4rem;
  }
}

/** ===== rfm — Why Choose Us styles (append) ===== */

/* Hero */
.rfm-why-hero {
  padding: 56px 0 40px;
  text-align: center;
  background: linear-gradient(180deg, rgba(215, 38, 49, 0.04), rgba(255, 250, 247, 1));
  border-bottom: 1px solid rgba(17, 24, 39, 0.03);
}

.rfm-why-kicker {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, #e3000f, #ffb400);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 8px 22px rgba(215, 38, 49, 0.12);
}

.rfm-why-title {
  font-weight: 700;
  font-size: 32px;
  margin: 16px 0 8px;
  color: #2b2625;
}

.rfm-why-sub {
  color: #6b6b6b;
  max-width: 820px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
}

/* Differentiators */
.rfm-diff-section {
  padding: 36px 0;
}

.rfm-diff-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(17, 24, 39, 0.04);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
}

.rfm-diff-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(215, 38, 49, 0.08);
}

.rfm-diff-ico {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(215, 38, 49, 0.06);
  color: #e3000f;
  font-size: 22px;
  margin-bottom: 12px;
}

.rfm-diff-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.rfm-diff-desc {
  color: #4b5563;
  line-height: 1.6;
  font-size: 14px;
}

/* Process */
.rfm-process {
  padding: 34px 0 46px;
  background: linear-gradient(180deg, #fff, #fff);
  border-top: 1px solid rgba(17, 24, 39, 0.02);
}

.rfm-step {
  background: linear-gradient(180deg, #fff, #fff);
  border-radius: 12px;
  padding: 18px;
  border: 1px solid rgba(17, 24, 39, 0.03);
  height: 100%;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.175);
  ;
}

.rfm-step:hover {
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
}

.rfm-step-num {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #e3000f, #ffb400);
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}

.rfm-step-title {
  font-weight: 700;
  margin-bottom: 6px;
}

.rfm-step-desc {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.6;
}

/* CTA */
.rfm-cta-strip {
  padding: 28px 0;
  text-align: center;
}

.rfm-cta-btn {
  padding: 10px 20px;
  border-radius: 10px;
  border: 0;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #e3000f, #ffb400);
  box-shadow: 0 12px 28px rgba(215, 38, 49, 0.12);
  transition: transform .18s ease;
  text-decoration: none;
}

.rfm-cta-btn:hover {
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
  .rfm-why-title {
    font-size: 28px;
  }

  .rfm-diff-ico {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .rfm-why-title {
    font-size: 22px;
  }

  .rfm-diff-card {
    padding: 16px;
  }

  .rfm-step-num {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

/*** Page-career Header */

.page-header-section-career {
  position: relative;
  background-image: url('https://res.cloudinary.com/dzcjlkjol/image/upload/v1761586520/3090_s1stlh.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}
#rfm-apply-result {
  font-weight: 500;
}

@media (min-width: 1400px) {
  .page-header-section-career {
    min-height: 64vh;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (max-width: 1024px) {
  .page-header-section-career {
    min-height: 48vh;
    padding: 4rem 1rem;
  }
}

@media (max-width: 768px) {
  .page-header-section-career {
    background-attachment: scroll;
    /* disable parallax for performance */
    min-height: 40vh;
    padding: 3rem 1rem;
  }
}

@media (max-width: 420px) {
  .page-header-section-career {
    min-height: 34vh;
    padding: 2.2rem 0.8rem;
  }
}

/* ===== rfm-careers styles (append) ===== */

/* hero */
.rfm-careers-hero {
  background: linear-gradient(180deg, rgba(215, 38, 49, 0.04), rgba(255, 250, 247, 1));
  padding: 48px 0 28px;
  text-align: center;
}

.rfm-careers-title {
  font-size: 34px;
  color: #2b2625;
  margin-bottom: 8px;
}

.rfm-careers-lead {
  color: #6b6b6b;
  max-width: 820px;
  margin: 0 auto;
}

/* job cards */
.rfm-job-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  border: 1px solid rgba(17, 24, 39, 0.04);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .22s ease, box-shadow .22s ease;
}

.rfm-job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(215, 38, 49, 0.08);
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  -o-transform: translateY(-6px);
}

.rfm-job-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.rfm-job-badge {
  background: rgba(215, 38, 49, 0.1);
  color: #e3000f;
  padding: 6px 8px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
}

.rfm-job-loc {
  color: #6b7280;
  font-size: 13px;
  margin-left: auto;
}

.rfm-job-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111827;
}

.rfm-job-summary {
  color: #4b5563;
  margin-bottom: 12px;
}

.rfm-job-list {
  padding-left: 18px;
  color: #4b5563;
  margin-bottom: 14px;
}

.rfm-job-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.rfm-job-btn {
  background: linear-gradient(135deg, #e3000f, #e3000f);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.rfm-job-btn:hover {
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
}

/* benefits / image */
.rfm-benefits-title {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.rfm-benefits-lead {
  color: #6b6b6b;
  margin-bottom: 16px;
}

.rfm-benefits-list {
  list-style: none;
  padding-left: 0;
  color: #4b5563;
}

.rfm-benefits-img {
  max-width: 520px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(215, 38, 49, 0.06);
}

/* application form */
.rfm-apply-title {
  font-size: 26px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.rfm-apply-sub {
  color: #6b6b6b;
  margin-bottom: 22px;
}

.rfm-form-label {
  font-weight: 600;
  color: #374151;
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

.rfm-input {
  border-radius: 10px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  padding: 10px 12px;
}

.rfm-textarea {
  border-radius: 10px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  padding: 10px 12px;
}

.rfm-apply-btn {
  background: linear-gradient(135deg, #e3000f, #ffb400);
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 700;
}

/* result messages */
#rfm-apply-result .alert {
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
}

/* responsive */
@media (max-width:767px) {
  .rfm-benefits-img {
    max-width: 220px;
    display: block;
    margin: 0 auto;
  }

  .rfm-job-meta {
    flex-direction: row;
    gap: 8px;
  }

  .rfm-job-loc {
    margin-left: 8px;
  }
}

/*** Page-gallery Header */

.page-header-section-gallery {
  position: relative;
  background-image: url('https://res.cloudinary.com/dzcjlkjol/image/upload/v1761662856/2148647697_awggpu.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}


@media (min-width: 1400px) {
  .page-header-section-gallery {
    min-height: 64vh;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (max-width: 1024px) {
  .page-header-section-gallery {
    min-height: 48vh;
    padding: 4rem 1rem;
  }
}

@media (max-width: 768px) {
  .page-header-section-gallery {
    background-attachment: scroll;
    /* disable parallax for performance */
    min-height: 40vh;
    padding: 3rem 1rem;
  }
}

@media (max-width: 420px) {
  .page-header-section-gallery {
    min-height: 34vh;
    padding: 2.2rem 0.8rem;
  }
}

/*** Page-blog Header */

.page-header-section-blog {
  position: relative;
  background-image: url('https://res.cloudinary.com/dzcjlkjol/image/upload/v1761664070/2147982614_b7pwco.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}


@media (min-width: 1400px) {
  .page-header-section-blog {
    min-height: 64vh;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (max-width: 1024px) {
  .page-header-section-blog {
    min-height: 48vh;
    padding: 4rem 1rem;
  }
}

@media (max-width: 768px) {
  .page-header-section-blog {
    background-attachment: scroll;
    /* disable parallax for performance */
    min-height: 40vh;
    padding: 3rem 1rem;
  }
}

@media (max-width: 420px) {
  .page-header-section-blog {
    min-height: 34vh;
    padding: 2.2rem 0.8rem;
  }
}

/* ===== RFM Blog Section ===== */

.rfm-blog-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e3000f, #ffb400);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.rfm-blog-heading {
  font-weight: 800;
  background: linear-gradient(90deg, #e3000f, #ffb400);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  padding-bottom: 25px;
}

.rfm-blog-sub {
  color: #6b6b6b;
  max-width: 760px;
  margin: 0 auto 40px;
  font-size: 15px;
  line-height: 1.6;
}

/* Blog Cards */
.rfm-blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
}

.rfm-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(215, 38, 49, 0.15);
}

.rfm-blog-img {
  position: relative;
  overflow: hidden;
}

.rfm-blog-img img {
  transition: transform 0.4s ease;
}

.rfm-blog-card:hover .rfm-blog-img img {
  transform: scale(1.08);
}

.rfm-blog-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #e3000f;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 8px;
  font-weight: 600;
}

.rfm-blog-body {
  padding: 20px;
}

.rfm-blog-meta span {
  color: #6b7280;
  font-size: 13px;
}

.rfm-blog-title {
  margin: 10px 0;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  line-height: 1.4;
}

.rfm-blog-text {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.6;
}

.rfm-blog-footer {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  padding-top: 10px;
}

.rfm-blog-btn {
  color: #e3000f;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.rfm-blog-btn:hover {
  color: #000;
}

.rfm-blog-row {
  align-items: stretch;
  /* makes bootstrap columns equal height */
}

/* card becomes a column flex container that fills the column */
.rfm-blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  /* fill the column height */
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: transform .28s ease, box-shadow .28s ease;
}

/* image wrapper gets a fixed height so all images are same */
.rfm-blog-img {
  flex: 0 0 auto;
  /* image area won't grow, fixed height */
  height: 220px;
  /* desktop image height — adjust if you want taller/shorter */
  overflow: hidden;
  position: relative;
}

/* ensure the <img> fills the wrapper and keeps aspect ratio */
.rfm-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* cover crops to fill without distortion */
  display: block;
  transition: transform .4s ease;
}

/* scale image on hover for subtle effect */
.rfm-blog-card:hover .rfm-blog-img img {
  transform: scale(1.06);
}

/* the body stretches to fill remaining card space */
.rfm-blog-body {
  flex: 1 1 auto;
  /* grow to fill leftover vertical space */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

/* keep footer anchored to bottom of body */
.rfm-blog-footer {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* responsive image heights */
@media (max-width: 991px) {
  .rfm-blog-img {
    height: 200px;
  }
}

@media (max-width: 575px) {
  .rfm-blog-img {
    height: 160px;
  }
}


/* Gallery Section */
.rfm-gallery-title {
  font-weight: 800;
  background: linear-gradient(90deg, #e3000f, #ffb400);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  padding-bottom: 25px;
}

.rfm-gallery-img-wrap {
  width: 100%;
  height: 230px;
  /* adjust height as you like */
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.rfm-gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ensures images fill the box without distortion */
  transition: transform 0.4s ease;
  display: block;
  border-radius: 10px;
}

/* Hover zoom effect */
.rfm-gallery-img-wrap:hover img {
  transform: scale(1.08);
}

/* Shadow and spacing */
.rfm-gallery-img-wrap {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Responsive scaling */
@media (max-width: 768px) {
  .rfm-gallery-img-wrap {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .rfm-gallery-img-wrap {
    height: 150px;
  }
}


/* Responsive */
@media (max-width: 767px) {
  .rfm-blog-heading {
    font-size: 26px;
  }

  .rfm-blog-text {
    font-size: 13px;
  }
}


/*** Page-Tech & Engg Header */

.page-header-section-tne {
  position: relative;
  background-image: url('https://res.cloudinary.com/dzcjlkjol/image/upload/v1761672777/2359729_324554-P9GY6X-129_niibzv.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

/* Title styling */
.header-title-tne {
  font-size: clamp(18px, 2vw, 38px);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
  line-height: 1.2;
}

@media (min-width: 1400px) {
  .page-header-section-tne {
    min-height: 64vh;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .header-title-tne {
    font-size: clamp(30px, 3.5vw, 52px);
  }
}

@media (max-width: 1024px) {
  .page-header-section-tne {
    min-height: 48vh;
    padding: 4rem 1rem;
  }

  .header-title-tne {
    font-size: clamp(24px, 4.5vw, 40px);
  }
}

@media (max-width: 768px) {
  .page-header-section-tne {
    background-attachment: scroll;
    /* disable parallax for performance */
    min-height: 40vh;
    padding: 3rem 1rem;
  }

  .header-title-tne {
    font-size: clamp(20px, 5.5vw, 32px);
    letter-spacing: 0.6px;
  }
}

@media (max-width: 420px) {
  .page-header-section-tne {
    min-height: 34vh;
    padding: 2.2rem 0.8rem;
  }

  .header-title-tne {
    font-size: clamp(18px, 6vw, 28px);
    letter-spacing: 0.4px;
    margin-bottom: 0.4rem;
  }
}


/*** ==== RFM Animated Alternating Services ==== */
.rfm-alt-tech-section {
  background: #ffffff;
  padding-bottom: 56px;
}

.rfm-alt-title {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #e3000f, #ffb400);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  padding: 38px 0 5px 0;
}

.rfm-alt-lead {
  color: #6b7280;
  max-width: 900px;
  margin: 0 auto 28px;
  font-size: 15px;
}

/* row and media */
.rfm-alt-row {
  margin-bottom: 3rem;
}

.rfm-alt-media {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.rfm-alt-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2, .9, .2, 1), filter .4s;
  border-radius: 18px;
}

@media (hover: hover) {
  .rfm-alt-media:hover .rfm-alt-img {
    transform: scale(1.04) translateY(-6px);
    filter: brightness(0.98);
  }
}

.rfm-alt-card {
  background: linear-gradient(180deg, #fff 0%, #fff 60%);
  border-radius: 12px;
  padding: 26px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(17, 24, 39, 0.03);
}

.rfm-alt-h {
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-weight: 800;
  background: linear-gradient(90deg, #e3000f, #ffb400);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  padding-bottom: 7px;
}

.rfm-alt-p {
  color: #51606a;
  line-height: 1.75;
  margin-bottom: 12px;
}

.rfm-alt-list {
  margin: 0 0 14px 18px;
  color: #334155;
  font-size: 14px;
}

.rfm-alt-list li {
  margin-bottom: 8px;
}

/* Technical Edge cards */
.rfm-edge-wrap {
  margin: 28px;
}

.rfm-edge-title {
  font-size: 2.05rem;
  margin-bottom: 12px;
  font-weight: 800;
  background: linear-gradient(90deg, #e3000f, #ffb400);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  padding: 27px;
}

.rfm-edge-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(17, 24, 39, 0.04);
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.03);
  padding: 20px;
}

/* CTA link inside card */
.rfm-alt-more {
  display: inline-block;
  color: #e3000f;
  font-weight: 700;
  text-decoration: none;
}

.rfm-alt-more:hover {
  color: #ffb400;
}


/* responsive */
@media (max-width: 991px) {
  .rfm-alt-img {
    height: 240px;
  }

  .rfm-alt-card {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .rfm-alt-img {
    height: 180px;
  }

  .rfm-alt-h {
    font-size: 1.15rem;
  }

  .rfm-alt-title {
    font-size: 1.6rem;
  }

  .rfm-alt-list {
    margin-left: 14px;
    font-size: 14px;
  }

  .rfm-edge-card {
    padding: 14px 10px;
  }
}


/*** Page-security Header */

.page-header-section-security {
  position: relative;
  background-image: url('https://res.cloudinary.com/dzcjlkjol/image/upload/v1761748295/2151877167_xaoy4o.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}


@media (min-width: 1400px) {
  .page-header-section-security {
    min-height: 64vh;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (max-width: 1024px) {
  .page-header-section-security {
    min-height: 48vh;
    padding: 4rem 1rem;
  }
}

@media (max-width: 768px) {
  .page-header-section-security {
    background-attachment: scroll;
    /* disable parallax for performance */
    min-height: 40vh;
    padding: 3rem 1rem;
  }
}

@media (max-width: 420px) {
  .page-header-section-security {
    min-height: 34vh;
    padding: 2.2rem 0.8rem;
  }
}

/*** Page-soft service Header */

.page-header-section-soft {
  position: relative;
  background-image: url('https://res.cloudinary.com/dzcjlkjol/image/upload/v1761754132/2150358964_t4xefl.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}


@media (min-width: 1400px) {
  .page-header-section-soft {
    min-height: 64vh;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (max-width: 1024px) {
  .page-header-section-soft {
    min-height: 48vh;
    padding: 4rem 1rem;
  }
}

@media (max-width: 768px) {
  .page-header-section-soft {
    background-attachment: scroll;
    /* disable parallax for performance */
    min-height: 40vh;
    padding: 3rem 1rem;
  }
}

@media (max-width: 420px) {
  .page-header-section-soft {
    min-height: 34vh;
    padding: 2.2rem 0.8rem;
  }
}


/*** Page-soft service Header */

.page-header-section-Gnl {
  position: relative;
  background-image: url('https://res.cloudinary.com/dzcjlkjol/image/upload/v1761756572/2148175909_p3q9cu.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}


@media (min-width: 1400px) {
  .page-header-section-Gnl {
    min-height: 64vh;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (max-width: 1024px) {
  .page-header-section-Gnl {
    min-height: 48vh;
    padding: 4rem 1rem;
  }
}

@media (max-width: 768px) {
  .page-header-section-Gnl {
    background-attachment: scroll;
    /* disable parallax for performance */
    min-height: 40vh;
    padding: 3rem 1rem;
  }
}

@media (max-width: 420px) {
  .page-header-section-Gnl {
    min-height: 34vh;
    padding: 2.2rem 0.8rem;
  }
}

/*** Page-ESM service Header */

.page-header-section-esm {
  position: relative;
  background-image: url('https://res.cloudinary.com/dzcjlkjol/image/upload/v1761759141/2148907408_hnwdei.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}


@media (min-width: 1400px) {
  .page-header-section-esm {
    min-height: 64vh;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (max-width: 1024px) {
  .page-header-section-esm {
    min-height: 48vh;
    padding: 4rem 1rem;
  }
}

@media (max-width: 768px) {
  .page-header-section-esm {
    background-attachment: scroll;
    /* disable parallax for performance */
    min-height: 40vh;
    padding: 3rem 1rem;
  }
}

@media (max-width: 420px) {
  .page-header-section-esm {
    min-height: 34vh;
    padding: 2.2rem 0.8rem;
  }
}

/*** Page-Adminisarative service Header */

.page-header-section-adser {
  position: relative;
  background-image: url('https://res.cloudinary.com/dzcjlkjol/image/upload/v1761761110/47251_x8tbzg.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}


@media (min-width: 1400px) {
  .page-header-section-adser {
    min-height: 64vh;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (max-width: 1024px) {
  .page-header-section-adser {
    min-height: 48vh;
    padding: 4rem 1rem;
  }
}

@media (max-width: 768px) {
  .page-header-section-adser {
    background-attachment: scroll;
    /* disable parallax for performance */
    min-height: 40vh;
    padding: 3rem 1rem;
  }
}

@media (max-width: 420px) {
  .page-header-section-adser {
    min-height: 34vh;
    padding: 2.2rem 0.8rem;
  }
}

/*** Page-HR Payroll service Header */

.page-header-section-hrpl {
  position: relative;
  background-image: url('https://res.cloudinary.com/dzcjlkjol/image/upload/v1761763505/2147838553_g59iwt.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}


@media (min-width: 1400px) {
  .page-header-section-hrpl {
    min-height: 64vh;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (max-width: 1024px) {
  .page-header-section-hrpl {
    min-height: 48vh;
    padding: 4rem 1rem;
  }
}

@media (max-width: 768px) {
  .page-header-section-hrpl {
    background-attachment: scroll;
    /* disable parallax for performance */
    min-height: 40vh;
    padding: 3rem 1rem;
  }
}

@media (max-width: 420px) {
  .page-header-section-hrpl {
    min-height: 34vh;
    padding: 2.2rem 0.8rem;
  }
}
