:root {
  --primary: #4b328f;
  --primary-dark: #24125c;
  --green: #1f4d2d;
  --text: #131225;
  --muted: #6f6b80;
  --light: #f7f5fb;
  --white: #fff;
  --shadow: 0 18px 45px rgba(75, 50, 143, .14);
  --radius: 22px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

body {
  font-family: Arial, sans-serif;
  color: var(--text);
  background: #e4e4e4;
  overflow-x: hidden;
}

a {
  text-decoration: none
}

img {
  max-width: 100%
}

.top-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
}

.navbar-brand img {

  height: 63px;
}


.navbar-nav .nav-link {
  color: #201647;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 14px !important;
  border-radius: 30px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: rgba(75, 50, 143, .1);
  color: var(--primary);
}

.call-btn {
  /* background: linear-gradient(135deg, var(--primary), var(--primary-dark)); */
    background: radial-gradient(circle at top right, rgba(106, 90, 205, .28), transparent 34%), linear-gradient(135deg, #120c2e 0%, #3f3278 45%, #3b2a70 100%);
  color: #fff;
  padding: 11px 20px 10px 22px;
  border-radius: 40px;
  box-shadow: 0 12px 25px rgba(75, 50, 143, .28);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.call-btn {
  /* background: linear-gradient(135deg, #4c309b, #24125c); */
    background: radial-gradient(circle at top right, rgba(106, 90, 205, .28), transparent 34%), linear-gradient(135deg, #2d235e 0%, #3f3278 45%, #3b2a70 100%);
  color: #fff;
  transition: all 0.3s ease;
}

.call-btn:hover {
  background: linear-gradient(135deg, #5a4bcf, #7b68ee, #4b3fb5);
  color: #fff;
  transform: translateY(-2px);
}

.call-btn i {
  transition: all 0.3s ease;
}

/* 🔥 Hover pe icon move + thoda scale */
.call-btn:hover i {
  transform: translateX(5px) scale(1.1);
}

/* hero-section code  */

.hero-gulf{
  position:relative;
  height:90vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  font-family:'Poppins',sans-serif;

  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.65)), /* dark overlay */
    radial-gradient(circle at center, rgba(255,102,0,0.12), transparent 40%), /* light glow */
    url("services images 2.png"); /* image */

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top left, rgba(106,90,205,.35), transparent 40%),
    radial-gradient(circle at bottom right, rgba(73,62,119,.35), transparent 40%);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:750px;
  padding:20px;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,.12);
  padding:8px 18px;
  border-radius:40px;
  font-size:13px;
  margin-bottom:20px;
}

.hero-content h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-content h1 span{
  color:#a99cff;
}

.hero-content p{
  margin:20px 0 30px;
  color:#e3ddff;
  line-height:1.7;
}

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
}

.btn-primary{
  background:linear-gradient(135deg,#493e77,#6a5acd);
  padding:14px 28px;
  border-radius:40px;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  display:flex;
  align-items:center;
  gap:8px;
  transition:.3s;
  box-shadow:0 15px 35px rgba(106,90,205,.4);
}

.btn-primary:hover{
  transform:translateY(-3px);
  background:linear-gradient(135deg,#6a5acd,#7b68ee);
}

.btn-outline{
  border:1px solid rgba(255,255,255,.3);
  padding:14px 28px;
  border-radius:40px;
  color:#fff;
  text-decoration:none;
  transition:.3s;
}

.btn-outline:hover{
  background:rgba(255,255,255,.1);
}

/* Responsive */

@media(max-width:768px){
  .hero-content h1{
    font-size:34px;
  }

  .hero-gulf{
    height:80vh;
  }
}



/* cards style */

/* service card */
/* ===== Compact Modern Service Cards ===== */
.ser {
  max-width: 1400px;
  margin: auto;
}

/* Column flex for equal height */
.ser>.col-md-3 {
  display: flex;
}

/* Card */
.service-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
  height: 100%;

  border: 1px solid #f0f0f0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;

  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Image */
.img-box {
  height: 170px;
  min-height: 170px;
  position: relative;
  overflow: hidden;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.service-card:hover .img-box img {
  transform: scale(1.06);
}

/* Badge */
.badge-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #5541b8;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  z-index: 2;
}

/* Content */
.service-card .p-3 {
  padding: 20px !important;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* GAP FIX */
}

/* Title */
.service-card h6 {
  font-size: 20px;
  color: rgb(34, 34, 34);
  line-height: 1.4;
  margin-bottom: 10px;
  font-weight: 700 !important;
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Description */
.service-card p {
  font-size: 14px;
  color: #6f6f6f !important;
  line-height: 1.6;

  margin-bottom: 10px !important;
  /* GAP FIX */

  min-height: 45px;
  max-height: 45px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Remove extra inline margin */
.service-card p[style],
.service-card p.mt-4 {
  margin-top: 0 !important;
}

/* Button position fix */
.service-card .text-center.mt-3 {
  margin-top: 12px !important;
  /* GAP FIX */
}

/* Button */
.btn-view {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid #eeeeee;
  color: #5541b8 !important;
  font-size: 15px;
  text-decoration: none;
}

.btn-view::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 18px;
  transition: 0.3s ease;
}

.btn-view:hover::after {
  transform: translateX(5px);
}

.btn-view:hover {
  color: #3f2ca0 !important;
}

/* Responsive */
@media (max-width: 1199px) {
  .ser>.col-md-3 {
    width: 33.333%;
  }
}

@media (max-width: 991px) {
  .ser>.col-md-3 {
    width: 50%;
  }

  .service-card {
    min-height: 400px;
  }
}

@media (max-width: 575px) {
  .ser>.col-md-3 {
    width: 100%;
  }

  .img-box {
    height: 190px;
    min-height: 190px;
  }

  .service-card {
    min-height: auto;
  }

  .service-card h6,
  .service-card p {
    min-height: auto;
    max-height: none;
  }
}


/* card */

/* Button area */
.service-card .text-center.mt-3 {
  margin-top: 18px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Premium Pill Button */
.service-card .btn-new {
  position: relative;
  overflow: hidden;
  padding: 11px 78px;
  border-radius: 50px;
  /* background: linear-gradient(135deg, #6a5acd, #3f22a8); */
    background: radial-gradient(circle at top right, rgba(106, 90, 205, .28), transparent 34%), linear-gradient(135deg, #211946 0%, #3f3278 45%, #3b2a70 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 10px 22px rgba(106, 90, 205, 0.28);
  transition: all 0.35s ease;
}

/* Arrow circle */
.service-card .btn-new::after {
  content: "→";
  width: 26px;
  height: 25px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.35s ease;
}

/* Shine effect */
.service-card .btn-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  transition: 0.6s ease;
}

.service-card .btn-new:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(63, 34, 168, 0.35);
}

.service-card .btn-new:hover::before {
  left: 130%;
}

.service-card .btn-new:hover::after {
  background: #fff;
  color: #4834d4;
  transform: translateX(4px);
}



/* how its work  */


.how-modern {
  padding: 60px 0;

  /* background: radial-gradient(circle at top left, rgba(106, 90, 205, .35), transparent 40%), radial-gradient(circle at bottom right, rgba(73, 62, 119, .35), transparent 40%), linear-gradient(135deg, #493e77, #6a5acd, #24125c); */
  background: radial-gradient(circle at top right, rgba(106, 90, 205, .28), transparent 34%), linear-gradient(190deg, #251e46 0%, #3f3278 48%, #3b2a70 100%);

}

.how-modern::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  top: -160px;
  left: -120px;
}



.how-modern .container {
  position: relative;
  z-index: 2;
}

.how-modern-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 55px;
}

.how-modern-head span {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.how-modern-head h2 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  color: #fff;
  margin: 16px 0 10px;
}

.how-modern-head p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  margin: 0;
}

.how-modern-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.how-modern-card {
  min-height: 285px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 20px 45px rgba(20, 16, 55, 0.22);
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
}

.how-modern-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(106, 90, 205, 0.16), transparent 55%);
  opacity: 0;
  transition: 0.4s ease;
}

.how-modern-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(20, 16, 55, 0.32);
}

.how-modern-card:hover::before {
  opacity: 1;
}

.how-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.how-no {
  font-size: 54px;
  line-height: 1;
  font-weight: 900;
  color: rgba(106, 90, 205, 0.16);
}

.how-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, #6a5acd, #3f22a8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  box-shadow: 0 14px 25px rgba(106, 90, 205, 0.35);
  transition: 0.4s ease;
}

.how-modern-card:hover .how-icon {
  transform: rotate(-8deg) scale(1.08);
}

.how-modern-card h4 {
  position: relative;
  z-index: 1;
  font-size: 21px;
  font-weight: 600;
  color: #11162a;
  margin: 0 0 12px;
}

.how-modern-card p {
  position: relative;
  z-index: 1;
  color: #626a7c;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1200px) {
  .how-modern-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .how-modern {
    padding: 60px 0;
  }

  .how-modern-grid {
    grid-template-columns: 1fr;
  }

  .how-modern-head h2 {
    font-size: 26px;
  }

  .how-modern-card {
    min-height: auto;
  }
}


/* why choose us  */

.premium-why {
  padding: 90px 20px;
  background:
    radial-gradient(circle at top left, rgba(123, 104, 238, .18), transparent 35%),
    linear-gradient(135deg, #f8f7ff, #eef2ff);
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: .9fr 1.2fr;
  gap: 55px;
  align-items: center;
}

.why-tag {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 50px;
  background: rgba(76, 48, 155, .1);
  color: #4c309b;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .5px;
  margin-bottom: 18px;
}

.why-left h2 {
  font-size: 46px;
  line-height: 1.15;
  font-weight: 600;
  color: #20104f;
  margin-bottom: 18px;
}

.why-left p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  max-width: 480px;
}

.why-stats {
  display: flex;
  gap: 18px;
  margin-top: 35px;
}

.why-stats div {
  background: #fff;
  padding: 22px 28px;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(76, 48, 155, .12);
  border: 1px solid rgba(76, 48, 155, .08);
}

.why-stats h3 {
  font-size: 32px;
  font-weight: 500;
  color: #4c309b;
  margin: 0;
}

.why-stats span {
  color: #666;
  font-size: 14px;
}

.why-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.premium-card {
  position: relative;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, .7);
  padding: 34px 28px;
  border-radius: 28px;
  box-shadow: 0 22px 55px rgba(76, 48, 155, .13);
  overflow: hidden;
  transition: .35s ease;
}

.premium-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #4c309b, #7b68ee);
  opacity: 0;
  transition: .35s ease;
}

.premium-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -45px;
  bottom: -45px;
  background: rgba(123, 104, 238, .16);
  border-radius: 50%;
  transition: .35s ease;
}

.premium-card:hover::before,
.premium-card.active::before {
  opacity: 1;
}

.premium-card:hover::after,
.premium-card.active::after {
  background: rgba(255, 255, 255, .18);
}

.premium-card * {
  position: relative;
  z-index: 2;
}

.premium-card .num {
  position: absolute;
  top: 22px;
  right: 25px;
  font-size: 42px;
  font-weight: 800;
  color: rgba(76, 48, 155, .09);
}

.premium-card:hover .num,
.premium-card.active .num {
  color: rgba(255, 255, 255, .16);
}

.premium-card .icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f1edff, #ffffff);
  color: #4c309b;
  font-size: 24px;
  margin-bottom: 22px;
  box-shadow: 0 12px 28px rgba(76, 48, 155, .12);
}

.premium-card h4 {
  font-size: 20px;
  font-weight: 500;
  color: #20104f;
  margin-bottom: 10px;
}

.premium-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.premium-card:hover,
.premium-card.active {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(76, 48, 155, .25);
}

.premium-card:hover .icon,
.premium-card.active .icon {
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

.premium-card:hover h4,
.premium-card:hover p,
.premium-card.active h4,
.premium-card.active p {
  color: #fff;
}

@media(max-width:992px) {
  .why-container {
    grid-template-columns: 1fr;
  }

  .why-left h2 {
    font-size: 36px;
  }
}

@media(max-width:576px) {
  .premium-why {
    padding: 60px 14px;
  }

  .why-right {
    grid-template-columns: 1fr;
  }

  .why-stats {
    flex-direction: column;
  }

  .why-left h2 {
    font-size: 30px;
  }

  .premium-card {
    padding: 28px 24px;
  }
}

/* get in touch  */

.same-theme {
  padding: 81px 20px;
  /* background:
    radial-gradient(circle at top left, rgba(106, 90, 205, .35), transparent 40%),
    radial-gradient(circle at bottom right, rgba(73, 62, 119, .35), transparent 40%),
    linear-gradient(135deg, #493e77, #6a5acd, #24125c); */
      background: radial-gradient(circle at top right, rgba(106, 90, 205, .28), transparent 34%), linear-gradient(135deg, #120c2e 0%, #3f3278 48%, #3b2a70 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.luxury-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT */

.luxury-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 40px;
  background: rgba(255, 255, 255, .12);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

.luxury-left h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.luxury-left p {
     color: #8d8d8d;
  line-height: 1.7;
  max-width: 450px;
}

.luxury-info {
  margin-top: 30px;
}

.luxury-info div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #e9e5ff;
}

.luxury-info i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .12);
}

/* FORM */

.service-form-card{
  max-width:500px;
  width:100%;
  background:#fff;
  padding:34px;
  border-radius:22px;
  border:1px solid #e9e5ff;
  box-shadow:0 22px 60px rgba(73,62,119,.14);
  font-family:'Poppins',sans-serif;
}

.service-form-card h3{
  font-size:28px;
  font-weight:800;
        font-weight: 500;
    color: #868686;
  margin:0 0 10px;
}
.service-form-card{
  max-width:500px;
  width:100%;
  background:#fff;
  padding:34px;
  border-radius:22px;
  border:1px solid #e9e5ff;
  box-shadow:0 22px 60px rgba(73,62,119,.14);
  font-family:'Poppins',sans-serif;
  box-sizing:border-box;
}

.service-form-card *{
  box-sizing:border-box;
}

.service-form-card h3{
  font-size:28px;
  font-weight:800;
  color:#06122a;
  margin:0 0 10px;
}

.service-form-card p{
  font-size:13px;
  color:#5f6072;
  margin:0 0 24px;
}

.service-form-card input,
.service-form-card select,
.service-form-card textarea{
  width:100%;
  background:#f7f7ff;
  border:1px solid #deddf0;
  border-radius:13px;
  padding:14px 16px;
  margin-bottom:14px;
  color:#24125c;
  font-size:13px;
  outline:none;
  transition:.3s ease;
}

.service-form-card textarea{
  height:96px;
  resize:none;
}

.service-form-card input:focus,
.service-form-card select:focus,
.service-form-card textarea:focus{
  background:#fff;
  border-color:#6a5acd;
  box-shadow:0 0 0 4px rgba(106,90,205,.12);
}

.service-form-card button{
  width:100%;
  border:0;
  border-radius:12px;
  padding:15px;
      background: radial-gradient(circle at top right, rgba(106, 90, 205, .28), transparent 34%), linear-gradient(135deg, #2d235e 0%, #3f3278 45%, #3b2a70 100%);
  color:#fff;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 14px 28px rgba(106,90,205,.28);
  transition:.3s ease;
}

.service-form-card button:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 35px rgba(106,90,205,.38);
}

/* Contact Section Responsive Fix */
@media (max-width: 992px){
  .luxury-container{
    grid-template-columns:1fr;
    gap:35px;
  }

  .service-form-card{
    max-width:100%;
    justify-self:center;
  }
}

@media (max-width: 768px){
  .same-theme{
    padding:60px 16px;
  }

  .luxury-left h2{
    font-size:34px;
  }

  .luxury-left p{
    max-width:100%;
  }
}

@media (max-width: 576px){
  .same-theme{
    padding:50px 14px;
  }

  .luxury-container{
    grid-template-columns:1fr;
    gap:28px;
  }

  .luxury-left h2{
    font-size:28px;
    line-height:1.25;
  }

  .luxury-left p{
    font-size:14px;
    line-height:1.7;
  }

  .luxury-info div{
    font-size:14px;
  }

  .service-form-card{
    width:100%;
    max-width:100%;
    padding:24px 18px;
  }
}



/* testinomial */

.client-love{
  padding:90px 18px;
  background:
    radial-gradient(circle at top left, rgba(106,90,205,.22), transparent 35%),
    linear-gradient(135deg,#f7f5ff,#eef1ff);
  font-family:'Poppins',sans-serif;
}

.client-container{
  max-width:1180px;
  margin:auto;
}

.review-head{
  text-align:center;
  max-width:650px;
  margin:0 auto 45px;
}

.review-head span{
  display:inline-block;
  padding:8px 18px;
  border-radius:40px;
  background:#fff;
  color:#493e77;
  font-size:12px;
  font-weight:800;
  box-shadow:0 10px 28px rgba(73,62,119,.12);
  margin-bottom:14px;
}

.review-head h2{
  font-size:42px;
  font-weight:800;
  color:#1f1647;
  margin:0 0 12px;
}

.review-head p{
  color:#666;
  line-height:1.7;
  margin:0;
}

.review-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.review-card{
  position:relative;
  min-height:255px;
  height:100%;
  background:#fff;
  padding:30px;
  border-radius:26px;
  border:1px solid rgba(106,90,205,.13);
  box-shadow:0 20px 55px rgba(73,62,119,.12);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  overflow:hidden;
  transition:.35s ease;
}

.review-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,#493e77,#6a5acd);
  opacity:0;
  transition:.35s ease;
}

.review-card::after{
  content:"”";
  position:absolute;
  top:8px;
  right:24px;
  font-size:90px;
  font-weight:900;
  color:rgba(106,90,205,.10);
  line-height:1;
  transition:.35s ease;
}

.review-card:hover{
  transform:translateY(-8px);
  box-shadow:0 30px 75px rgba(73,62,119,.22);
}

.review-card:hover::before{
  opacity:1;
}

.review-card:hover::after{
  color:rgba(255,255,255,.16);
}

.review-card > *{
  position:relative;
  z-index:2;
}

.stars{
  color:#ffc94a;
  letter-spacing:3px;
  font-size:16px;
  margin-bottom:18px;
}

.review-card p{
  color:#555;
  font-size:15px;
  line-height:1.75;
  margin:0 0 26px;
  flex-grow:1;
  transition:.35s ease;
}

.review-user{
  display:flex;
  align-items:center;
  gap:14px;
}

.review-user img{
  width:56px;
  height:56px;
  border-radius:50%;
  object-fit:cover;
  border:3px solid rgba(106,90,205,.22);
  transition:.35s ease;
}

.review-user h4{
  margin:0;
  font-size:16px;
  font-weight:800;
  color:#1f1647;
  transition:.35s ease;
}

.review-user span{
  font-size:13px;
  color:#777;
  transition:.35s ease;
}

.review-card:hover p,
.review-card:hover h4,
.review-card:hover span{
  color:#fff;
}

.review-card:hover .review-user img{
  border-color:rgba(255,255,255,.45);
}

@media(max-width:992px){
  .review-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .client-love{
    padding:60px 14px;
  }

  .review-head h2{
    font-size:30px;
  }

  .review-grid{
    grid-template-columns:1fr;
  }

  .review-card{
    min-height:auto;
    padding:26px;
    border-radius:22px;
  }
}

/* footer */

.footer-design-4{
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(106, 90, 205, .28), transparent 34%),
  linear-gradient(135deg, #120c2e 0%, #3f3278 45%, #3b2a70 100%);
  color: #fff;
  padding: 55px 38px 0;
  font-family: 'Poppins', sans-serif;
}

/* Decorative wave */
.footer-wave-right{
  position:absolute;
  width:280px;
  height:280px;
  right:-120px;
  top:20px;
  background:repeating-radial-gradient(ellipse at right top,
    transparent 0 13px,
    rgba(166,143,255,.45) 14px 15px
  );
  transform:rotate(-8deg);
  opacity:.6;
}

/* 🔥 MAIN FIX HERE */
.footer-container{
  position:relative;
  z-index:2;
  max-width:1280px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.3fr .9fr 1.2fr 1.2fr; /* ✅ ONLY 4 COLUMNS */
  gap:40px;
  align-items:flex-start;
}

/* Logo */
.footer-logo{
  max-width:230px;
  margin-bottom:18px;
  filter: brightness(6);
}

/* Brand text */
.footer-brand p{
  color:#bebebe;
  font-size:14px;
  line-height:1.65;
  max-width:320px;
  margin:0;
}

/* Social */
.footer-social{
  display:flex;
  gap:13px;
  margin-top:24px;
}

.footer-social a{
  width:36px;
  height:36px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-decoration:none;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(190,175,255,.45);
  transition:.3s ease;
}

.footer-social a:hover{
  background:linear-gradient(135deg,#493e77,#6a5acd);
  transform:translateY(-4px);
  box-shadow:0 12px 25px rgba(106,90,205,.35);
}

/* Headings */
.footer-col h4{
  font-size:15px;
  font-weight:600;
  text-transform:uppercase;
  margin:0 0 16px;
  color:#fff;
}

/* Links */
.footer-col a{
  display:block;
  color:#bebebe;
  text-decoration:none;
  font-size:15px;
  margin-bottom:8px;
  transition:.3s ease;
}

.footer-col a:hover{
  color:#b9aaff;
  transform:translateX(5px);
}

/* Contact */
.contact-item{
  display:flex;
  gap:12px;
  color:#bebebe;
  font-size:15px;
  line-height:1.5;
  margin-bottom:16px;
}

.contact-item i{
  color:#b9aaff;
  font-size:17px;
  margin-top:3px;
}

/* Bottom */
.footer-bottom{
  position:relative;
  z-index:2;
  max-width:1280px;
  margin:35px auto 0;
  padding:17px 0;
  border-top:1px solid rgba(255,255,255,.18);
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  color:#838383;
  font-size:15px;
}

.footer-bottom p{
  margin:0;
}

.footer-bottom-links{
  display:flex;
  align-items:center;
  gap:18px;
}

.footer-bottom-links a{
  color:#838383;
  text-decoration:none;
  transition:.3s;
}

.footer-bottom-links a:hover{
  color:#b9aaff;
}

.footer-bottom-links span{
  width:1px;
  height:14px;
  background:rgba(255,255,255,.35);
}

/* Tablet */
@media(max-width:1100px){
  .footer-container{
    grid-template-columns:1fr 1fr;
  }
}

/* Mobile */
@media(max-width:576px){
  .footer-design-4{
    padding:45px 18px 0;
  }

  .footer-container{
    grid-template-columns:1fr;
    gap:30px;
    text-align:left;
  }

  .footer-brand p{
    margin:0 auto;
  }

  .footer-social{
    
  }

  .contact-item{
    
    text-align:left;
  }

  .footer-bottom{
    flex-direction:column;
    text-align:center;
    align-items:center;
  }

  .footer-bottom-links{
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
  }
}


/* global manpower solution style */

.cs-info-page {
  width: 100%;
  background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 45%, #f6f8fc 100%);
  padding: 50px 15px;
  font-family: "Poppins", Arial, sans-serif;
  color: #172033;
}

.cs-info-container {
  max-width: 1180px;
  margin: auto;
}

.cs-info-hero {
  position: relative;
  height: 430px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(25, 35, 80, 0.18);
}

.cs-info-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs-info-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22, 18, 70, 0.82), rgba(70, 54, 150, 0.45), rgba(0,0,0,0.05));
}

.cs-hero-overlay {
  position: absolute;
  left: 45px;
  bottom: 45px;
  z-index: 2;
  max-width: 650px;
  color: #fff;
}

.cs-hero-overlay span {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 14px;
  backdrop-filter: blur(8px);
}

.cs-hero-overlay h1 {
  font-size: 46px;
  line-height: 1.15;
  margin: 0;
  font-weight: 800;
}

.cs-breadcrumb {
  margin: 26px 0;
  font-size: 14px;
  color: #6b7280;
}

.cs-breadcrumb span {
  color: #6a5acd;
  margin: 0 8px;
}

.cs-info-layout {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 35px;
  align-items: start;
}

.cs-info-content {
  background: #fff;
  padding: 38px;
  border-radius: 26px;
  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.08);
  border: 1px solid #edf0f7;
}

.cs-section-tag {
  display: inline-block;
  background: linear-gradient(135deg, #6a5acd, #493e77);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  margin-bottom: 14px;
}

.cs-info-content h2 {
  font-size: 34px;
  margin: 0 0 16px;
  color: #111827;
}

.cs-info-content h3 {
  font-size: 24px;
  margin: 36px 0 18px;
  color: #22185f;
  position: relative;
  padding-left: 16px;
}

.cs-info-content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 5px;
  height: 26px;
  background: linear-gradient(180deg, #6a5acd, #00c6ff);
  border-radius: 20px;
}

.cs-info-content p {
  font-size: 15.5px;
  line-height: 1.85;
  color: #4b5563;
  margin-bottom: 18px;
}

.cs-highlight-box {
  background: linear-gradient(135deg, #f0efff, #eef9ff);
  border-left: 5px solid #6a5acd;
  padding: 20px 22px;
  border-radius: 18px;
  color: #374151;
  line-height: 1.7;
  margin: 25px 0;
}

.cs-info-card {
  background: #fbfcff;
  border: 1px solid #edf1f7;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 18px;
  transition: 0.3s ease;
}

.cs-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(73, 62, 119, 0.12);
  border-color: rgba(106, 90, 205, 0.25);
}

.cs-info-card h4 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 18px;
}

.cs-info-card ul {
  padding-left: 20px;
  margin: 0;
}

.cs-info-card li {
  margin-bottom: 9px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
}

.cs-grid-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 22px;
}

.cs-grid-points div {
  background: #fff;
  border-radius: 22px;
  padding: 25px;
  border: 1px solid #edf0f7;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.cs-grid-points span {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #6a5acd, #493e77);
  color: #fff;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cs-grid-points h4 {
  margin: 0 0 8px;
  color: #111827;
}

.cs-grid-points p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
}

.cs-info-sidebar {
  position: sticky;
  top: 25px;
}

.cs-side-box {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  margin-bottom: 24px;
  border: 1px solid #edf0f7;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.cs-side-box h3 {
  margin: 0 0 12px;
  font-size: 22px;
  color: #111827;
}

.cs-side-box p {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.7;
}

.cs-side-box ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.cs-side-box li {
  padding: 11px 0;
  border-bottom: 1px solid #edf0f7;
  font-size: 14.5px;
  color: #374151;
}

.cs-side-box li span {
  color: #6a5acd;
  margin-right: 8px;
  font-weight: 700;
}

.cs-blue-box {
  background: linear-gradient(135deg, #493e77, #6a5acd);
  color: #fff;
}

.cs-blue-box h3,
.cs-blue-box p {
  color: #fff;
}

.cs-blue-box a {
  display: inline-block;
  margin-top: 10px;
  background: #fff;
  color: #493e77;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.cs-blue-box a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.18);
}

/* Responsive */
@media (max-width: 992px) {
  .cs-info-layout {
    grid-template-columns: 1fr;
  }

  .cs-info-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .cs-info-page {
    padding: 30px 12px;
  }

  .cs-info-hero {
    height: 340px;
    border-radius: 22px;
  }

  .cs-hero-overlay {
    left: 22px;
    right: 22px;
    bottom: 28px;
  }

  .cs-hero-overlay h1 {
    font-size: 32px;
  }

  .cs-info-content {
    padding: 24px;
  }

  .cs-info-content h2 {
    font-size: 28px;
  }

  .cs-grid-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .cs-info-hero {
    height: 300px;
  }

  .cs-hero-overlay h1 {
    font-size: 27px;
  }

  .cs-info-content {
    padding: 20px;
  }
}

/* secondment services  */

/* ===== SERVICE PAGE LOCKED DESIGN ===== */

.cs-service-page,
.cs-service-page * {
  box-sizing: border-box !important;
}

.cs-service-page {
  width: 100% !important;
  background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 45%, #f6f8fc 100%) !important;
  padding: 50px 15px !important;
  font-family: "Poppins", Arial, sans-serif !important;
  color: #172033 !important;
}

.cs-service-container {
  width: 100% !important;
  max-width: 1180px !important;
  margin: auto !important;
}

.cs-service-hero {
  position: relative !important;
  width: 100% !important;
  height: 430px !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  box-shadow: 0 25px 60px rgba(25, 35, 80, 0.18) !important;
}

.cs-service-hero img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.cs-service-hero::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(90deg, rgba(22,18,70,.82), rgba(70,54,150,.45), rgba(0,0,0,.05)) !important;
}

.cs-service-hero-content {
  position: absolute !important;
  left: 45px !important;
  bottom: 45px !important;
  z-index: 2 !important;
  max-width: 760px !important;
  color: #fff !important;
}

.cs-service-hero-content span {
  display: inline-block !important;
  background: rgba(255,255,255,.18) !important;
  border: 1px solid rgba(255,255,255,.25) !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
  font-size: 14px !important;
  margin-bottom: 14px !important;
}

.cs-service-hero-content h1 {
  font-size: 44px !important;
  line-height: 1.15 !important;
  margin: 0 !important;
  font-weight: 800 !important;
}

.cs-breadcrumb {
  margin: 26px 0 !important;
  font-size: 14px !important;
  color: #6b7280 !important;
}

.cs-breadcrumb span {
  color: #6a5acd !important;
  margin: 0 8px !important;
}

.cs-service-layout {
  display: grid !important;
  grid-template-columns: 1fr 330px !important;
  gap: 35px !important;
  align-items: start !important;
}

.cs-service-content {
  width: 100% !important;
  background: #fff !important;
  padding: 38px !important;
  border-radius: 26px !important;
  box-shadow: 0 15px 45px rgba(15,23,42,.08) !important;
  border: 1px solid #edf0f7 !important;
}

.cs-section-tag {
  display: inline-block !important;
  background: linear-gradient(135deg, #6a5acd, #493e77) !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
  font-size: 13px !important;
  margin-bottom: 14px !important;
}

.cs-service-content h2 {
  font-size: 34px !important;
  margin: 0 0 16px !important;
  color: #111827 !important;
}

.cs-service-content h3 {
  font-size: 24px !important;
  margin: 36px 0 18px !important;
  color: #22185f !important;
  position: relative !important;
  padding-left: 16px !important;
}

.cs-service-content h3::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 5px !important;
  width: 5px !important;
  height: 26px !important;
  background: linear-gradient(180deg, #6a5acd, #00c6ff) !important;
  border-radius: 20px !important;
}

.cs-service-content p {
  font-size: 15.5px !important;
  line-height: 1.85 !important;
  color: #4b5563 !important;
  margin: 0 0 18px !important;
}

.cs-highlight-box {
  background: linear-gradient(135deg, #f0efff, #eef9ff) !important;
  border-left: 5px solid #6a5acd !important;
  padding: 20px 22px !important;
  border-radius: 18px !important;
  color: #374151 !important;
  line-height: 1.7 !important;
  margin: 25px 0 !important;
}

.cs-info-card {
  width: 100% !important;
  background: #fbfcff !important;
  border: 1px solid #edf1f7 !important;
  border-radius: 20px !important;
  padding: 24px !important;
  margin-bottom: 18px !important;
  transition: .3s ease !important;
}

.cs-info-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 15px 35px rgba(73,62,119,.12) !important;
  border-color: rgba(106,90,205,.25) !important;
}

.cs-info-card h4 {
  margin: 0 0 12px !important;
  color: #111827 !important;
  font-size: 18px !important;
}

.cs-info-card ul {
  padding-left: 20px !important;
  margin: 0 !important;
}

.cs-info-card li {
  margin-bottom: 9px !important;
  color: #4b5563 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

.cs-grid-points {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
  margin-top: 22px !important;
}

.cs-grid-points div {
  background: #fff !important;
  border-radius: 22px !important;
  padding: 25px !important;
  border: 1px solid #edf0f7 !important;
  box-shadow: 0 12px 30px rgba(15,23,42,.06) !important;
}

.cs-grid-points span {
  width: 42px !important;
  height: 42px !important;
  background: linear-gradient(135deg, #6a5acd, #493e77) !important;
  color: #fff !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 14px !important;
  font-weight: 700 !important;
  margin-bottom: 15px !important;
}

.cs-grid-points h4 {
  margin: 0 0 8px !important;
  color: #111827 !important;
}

.cs-grid-points p {
  margin: 0 !important;
  font-size: 14.5px !important;
  line-height: 1.7 !important;
}

.cs-service-sidebar {
  width: 100% !important;
  max-width: 330px !important;
  position: sticky !important;
  top: 25px !important;
}

.cs-side-box {
  width: 100% !important;
  background: #fff !important;
  border-radius: 24px !important;
  padding: 28px !important;
  margin-bottom: 24px !important;
  border: 1px solid #edf0f7 !important;
  box-shadow: 0 15px 40px rgba(15,23,42,.08) !important;
}

.cs-side-box h3 {
  margin: 0 0 12px !important;
  font-size: 22px !important;
  color: #111827 !important;
}

.cs-side-box p {
  color: #6b7280 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

.cs-side-box ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 20px 0 0 !important;
}

.cs-side-box li {
  padding: 11px 0 !important;
  border-bottom: 1px solid #edf0f7 !important;
  font-size: 14.5px !important;
  color: #374151 !important;
}

.cs-side-box li span {
  color: #6a5acd !important;
  margin-right: 8px !important;
  font-weight: 700 !important;
}

.cs-blue-box {
  background: linear-gradient(135deg, #493e77, #6a5acd) !important;
  color: #fff !important;
}

.cs-blue-box h3,
.cs-blue-box p {
  color: #fff !important;
}

.cs-blue-box a {
  display: inline-block !important;
  margin-top: 10px !important;
  background: #fff !important;
  color: #493e77 !important;
  padding: 12px 22px !important;
  border-radius: 50px !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  transition: .3s ease !important;
}

.cs-blue-box a:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 25px rgba(0,0,0,.18) !important;
}

@media (max-width: 992px) {
  .cs-service-layout {
    grid-template-columns: 1fr !important;
  }

  .cs-service-sidebar {
    position: static !important;
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  .cs-service-page {
    padding: 30px 12px !important;
  }

  .cs-service-hero {
    height: 340px !important;
    border-radius: 22px !important;
  }

  .cs-service-hero-content {
    left: 22px !important;
    right: 22px !important;
    bottom: 28px !important;
  }

  .cs-service-hero-content h1 {
    font-size: 31px !important;
  }

  .cs-service-content {
    padding: 24px !important;
  }

  .cs-service-content h2 {
    font-size: 28px !important;
  }

  .cs-grid-points {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .cs-service-hero {
    height: 300px !important;
  }

  .cs-service-hero-content h1 {
    font-size: 26px !important;
  }

  .cs-service-content {
    padding: 20px !important;
  }
}

/* global trading  */

.gts-info-page,
.gts-info-page * {
  box-sizing: border-box !important;
}

.gts-info-page {
  width: 100% !important;
  background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 45%, #f6f8fc 100%) !important;
  padding: 50px 15px !important;
  font-family: "Poppins", Arial, sans-serif !important;
  color: #172033 !important;
}

.gts-container {
  width: 100% !important;
  max-width: 1180px !important;
  margin: auto !important;
}

.gts-hero {
  position: relative !important;
  width: 100% !important;
  height: 430px !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  box-shadow: 0 25px 60px rgba(25, 35, 80, 0.18) !important;
}

.gts-hero img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.gts-hero::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(90deg, rgba(22,18,70,.84), rgba(70,54,150,.46), rgba(0,0,0,.06)) !important;
}

.gts-hero-content {
  position: absolute !important;
  left: 45px !important;
  bottom: 45px !important;
  z-index: 2 !important;
  max-width: 760px !important;
  color: #fff !important;
}

.gts-hero-content span {
  display: inline-block !important;
  background: rgba(255,255,255,.18) !important;
  border: 1px solid rgba(255,255,255,.25) !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
  font-size: 14px !important;
  margin-bottom: 14px !important;
}

.gts-hero-content h1 {
  font-size: 44px !important;
  line-height: 1.15 !important;
  margin: 0 !important;
  font-weight: 800 !important;
}

.gts-breadcrumb {
  margin: 26px 0 !important;
  font-size: 14px !important;
  color: #6b7280 !important;
}

.gts-breadcrumb span {
  color: #6a5acd !important;
  margin: 0 8px !important;
}

.gts-layout {
  display: grid !important;
  grid-template-columns: 1fr 330px !important;
  gap: 35px !important;
  align-items: start !important;
}

.gts-content {
  width: 100% !important;
  background: #fff !important;
  padding: 38px !important;
  border-radius: 26px !important;
  box-shadow: 0 15px 45px rgba(15,23,42,.08) !important;
  border: 1px solid #edf0f7 !important;
}

.gts-tag {
  display: inline-block !important;
  background: linear-gradient(135deg, #6a5acd, #493e77) !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
  font-size: 13px !important;
  margin-bottom: 14px !important;
}

.gts-content h2 {
  font-size: 34px !important;
  margin: 0 0 16px !important;
  color: #111827 !important;
}

.gts-content h3 {
  font-size: 24px !important;
  margin: 36px 0 18px !important;
  color: #22185f !important;
  position: relative !important;
  padding-left: 16px !important;
}

.gts-content h3::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 5px !important;
  width: 5px !important;
  height: 26px !important;
  background: linear-gradient(180deg, #6a5acd, #00c6ff) !important;
  border-radius: 20px !important;
}

.gts-content p {
  font-size: 15.5px !important;
  line-height: 1.85 !important;
  color: #4b5563 !important;
  margin: 0 0 18px !important;
}

.gts-highlight {
  background: linear-gradient(135deg, #f0efff, #eef9ff) !important;
  border-left: 5px solid #6a5acd !important;
  padding: 20px 22px !important;
  border-radius: 18px !important;
  color: #374151 !important;
  line-height: 1.7 !important;
  margin: 25px 0 !important;
}

.gts-card {
  width: 100% !important;
  background: #fbfcff !important;
  border: 1px solid #edf1f7 !important;
  border-radius: 20px !important;
  padding: 24px !important;
  margin-bottom: 18px !important;
  transition: .3s ease !important;
}

.gts-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 15px 35px rgba(73,62,119,.12) !important;
  border-color: rgba(106,90,205,.25) !important;
}

.gts-card h4 {
  margin: 0 0 12px !important;
  color: #111827 !important;
  font-size: 18px !important;
}

.gts-card ul {
  padding-left: 20px !important;
  margin: 0 !important;
}

.gts-card li {
  margin-bottom: 9px !important;
  color: #4b5563 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

.gts-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
  margin: 22px 0 30px !important;
}

.gts-grid div {
  background: #fff !important;
  border-radius: 22px !important;
  padding: 25px !important;
  border: 1px solid #edf0f7 !important;
  box-shadow: 0 12px 30px rgba(15,23,42,.06) !important;
}

.gts-grid span {
  width: 42px !important;
  height: 42px !important;
  background: linear-gradient(135deg, #6a5acd, #493e77) !important;
  color: #fff !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 14px !important;
  font-weight: 700 !important;
  margin-bottom: 15px !important;
}

.gts-grid h4 {
  margin: 0 0 8px !important;
  color: #111827 !important;
  font-size: 18px !important;
}

.gts-grid p {
  margin: 0 !important;
  font-size: 14.5px !important;
  line-height: 1.7 !important;
}

.gts-sidebar {
  width: 100% !important;
  max-width: 330px !important;
  position: sticky !important;
  top: 25px !important;
}

.gts-side-box {
  width: 100% !important;
  background: #fff !important;
  border-radius: 24px !important;
  padding: 28px !important;
  margin-bottom: 24px !important;
  border: 1px solid #edf0f7 !important;
  box-shadow: 0 15px 40px rgba(15,23,42,.08) !important;
}

.gts-side-box h3 {
  margin: 0 0 12px !important;
  font-size: 22px !important;
  color: #111827 !important;
}

.gts-side-box p {
  color: #6b7280 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

.gts-side-box ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 20px 0 0 !important;
}

.gts-side-box li {
  padding: 11px 0 !important;
  border-bottom: 1px solid #edf0f7 !important;
  font-size: 14.5px !important;
  color: #374151 !important;
}

.gts-side-box li span {
  color: #6a5acd !important;
  margin-right: 8px !important;
  font-weight: 700 !important;
}

.gts-purple-box {
  background: linear-gradient(135deg, #493e77, #6a5acd) !important;
  color: #fff !important;
}

.gts-purple-box h3,
.gts-purple-box p {
  color: #fff !important;
}

.gts-purple-box a {
  display: inline-block !important;
  margin-top: 18px !important;
  background: #fff !important;
  color: #493e77 !important;
  padding: 12px 22px !important;
  border-radius: 50px !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  transition: .3s ease !important;
}

.gts-purple-box a:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 25px rgba(0,0,0,.18) !important;
}

@media (max-width: 992px) {
  .gts-layout {
    grid-template-columns: 1fr !important;
  }

  .gts-sidebar {
    position: static !important;
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  .gts-info-page {
    padding: 30px 12px !important;
  }

  .gts-hero {
    height: 340px !important;
    border-radius: 22px !important;
  }

  .gts-hero-content {
    left: 22px !important;
    right: 22px !important;
    bottom: 28px !important;
  }

  .gts-hero-content h1 {
    font-size: 31px !important;
  }

  .gts-content {
    padding: 24px !important;
  }

  .gts-content h2 {
    font-size: 28px !important;
  }

  .gts-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .gts-hero {
    height: 300px !important;
  }

  .gts-hero-content h1 {
    font-size: 26px !important;
  }

  .gts-content {
    padding: 20px !important;
  }
}

/* civil construction */

.cci-info-page,
.cci-info-page * {
  box-sizing: border-box !important;
}

.cci-info-page {
  width: 100% !important;
  background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 45%, #f6f8fc 100%) !important;
  padding: 50px 15px !important;
  font-family: "Poppins", Arial, sans-serif !important;
  color: #172033 !important;
}

.cci-container {
  width: 100% !important;
  max-width: 1180px !important;
  margin: auto !important;
}

.cci-hero {
  position: relative !important;
  width: 100% !important;
  height: 430px !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  box-shadow: 0 25px 60px rgba(25, 35, 80, 0.18) !important;
}

.cci-hero img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.cci-hero::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(90deg, rgba(22,18,70,.84), rgba(70,54,150,.46), rgba(0,0,0,.06)) !important;
}

.cci-hero-content {
  position: absolute !important;
  left: 45px !important;
  bottom: 45px !important;
  z-index: 2 !important;
  max-width: 760px !important;
  color: #fff !important;
}

.cci-hero-content span {
  display: inline-block !important;
  background: rgba(255,255,255,.18) !important;
  border: 1px solid rgba(255,255,255,.25) !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
  font-size: 14px !important;
  margin-bottom: 14px !important;
}

.cci-hero-content h1 {
  font-size: 44px !important;
  line-height: 1.15 !important;
  margin: 0 !important;
  font-weight: 800 !important;
}

.cci-breadcrumb {
  margin: 26px 0 !important;
  font-size: 14px !important;
  color: #6b7280 !important;
}

.cci-breadcrumb span {
  color: #6a5acd !important;
  margin: 0 8px !important;
}

.cci-layout {
  display: grid !important;
  grid-template-columns: 1fr 330px !important;
  gap: 35px !important;
  align-items: start !important;
}

.cci-content {
  width: 100% !important;
  background: #fff !important;
  padding: 38px !important;
  border-radius: 26px !important;
  box-shadow: 0 15px 45px rgba(15,23,42,.08) !important;
  border: 1px solid #edf0f7 !important;
}

.cci-tag {
  display: inline-block !important;
  background: linear-gradient(135deg, #6a5acd, #493e77) !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
  font-size: 13px !important;
  margin-bottom: 14px !important;
}

.cci-content h2 {
  font-size: 34px !important;
  margin: 0 0 16px !important;
  color: #111827 !important;
}

.cci-content h3 {
  font-size: 24px !important;
  margin: 36px 0 18px !important;
  color: #22185f !important;
  position: relative !important;
  padding-left: 16px !important;
}

.cci-content h3::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 5px !important;
  width: 5px !important;
  height: 26px !important;
  background: linear-gradient(180deg, #6a5acd, #00c6ff) !important;
  border-radius: 20px !important;
}

.cci-content p {
  font-size: 15.5px !important;
  line-height: 1.85 !important;
  color: #4b5563 !important;
  margin: 0 0 18px !important;
}

.cci-highlight {
  background: linear-gradient(135deg, #f0efff, #eef9ff) !important;
  border-left: 5px solid #6a5acd !important;
  padding: 20px 22px !important;
  border-radius: 18px !important;
  color: #374151 !important;
  line-height: 1.7 !important;
  margin: 25px 0 !important;
}

.cci-card {
  width: 100% !important;
  background: #fbfcff !important;
  border: 1px solid #edf1f7 !important;
  border-radius: 20px !important;
  padding: 24px !important;
  margin-bottom: 18px !important;
  transition: .3s ease !important;
}

.cci-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 15px 35px rgba(73,62,119,.12) !important;
  border-color: rgba(106,90,205,.25) !important;
}

.cci-card h4 {
  margin: 0 0 12px !important;
  color: #111827 !important;
  font-size: 18px !important;
}

.cci-card ul {
  padding-left: 20px !important;
  margin: 0 !important;
}

.cci-card li {
  margin-bottom: 9px !important;
  color: #4b5563 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

.cci-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
  margin: 22px 0 30px !important;
}

.cci-grid div {
  background: #fff !important;
  border-radius: 22px !important;
  padding: 25px !important;
  border: 1px solid #edf0f7 !important;
  box-shadow: 0 12px 30px rgba(15,23,42,.06) !important;
}

.cci-grid span {
  width: 42px !important;
  height: 42px !important;
  background: linear-gradient(135deg, #6a5acd, #493e77) !important;
  color: #fff !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 14px !important;
  font-weight: 700 !important;
  margin-bottom: 15px !important;
}

.cci-grid h4 {
  margin: 0 0 8px !important;
  color: #111827 !important;
  font-size: 18px !important;
}

.cci-grid p {
  margin: 0 !important;
  font-size: 14.5px !important;
  line-height: 1.7 !important;
}

.cci-sidebar {
  width: 100% !important;
  max-width: 330px !important;
  position: sticky !important;
  top: 25px !important;
}

.cci-side-box {
  width: 100% !important;
  background: #fff !important;
  border-radius: 24px !important;
  padding: 28px !important;
  margin-bottom: 24px !important;
  border: 1px solid #edf0f7 !important;
  box-shadow: 0 15px 40px rgba(15,23,42,.08) !important;
}

.cci-side-box h3 {
  margin: 0 0 12px !important;
  font-size: 22px !important;
  color: #111827 !important;
}

.cci-side-box p {
  color: #6b7280 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

.cci-side-box ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 20px 0 0 !important;
}

.cci-side-box li {
  padding: 11px 0 !important;
  border-bottom: 1px solid #edf0f7 !important;
  font-size: 14.5px !important;
  color: #374151 !important;
}

.cci-side-box li span {
  color: #6a5acd !important;
  margin-right: 8px !important;
  font-weight: 700 !important;
}

.cci-purple-box {
  background: linear-gradient(135deg, #493e77, #6a5acd) !important;
  color: #fff !important;
}

.cci-purple-box h3,
.cci-purple-box p {
  color: #fff !important;
}

.cci-purple-box a {
  display: inline-block !important;
  margin-top: 18px !important;
  background: #fff !important;
  color: #493e77 !important;
  padding: 12px 22px !important;
  border-radius: 50px !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  transition: .3s ease !important;
}

.cci-purple-box a:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 25px rgba(0,0,0,.18) !important;
}

@media (max-width: 992px) {
  .cci-layout {
    grid-template-columns: 1fr !important;
  }

  .cci-sidebar {
    position: static !important;
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  .cci-info-page {
    padding: 30px 12px !important;
  }

  .cci-hero {
    height: 340px !important;
    border-radius: 22px !important;
  }

  .cci-hero-content {
    left: 22px !important;
    right: 22px !important;
    bottom: 28px !important;
  }

  .cci-hero-content h1 {
    font-size: 31px !important;
  }

  .cci-content {
    padding: 24px !important;
  }

  .cci-content h2 {
    font-size: 28px !important;
  }

  .cci-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .cci-hero {
    height: 300px !important;
  }

  .cci-hero-content h1 {
    font-size: 26px !important;
  }

  .cci-content {
    padding: 20px !important;
  }
}

/* industrial structure  */

.isfx-page,
.isfx-page * {
  box-sizing: border-box !important;
}

.isfx-page {
  width: 100% !important;
  background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 45%, #f6f8fc 100%) !important;
  padding: 50px 15px !important;
  font-family: "Poppins", Arial, sans-serif !important;
  color: #172033 !important;
}

.isfx-page .isfx-container {
  width: 100% !important;
  max-width: 1180px !important;
  margin: auto !important;
}

.isfx-page .isfx-hero {
  position: relative !important;
  width: 100% !important;
  height: 430px !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  box-shadow: 0 25px 60px rgba(25, 35, 80, 0.18) !important;
}

.isfx-page .isfx-hero img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.isfx-page .isfx-hero::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(90deg, rgba(22,18,70,.84), rgba(70,54,150,.46), rgba(0,0,0,.06)) !important;
}

.isfx-page .isfx-hero-content {
  position: absolute !important;
  left: 45px !important;
  bottom: 45px !important;
  z-index: 2 !important;
  max-width: 760px !important;
  color: #fff !important;
}

.isfx-page .isfx-hero-content span {
  display: inline-block !important;
  background: rgba(255,255,255,.18) !important;
  border: 1px solid rgba(255,255,255,.25) !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
  font-size: 14px !important;
  margin-bottom: 14px !important;
}

.isfx-page .isfx-hero-content h1 {
  font-size: 44px !important;
  line-height: 1.15 !important;
  margin: 0 !important;
  font-weight: 800 !important;
}

.isfx-page .isfx-breadcrumb {
  margin: 26px 0 !important;
  font-size: 14px !important;
  color: #6b7280 !important;
}

.isfx-page .isfx-breadcrumb span {
  color: #6a5acd !important;
  margin: 0 8px !important;
}

.isfx-page .isfx-layout {
  display: grid !important;
  grid-template-columns: 1fr 330px !important;
  gap: 35px !important;
  align-items: start !important;
}

.isfx-page .isfx-content {
  width: 100% !important;
  background: #fff !important;
  padding: 38px !important;
  border-radius: 26px !important;
  box-shadow: 0 15px 45px rgba(15,23,42,.08) !important;
  border: 1px solid #edf0f7 !important;
}

.isfx-page .isfx-tag {
  display: inline-block !important;
  background: linear-gradient(135deg, #6a5acd, #493e77) !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
  font-size: 13px !important;
  margin-bottom: 14px !important;
}

.isfx-page .isfx-content h2 {
  font-size: 34px !important;
  margin: 0 0 16px !important;
  color: #111827 !important;
}

.isfx-page .isfx-content h3 {
  font-size: 24px !important;
  margin: 36px 0 18px !important;
  color: #22185f !important;
  position: relative !important;
  padding-left: 16px !important;
}

.isfx-page .isfx-content h3::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 5px !important;
  width: 5px !important;
  height: 26px !important;
  background: linear-gradient(180deg, #6a5acd, #00c6ff) !important;
  border-radius: 20px !important;
}

.isfx-page .isfx-content p {
  font-size: 15.5px !important;
  line-height: 1.85 !important;
  color: #4b5563 !important;
  margin: 0 0 18px !important;
}

.isfx-page .isfx-highlight {
  background: linear-gradient(135deg, #f0efff, #eef9ff) !important;
  border-left: 5px solid #6a5acd !important;
  padding: 20px 22px !important;
  border-radius: 18px !important;
  color: #374151 !important;
  line-height: 1.7 !important;
  margin: 25px 0 !important;
}

.isfx-page .isfx-card {
  width: 100% !important;
  background: #fbfcff !important;
  border: 1px solid #edf1f7 !important;
  border-radius: 20px !important;
  padding: 24px !important;
  margin-bottom: 18px !important;
  transition: .3s ease !important;
}

.isfx-page .isfx-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 15px 35px rgba(73,62,119,.12) !important;
  border-color: rgba(106,90,205,.25) !important;
}

.isfx-page .isfx-card h4 {
  margin: 0 0 12px !important;
  color: #111827 !important;
  font-size: 18px !important;
}

.isfx-page .isfx-card ul {
  padding-left: 20px !important;
  margin: 0 !important;
}

.isfx-page .isfx-card li {
  margin-bottom: 9px !important;
  color: #4b5563 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

.isfx-page .isfx-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
  margin: 22px 0 30px !important;
}

.isfx-page .isfx-grid div {
  background: #fff !important;
  border-radius: 22px !important;
  padding: 25px !important;
  border: 1px solid #edf0f7 !important;
  box-shadow: 0 12px 30px rgba(15,23,42,.06) !important;
}

.isfx-page .isfx-grid span {
  width: 42px !important;
  height: 42px !important;
  background: linear-gradient(135deg, #6a5acd, #493e77) !important;
  color: #fff !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 14px !important;
  font-weight: 700 !important;
  margin-bottom: 15px !important;
}

.isfx-page .isfx-grid h4 {
  margin: 0 0 8px !important;
  color: #111827 !important;
  font-size: 18px !important;
}

.isfx-page .isfx-grid p {
  margin: 0 !important;
  font-size: 14.5px !important;
  line-height: 1.7 !important;
}

.isfx-page .isfx-sidebar {
  width: 100% !important;
  max-width: 330px !important;
  position: sticky !important;
  top: 25px !important;
}

.isfx-page .isfx-side-box {
  width: 100% !important;
  background: #fff !important;
  border-radius: 24px !important;
  padding: 28px !important;
  margin-bottom: 24px !important;
  border: 1px solid #edf0f7 !important;
  box-shadow: 0 15px 40px rgba(15,23,42,.08) !important;
}

.isfx-page .isfx-side-box h3 {
  margin: 0 0 12px !important;
  font-size: 22px !important;
  color: #111827 !important;
}

.isfx-page .isfx-side-box p {
  color: #6b7280 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

.isfx-page .isfx-side-box ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 20px 0 0 !important;
}

.isfx-page .isfx-side-box li {
  padding: 11px 0 !important;
  border-bottom: 1px solid #edf0f7 !important;
  font-size: 14.5px !important;
  color: #374151 !important;
}

.isfx-page .isfx-side-box li span {
  color: #6a5acd !important;
  margin-right: 8px !important;
  font-weight: 700 !important;
}

.isfx-page .isfx-purple-box {
  background: linear-gradient(135deg, #493e77, #6a5acd) !important;
  color: #fff !important;
}

.isfx-page .isfx-purple-box h3,
.isfx-page .isfx-purple-box p {
  color: #fff !important;
}

.isfx-page .isfx-purple-box a {
  display: inline-block !important;
  margin-top: 18px !important;
  background: #fff !important;
  color: #493e77 !important;
  padding: 12px 22px !important;
  border-radius: 50px !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  transition: .3s ease !important;
}

.isfx-page .isfx-purple-box a:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 25px rgba(0,0,0,.18) !important;
}

@media (max-width: 992px) {
  .isfx-page .isfx-layout {
    grid-template-columns: 1fr !important;
  }

  .isfx-page .isfx-sidebar {
    position: static !important;
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  .isfx-page {
    padding: 30px 12px !important;
  }

  .isfx-page .isfx-hero {
    height: 340px !important;
    border-radius: 22px !important;
  }

  .isfx-page .isfx-hero-content {
    left: 22px !important;
    right: 22px !important;
    bottom: 28px !important;
  }

  .isfx-page .isfx-hero-content h1 {
    font-size: 31px !important;
  }

  .isfx-page .isfx-content {
    padding: 24px !important;
  }

  .isfx-page .isfx-content h2 {
    font-size: 28px !important;
  }

  .isfx-page .isfx-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .isfx-page .isfx-hero {
    height: 300px !important;
  }

  .isfx-page .isfx-hero-content h1 {
    font-size: 26px !important;
  }

  .isfx-page .isfx-content {
    padding: 20px !important;
  }
}

/* professional hr  */

.hrhc-page,
.hrhc-page * {
  box-sizing: border-box !important;
}

.hrhc-page {
  width: 100% !important;
  background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 45%, #f6f8fc 100%) !important;
  padding: 50px 15px !important;
  font-family: "Poppins", Arial, sans-serif !important;
  color: #172033 !important;
}

.hrhc-page .hrhc-container {
  width: 100% !important;
  max-width: 1180px !important;
  margin: auto !important;
}

.hrhc-page .hrhc-hero {
  position: relative !important;
  width: 100% !important;
  height: 430px !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  box-shadow: 0 25px 60px rgba(25, 35, 80, 0.18) !important;
}

.hrhc-page .hrhc-hero img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.hrhc-page .hrhc-hero::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(90deg, rgba(22,18,70,.84), rgba(70,54,150,.46), rgba(0,0,0,.06)) !important;
}

.hrhc-page .hrhc-hero-content {
  position: absolute !important;
  left: 45px !important;
  bottom: 45px !important;
  z-index: 2 !important;
  max-width: 760px !important;
  color: #fff !important;
}

.hrhc-page .hrhc-hero-content span {
  display: inline-block !important;
  background: rgba(255,255,255,.18) !important;
  border: 1px solid rgba(255,255,255,.25) !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
  font-size: 14px !important;
  margin-bottom: 14px !important;
}

.hrhc-page .hrhc-hero-content h1 {
  font-size: 44px !important;
  line-height: 1.15 !important;
  margin: 0 !important;
  font-weight: 800 !important;
}

.hrhc-page .hrhc-breadcrumb {
  margin: 26px 0 !important;
  font-size: 14px !important;
  color: #6b7280 !important;
}

.hrhc-page .hrhc-breadcrumb span {
  color: #6a5acd !important;
  margin: 0 8px !important;
}

.hrhc-page .hrhc-layout {
  display: grid !important;
  grid-template-columns: 1fr 330px !important;
  gap: 35px !important;
  align-items: start !important;
}

.hrhc-page .hrhc-content {
  width: 100% !important;
  background: #fff !important;
  padding: 38px !important;
  border-radius: 26px !important;
  box-shadow: 0 15px 45px rgba(15,23,42,.08) !important;
  border: 1px solid #edf0f7 !important;
}

.hrhc-page .hrhc-tag {
  display: inline-block !important;
  background: linear-gradient(135deg, #6a5acd, #493e77) !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
  font-size: 13px !important;
  margin-bottom: 14px !important;
}

.hrhc-page .hrhc-content h2 {
  font-size: 34px !important;
  margin: 0 0 16px !important;
  color: #111827 !important;
}

.hrhc-page .hrhc-content h3 {
  font-size: 24px !important;
  margin: 36px 0 18px !important;
  color: #22185f !important;
  position: relative !important;
  padding-left: 16px !important;
}

.hrhc-page .hrhc-content h3::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 5px !important;
  width: 5px !important;
  height: 26px !important;
  background: linear-gradient(180deg, #6a5acd, #00c6ff) !important;
  border-radius: 20px !important;
}

.hrhc-page .hrhc-content p {
  font-size: 15.5px !important;
  line-height: 1.85 !important;
  color: #4b5563 !important;
  margin: 0 0 18px !important;
}

.hrhc-page .hrhc-highlight {
  background: linear-gradient(135deg, #f0efff, #eef9ff) !important;
  border-left: 5px solid #6a5acd !important;
  padding: 20px 22px !important;
  border-radius: 18px !important;
  color: #374151 !important;
  line-height: 1.7 !important;
  margin: 25px 0 !important;
}

.hrhc-page .hrhc-card {
  width: 100% !important;
  background: #fbfcff !important;
  border: 1px solid #edf1f7 !important;
  border-radius: 20px !important;
  padding: 24px !important;
  margin-bottom: 18px !important;
  transition: .3s ease !important;
}

.hrhc-page .hrhc-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 15px 35px rgba(73,62,119,.12) !important;
  border-color: rgba(106,90,205,.25) !important;
}

.hrhc-page .hrhc-card h4 {
  margin: 0 0 12px !important;
  color: #111827 !important;
  font-size: 18px !important;
}

.hrhc-page .hrhc-card ul {
  padding-left: 20px !important;
  margin: 0 !important;
}

.hrhc-page .hrhc-card li {
  margin-bottom: 9px !important;
  color: #4b5563 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

.hrhc-page .hrhc-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
  margin: 22px 0 30px !important;
}

.hrhc-page .hrhc-grid div {
  background: #fff !important;
  border-radius: 22px !important;
  padding: 25px !important;
  border: 1px solid #edf0f7 !important;
  box-shadow: 0 12px 30px rgba(15,23,42,.06) !important;
}

.hrhc-page .hrhc-grid span {
  width: 42px !important;
  height: 42px !important;
  background: linear-gradient(135deg, #6a5acd, #493e77) !important;
  color: #fff !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 14px !important;
  font-weight: 700 !important;
  margin-bottom: 15px !important;
}

.hrhc-page .hrhc-grid h4 {
  margin: 0 0 8px !important;
  color: #111827 !important;
  font-size: 18px !important;
}

.hrhc-page .hrhc-grid p {
  margin: 0 !important;
  font-size: 14.5px !important;
  line-height: 1.7 !important;
}

.hrhc-page .hrhc-sidebar {
  width: 100% !important;
  max-width: 330px !important;
  position: sticky !important;
  top: 25px !important;
}

.hrhc-page .hrhc-side-box {
  width: 100% !important;
  background: #fff !important;
  border-radius: 24px !important;
  padding: 28px !important;
  margin-bottom: 24px !important;
  border: 1px solid #edf0f7 !important;
  box-shadow: 0 15px 40px rgba(15,23,42,.08) !important;
}

.hrhc-page .hrhc-side-box h3 {
  margin: 0 0 12px !important;
  font-size: 22px !important;
  color: #111827 !important;
}

.hrhc-page .hrhc-side-box p {
  color: #6b7280 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

.hrhc-page .hrhc-side-box ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 20px 0 0 !important;
}

.hrhc-page .hrhc-side-box li {
  padding: 11px 0 !important;
  border-bottom: 1px solid #edf0f7 !important;
  font-size: 14.5px !important;
  color: #374151 !important;
}

.hrhc-page .hrhc-side-box li span {
  color: #6a5acd !important;
  margin-right: 8px !important;
  font-weight: 700 !important;
}

.hrhc-page .hrhc-purple-box {
  background: linear-gradient(135deg, #493e77, #6a5acd) !important;
  color: #fff !important;
}

.hrhc-page .hrhc-purple-box h3,
.hrhc-page .hrhc-purple-box p {
  color: #fff !important;
}

.hrhc-page .hrhc-purple-box a {
  display: inline-block !important;
  margin-top: 18px !important;
  background: #fff !important;
  color: #493e77 !important;
  padding: 12px 22px !important;
  border-radius: 50px !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  transition: .3s ease !important;
}

.hrhc-page .hrhc-purple-box a:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 25px rgba(0,0,0,.18) !important;
}

@media (max-width: 992px) {
  .hrhc-page .hrhc-layout {
    grid-template-columns: 1fr !important;
  }

  .hrhc-page .hrhc-sidebar {
    position: static !important;
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  .hrhc-page {
    padding: 30px 12px !important;
  }

  .hrhc-page .hrhc-hero {
    height: 340px !important;
    border-radius: 22px !important;
  }

  .hrhc-page .hrhc-hero-content {
    left: 22px !important;
    right: 22px !important;
    bottom: 28px !important;
  }

  .hrhc-page .hrhc-hero-content h1 {
    font-size: 31px !important;
  }

  .hrhc-page .hrhc-content {
    padding: 24px !important;
  }

  .hrhc-page .hrhc-content h2 {
    font-size: 28px !important;
  }

  .hrhc-page .hrhc-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .hrhc-page .hrhc-hero {
    height: 300px !important;
  }

  .hrhc-page .hrhc-hero-content h1 {
    font-size: 26px !important;
  }

  .hrhc-page .hrhc-content {
    padding: 20px !important;
  }
}

/* manpower-rectruitment */

.mrlx-page,
.mrlx-page * {
  box-sizing: border-box !important;
}

.mrlx-page {
  width: 100% !important;
  background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 45%, #f6f8fc 100%) !important;
  padding: 50px 15px !important;
  font-family: "Poppins", Arial, sans-serif !important;
  color: #172033 !important;
}

.mrlx-page .mrlx-container {
  width: 100% !important;
  max-width: 1180px !important;
  margin: auto !important;
}

.mrlx-page .mrlx-hero {
  position: relative !important;
  width: 100% !important;
  height: 430px !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  box-shadow: 0 25px 60px rgba(25, 35, 80, 0.18) !important;
}

.mrlx-page .mrlx-hero img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.mrlx-page .mrlx-hero::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(90deg, rgba(22,18,70,.84), rgba(70,54,150,.46), rgba(0,0,0,.06)) !important;
}

.mrlx-page .mrlx-hero-content {
  position: absolute !important;
  left: 45px !important;
  bottom: 45px !important;
  z-index: 2 !important;
  max-width: 760px !important;
  color: #fff !important;
}

.mrlx-page .mrlx-hero-content span {
  display: inline-block !important;
  background: rgba(255,255,255,.18) !important;
  border: 1px solid rgba(255,255,255,.25) !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
  font-size: 14px !important;
  margin-bottom: 14px !important;
}

.mrlx-page .mrlx-hero-content h1 {
  font-size: 44px !important;
  line-height: 1.15 !important;
  margin: 0 !important;
  font-weight: 800 !important;
}

.mrlx-page .mrlx-breadcrumb {
  margin: 26px 0 !important;
  font-size: 14px !important;
  color: #6b7280 !important;
}

.mrlx-page .mrlx-breadcrumb span {
  color: #6a5acd !important;
  margin: 0 8px !important;
}

.mrlx-page .mrlx-layout {
  display: grid !important;
  grid-template-columns: 1fr 330px !important;
  gap: 35px !important;
  align-items: start !important;
}

.mrlx-page .mrlx-content {
  width: 100% !important;
  background: #fff !important;
  padding: 38px !important;
  border-radius: 26px !important;
  box-shadow: 0 15px 45px rgba(15,23,42,.08) !important;
  border: 1px solid #edf0f7 !important;
}

.mrlx-page .mrlx-tag {
  display: inline-block !important;
  background: linear-gradient(135deg, #6a5acd, #493e77) !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
  font-size: 13px !important;
  margin-bottom: 14px !important;
}

.mrlx-page .mrlx-content h2 {
  font-size: 34px !important;
  margin: 0 0 16px !important;
  color: #111827 !important;
}

.mrlx-page .mrlx-content h3 {
  font-size: 24px !important;
  margin: 36px 0 18px !important;
  color: #22185f !important;
  position: relative !important;
  padding-left: 16px !important;
}

.mrlx-page .mrlx-content h3::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 5px !important;
  width: 5px !important;
  height: 26px !important;
  background: linear-gradient(180deg, #6a5acd, #00c6ff) !important;
  border-radius: 20px !important;
}

.mrlx-page .mrlx-content p {
  font-size: 15.5px !important;
  line-height: 1.85 !important;
  color: #4b5563 !important;
  margin: 0 0 18px !important;
}

.mrlx-page .mrlx-highlight {
  background: linear-gradient(135deg, #f0efff, #eef9ff) !important;
  border-left: 5px solid #6a5acd !important;
  padding: 20px 22px !important;
  border-radius: 18px !important;
  color: #374151 !important;
  line-height: 1.7 !important;
  margin: 25px 0 !important;
}

.mrlx-page .mrlx-card {
  width: 100% !important;
  background: #fbfcff !important;
  border: 1px solid #edf1f7 !important;
  border-radius: 20px !important;
  padding: 24px !important;
  margin-bottom: 18px !important;
  transition: .3s ease !important;
}

.mrlx-page .mrlx-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 15px 35px rgba(73,62,119,.12) !important;
  border-color: rgba(106,90,205,.25) !important;
}

.mrlx-page .mrlx-card h4 {
  margin: 0 0 12px !important;
  color: #111827 !important;
  font-size: 18px !important;
}

.mrlx-page .mrlx-card ul {
  padding-left: 20px !important;
  margin: 0 !important;
}

.mrlx-page .mrlx-card li {
  margin-bottom: 9px !important;
  color: #4b5563 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

.mrlx-page .mrlx-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
  margin: 22px 0 30px !important;
}

.mrlx-page .mrlx-grid div {
  background: #fff !important;
  border-radius: 22px !important;
  padding: 25px !important;
  border: 1px solid #edf0f7 !important;
  box-shadow: 0 12px 30px rgba(15,23,42,.06) !important;
}

.mrlx-page .mrlx-grid span {
  width: 42px !important;
  height: 42px !important;
  background: linear-gradient(135deg, #6a5acd, #493e77) !important;
  color: #fff !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 14px !important;
  font-weight: 700 !important;
  margin-bottom: 15px !important;
}

.mrlx-page .mrlx-grid h4 {
  margin: 0 0 8px !important;
  color: #111827 !important;
  font-size: 18px !important;
}

.mrlx-page .mrlx-grid p {
  margin: 0 !important;
  font-size: 14.5px !important;
  line-height: 1.7 !important;
}

.mrlx-page .mrlx-sidebar {
  width: 100% !important;
  max-width: 330px !important;
  position: sticky !important;
  top: 25px !important;
}

.mrlx-page .mrlx-side-box {
  width: 100% !important;
  background: #fff !important;
  border-radius: 24px !important;
  padding: 28px !important;
  margin-bottom: 24px !important;
  border: 1px solid #edf0f7 !important;
  box-shadow: 0 15px 40px rgba(15,23,42,.08) !important;
}

.mrlx-page .mrlx-side-box h3 {
  margin: 0 0 12px !important;
  font-size: 22px !important;
  color: #111827 !important;
}

.mrlx-page .mrlx-side-box p {
  color: #6b7280 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

.mrlx-page .mrlx-side-box ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 20px 0 0 !important;
}

.mrlx-page .mrlx-side-box li {
  padding: 11px 0 !important;
  border-bottom: 1px solid #edf0f7 !important;
  font-size: 14.5px !important;
  color: #374151 !important;
}

.mrlx-page .mrlx-side-box li span {
  color: #6a5acd !important;
  margin-right: 8px !important;
  font-weight: 700 !important;
}

.mrlx-page .mrlx-purple-box {
  background: linear-gradient(135deg, #493e77, #6a5acd) !important;
  color: #fff !important;
}

.mrlx-page .mrlx-purple-box h3,
.mrlx-page .mrlx-purple-box p {
  color: #fff !important;
}

.mrlx-page .mrlx-purple-box a {
  display: inline-block !important;
  margin-top: 18px !important;
  background: #fff !important;
  color: #493e77 !important;
  padding: 12px 22px !important;
  border-radius: 50px !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  transition: .3s ease !important;
}

.mrlx-page .mrlx-purple-box a:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 25px rgba(0,0,0,.18) !important;
}

@media (max-width: 992px) {
  .mrlx-page .mrlx-layout {
    grid-template-columns: 1fr !important;
  }

  .mrlx-page .mrlx-sidebar {
    position: static !important;
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  .mrlx-page {
    padding: 30px 12px !important;
  }

  .mrlx-page .mrlx-hero {
    height: 340px !important;
    border-radius: 22px !important;
  }

  .mrlx-page .mrlx-hero-content {
    left: 22px !important;
    right: 22px !important;
    bottom: 28px !important;
  }

  .mrlx-page .mrlx-hero-content h1 {
    font-size: 31px !important;
  }

  .mrlx-page .mrlx-content {
    padding: 24px !important;
  }

  .mrlx-page .mrlx-content h2 {
    font-size: 28px !important;
  }

  .mrlx-page .mrlx-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .mrlx-page .mrlx-hero {
    height: 300px !important;
  }

  .mrlx-page .mrlx-hero-content h1 {
    font-size: 26px !important;
  }

  .mrlx-page .mrlx-content {
    padding: 20px !important;
  }
}

/* project mobilization */

.pmds-page,
.pmds-page * {
  box-sizing: border-box !important;
}

.pmds-page {
  width: 100% !important;
  background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 45%, #f6f8fc 100%) !important;
  padding: 50px 15px !important;
  font-family: "Poppins", Arial, sans-serif !important;
  color: #172033 !important;
}

.pmds-page .pmds-container {
  width: 100% !important;
  max-width: 1180px !important;
  margin: auto !important;
}

.pmds-page .pmds-hero {
  position: relative !important;
  width: 100% !important;
  height: 430px !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  box-shadow: 0 25px 60px rgba(25, 35, 80, 0.18) !important;
}

.pmds-page .pmds-hero img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.pmds-page .pmds-hero::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(90deg, rgba(22,18,70,.84), rgba(70,54,150,.46), rgba(0,0,0,.06)) !important;
}

.pmds-page .pmds-hero-content {
  position: absolute !important;
  left: 45px !important;
  bottom: 45px !important;
  z-index: 2 !important;
  max-width: 760px !important;
  color: #fff !important;
}

.pmds-page .pmds-hero-content span {
  display: inline-block !important;
  background: rgba(255,255,255,.18) !important;
  border: 1px solid rgba(255,255,255,.25) !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
  font-size: 14px !important;
  margin-bottom: 14px !important;
}

.pmds-page .pmds-hero-content h1 {
  font-size: 44px !important;
  line-height: 1.15 !important;
  margin: 0 !important;
  font-weight: 800 !important;
}

.pmds-page .pmds-breadcrumb {
  margin: 26px 0 !important;
  font-size: 14px !important;
  color: #6b7280 !important;
}

.pmds-page .pmds-breadcrumb span {
  color: #6a5acd !important;
  margin: 0 8px !important;
}

.pmds-page .pmds-layout {
  display: grid !important;
  grid-template-columns: 1fr 330px !important;
  gap: 35px !important;
  align-items: start !important;
}

.pmds-page .pmds-content {
  width: 100% !important;
  background: #fff !important;
  padding: 38px !important;
  border-radius: 26px !important;
  box-shadow: 0 15px 45px rgba(15,23,42,.08) !important;
  border: 1px solid #edf0f7 !important;
}

.pmds-page .pmds-tag {
  display: inline-block !important;
  background: linear-gradient(135deg, #6a5acd, #493e77) !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
  font-size: 13px !important;
  margin-bottom: 14px !important;
}

.pmds-page .pmds-content h2 {
  font-size: 34px !important;
  margin: 0 0 16px !important;
  color: #111827 !important;
}

.pmds-page .pmds-content h3 {
  font-size: 24px !important;
  margin: 36px 0 18px !important;
  color: #22185f !important;
  position: relative !important;
  padding-left: 16px !important;
}

.pmds-page .pmds-content h3::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 5px !important;
  width: 5px !important;
  height: 26px !important;
  background: linear-gradient(180deg, #6a5acd, #00c6ff) !important;
  border-radius: 20px !important;
}

.pmds-page .pmds-content p {
  font-size: 15.5px !important;
  line-height: 1.85 !important;
  color: #4b5563 !important;
  margin: 0 0 18px !important;
}

.pmds-page .pmds-highlight {
  background: linear-gradient(135deg, #f0efff, #eef9ff) !important;
  border-left: 5px solid #6a5acd !important;
  padding: 20px 22px !important;
  border-radius: 18px !important;
  color: #374151 !important;
  line-height: 1.7 !important;
  margin: 25px 0 !important;
}

.pmds-page .pmds-card {
  width: 100% !important;
  background: #fbfcff !important;
  border: 1px solid #edf1f7 !important;
  border-radius: 20px !important;
  padding: 24px !important;
  margin-bottom: 18px !important;
  transition: .3s ease !important;
}

.pmds-page .pmds-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 15px 35px rgba(73,62,119,.12) !important;
  border-color: rgba(106,90,205,.25) !important;
}

.pmds-page .pmds-card h4 {
  margin: 0 0 12px !important;
  color: #111827 !important;
  font-size: 18px !important;
}

.pmds-page .pmds-card ul {
  padding-left: 20px !important;
  margin: 0 !important;
}

.pmds-page .pmds-card li {
  margin-bottom: 9px !important;
  color: #4b5563 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

.pmds-page .pmds-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
  margin: 22px 0 30px !important;
}

.pmds-page .pmds-grid div {
  background: #fff !important;
  border-radius: 22px !important;
  padding: 25px !important;
  border: 1px solid #edf0f7 !important;
  box-shadow: 0 12px 30px rgba(15,23,42,.06) !important;
}

.pmds-page .pmds-grid span {
  width: 42px !important;
  height: 42px !important;
  background: linear-gradient(135deg, #6a5acd, #493e77) !important;
  color: #fff !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 14px !important;
  font-weight: 700 !important;
  margin-bottom: 15px !important;
}

.pmds-page .pmds-grid h4 {
  margin: 0 0 8px !important;
  color: #111827 !important;
  font-size: 18px !important;
}

.pmds-page .pmds-grid p {
  margin: 0 !important;
  font-size: 14.5px !important;
  line-height: 1.7 !important;
}

.pmds-page .pmds-sidebar {
  width: 100% !important;
  max-width: 330px !important;
  position: sticky !important;
  top: 25px !important;
}

.pmds-page .pmds-side-box {
  width: 100% !important;
  background: #fff !important;
  border-radius: 24px !important;
  padding: 28px !important;
  margin-bottom: 24px !important;
  border: 1px solid #edf0f7 !important;
  box-shadow: 0 15px 40px rgba(15,23,42,.08) !important;
}

.pmds-page .pmds-side-box h3 {
  margin: 0 0 12px !important;
  font-size: 22px !important;
  color: #111827 !important;
}

.pmds-page .pmds-side-box p {
  color: #6b7280 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

.pmds-page .pmds-side-box ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 20px 0 0 !important;
}

.pmds-page .pmds-side-box li {
  padding: 11px 0 !important;
  border-bottom: 1px solid #edf0f7 !important;
  font-size: 14.5px !important;
  color: #374151 !important;
}

.pmds-page .pmds-side-box li span {
  color: #6a5acd !important;
  margin-right: 8px !important;
  font-weight: 700 !important;
}

.pmds-page .pmds-purple-box {
  background: linear-gradient(135deg, #493e77, #6a5acd) !important;
  color: #fff !important;
}

.pmds-page .pmds-purple-box h3,
.pmds-page .pmds-purple-box p {
  color: #fff !important;
}

.pmds-page .pmds-purple-box a {
  display: inline-block !important;
  margin-top: 18px !important;
  background: #fff !important;
  color: #493e77 !important;
  padding: 12px 22px !important;
  border-radius: 50px !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  transition: .3s ease !important;
}

.pmds-page .pmds-purple-box a:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 25px rgba(0,0,0,.18) !important;
}

@media (max-width: 992px) {
  .pmds-page .pmds-layout {
    grid-template-columns: 1fr !important;
  }

  .pmds-page .pmds-sidebar {
    position: static !important;
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  .pmds-page {
    padding: 30px 12px !important;
  }

  .pmds-page .pmds-hero {
    height: 340px !important;
    border-radius: 22px !important;
  }

  .pmds-page .pmds-hero-content {
    left: 22px !important;
    right: 22px !important;
    bottom: 28px !important;
  }

  .pmds-page .pmds-hero-content h1 {
    font-size: 31px !important;
  }

  .pmds-page .pmds-content {
    padding: 24px !important;
  }

  .pmds-page .pmds-content h2 {
    font-size: 28px !important;
  }

  .pmds-page .pmds-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .pmds-page .pmds-hero {
    height: 300px !important;
  }

  .pmds-page .pmds-hero-content h1 {
    font-size: 26px !important;
  }

  .pmds-page .pmds-content {
    padding: 20px !important;
  }
}

/* saudi-workforce */

.swdz-page,
.swdz-page * {
  box-sizing: border-box !important;
}

.swdz-page {
  width: 100% !important;
  background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 45%, #f6f8fc 100%) !important;
  padding: 50px 15px !important;
  font-family: "Poppins", Arial, sans-serif !important;
  color: #172033 !important;
}

.swdz-page .swdz-container {
  width: 100% !important;
  max-width: 1180px !important;
  margin: auto !important;
}

.swdz-page .swdz-hero {
  position: relative !important;
  width: 100% !important;
  height: 430px !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  box-shadow: 0 25px 60px rgba(25, 35, 80, 0.18) !important;
}

.swdz-page .swdz-hero img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.swdz-page .swdz-hero::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(90deg, rgba(22,18,70,.84), rgba(70,54,150,.46), rgba(0,0,0,.06)) !important;
}

.swdz-page .swdz-hero-content {
  position: absolute !important;
  left: 45px !important;
  bottom: 45px !important;
  z-index: 2 !important;
  max-width: 760px !important;
  color: #fff !important;
}

.swdz-page .swdz-hero-content span {
  display: inline-block !important;
  background: rgba(255,255,255,.18) !important;
  border: 1px solid rgba(255,255,255,.25) !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
  font-size: 14px !important;
  margin-bottom: 14px !important;
}

.swdz-page .swdz-hero-content h1 {
  font-size: 44px !important;
  line-height: 1.15 !important;
  margin: 0 !important;
  font-weight: 800 !important;
}

.swdz-page .swdz-breadcrumb {
  margin: 26px 0 !important;
  font-size: 14px !important;
  color: #6b7280 !important;
}

.swdz-page .swdz-breadcrumb span {
  color: #6a5acd !important;
  margin: 0 8px !important;
}

.swdz-page .swdz-layout {
  display: grid !important;
  grid-template-columns: 1fr 330px !important;
  gap: 35px !important;
  align-items: start !important;
}

.swdz-page .swdz-content {
  width: 100% !important;
  background: #fff !important;
  padding: 38px !important;
  border-radius: 26px !important;
  box-shadow: 0 15px 45px rgba(15,23,42,.08) !important;
  border: 1px solid #edf0f7 !important;
}

.swdz-page .swdz-tag {
  display: inline-block !important;
  background: linear-gradient(135deg, #6a5acd, #493e77) !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
  font-size: 13px !important;
  margin-bottom: 14px !important;
}

.swdz-page .swdz-content h2 {
  font-size: 34px !important;
  margin: 0 0 16px !important;
  color: #111827 !important;
}

.swdz-page .swdz-content h3 {
  font-size: 24px !important;
  margin: 36px 0 18px !important;
  color: #22185f !important;
  position: relative !important;
  padding-left: 16px !important;
}

.swdz-page .swdz-content h3::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 5px !important;
  width: 5px !important;
  height: 26px !important;
  background: linear-gradient(180deg, #6a5acd, #00c6ff) !important;
  border-radius: 20px !important;
}

.swdz-page .swdz-content p {
  font-size: 15.5px !important;
  line-height: 1.85 !important;
  color: #4b5563 !important;
  margin: 0 0 18px !important;
}

.swdz-page .swdz-highlight {
  background: linear-gradient(135deg, #f0efff, #eef9ff) !important;
  border-left: 5px solid #6a5acd !important;
  padding: 20px 22px !important;
  border-radius: 18px !important;
  color: #374151 !important;
  line-height: 1.7 !important;
  margin: 25px 0 !important;
}

.swdz-page .swdz-card {
  width: 100% !important;
  background: #fbfcff !important;
  border: 1px solid #edf1f7 !important;
  border-radius: 20px !important;
  padding: 24px !important;
  margin-bottom: 18px !important;
  transition: .3s ease !important;
}

.swdz-page .swdz-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 15px 35px rgba(73,62,119,.12) !important;
  border-color: rgba(106,90,205,.25) !important;
}

.swdz-page .swdz-card h4 {
  margin: 0 0 12px !important;
  color: #111827 !important;
  font-size: 18px !important;
}

.swdz-page .swdz-card ul {
  padding-left: 20px !important;
  margin: 0 !important;
}

.swdz-page .swdz-card li {
  margin-bottom: 9px !important;
  color: #4b5563 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

.swdz-page .swdz-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
  margin: 22px 0 30px !important;
}

.swdz-page .swdz-grid div {
  background: #fff !important;
  border-radius: 22px !important;
  padding: 25px !important;
  border: 1px solid #edf0f7 !important;
  box-shadow: 0 12px 30px rgba(15,23,42,.06) !important;
}

.swdz-page .swdz-grid span {
  width: 42px !important;
  height: 42px !important;
  background: linear-gradient(135deg, #6a5acd, #493e77) !important;
  color: #fff !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 14px !important;
  font-weight: 700 !important;
  margin-bottom: 15px !important;
}

.swdz-page .swdz-grid h4 {
  margin: 0 0 8px !important;
  color: #111827 !important;
  font-size: 18px !important;
}

.swdz-page .swdz-grid p {
  margin: 0 !important;
  font-size: 14.5px !important;
  line-height: 1.7 !important;
}

.swdz-page .swdz-sidebar {
  width: 100% !important;
  max-width: 330px !important;
  position: sticky !important;
  top: 25px !important;
}

.swdz-page .swdz-side-box {
  width: 100% !important;
  background: #fff !important;
  border-radius: 24px !important;
  padding: 28px !important;
  margin-bottom: 24px !important;
  border: 1px solid #edf0f7 !important;
  box-shadow: 0 15px 40px rgba(15,23,42,.08) !important;
}

.swdz-page .swdz-side-box h3 {
  margin: 0 0 12px !important;
  font-size: 22px !important;
  color: #111827 !important;
}

.swdz-page .swdz-side-box p {
  color: #6b7280 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

.swdz-page .swdz-side-box ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 20px 0 0 !important;
}

.swdz-page .swdz-side-box li {
  padding: 11px 0 !important;
  border-bottom: 1px solid #edf0f7 !important;
  font-size: 14.5px !important;
  color: #374151 !important;
}

.swdz-page .swdz-side-box li span {
  color: #6a5acd !important;
  margin-right: 8px !important;
  font-weight: 700 !important;
}

.swdz-page .swdz-purple-box {
  background: linear-gradient(135deg, #493e77, #6a5acd) !important;
  color: #fff !important;
}

.swdz-page .swdz-purple-box h3,
.swdz-page .swdz-purple-box p {
  color: #fff !important;
}

.swdz-page .swdz-purple-box a {
  display: inline-block !important;
  margin-top: 18px !important;
  background: #fff !important;
  color: #493e77 !important;
  padding: 12px 22px !important;
  border-radius: 50px !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  transition: .3s ease !important;
}

.swdz-page .swdz-purple-box a:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 25px rgba(0,0,0,.18) !important;
}

@media (max-width: 992px) {
  .swdz-page .swdz-layout {
    grid-template-columns: 1fr !important;
  }

  .swdz-page .swdz-sidebar {
    position: static !important;
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  .swdz-page {
    padding: 30px 12px !important;
  }

  .swdz-page .swdz-hero {
    height: 340px !important;
    border-radius: 22px !important;
  }

  .swdz-page .swdz-hero-content {
    left: 22px !important;
    right: 22px !important;
    bottom: 28px !important;
  }

  .swdz-page .swdz-hero-content h1 {
    font-size: 31px !important;
  }

  .swdz-page .swdz-content {
    padding: 24px !important;
  }

  .swdz-page .swdz-content h2 {
    font-size: 28px !important;
  }

  .swdz-page .swdz-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .swdz-page .swdz-hero {
    height: 300px !important;
  }

  .swdz-page .swdz-hero-content h1 {
    font-size: 26px !important;
  }

  .swdz-page .swdz-content {
    padding: 20px !important;
  }
}

/* saudi hr */

.hrhc-page{
  background:#f5f7fb;
  padding:45px 0 60px;
  font-family:'Poppins',Arial,sans-serif;
  color:#101833;
}

.hrhc-container{
  width:min(1180px,92%);
  margin:auto;
}

.hrhc-hero{
  position:relative;
  height:360px;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(24,18,62,.16);
}

.hrhc-hero img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hrhc-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(40,31,101,.82),rgba(73,62,119,.45),rgba(73,62,119,.12));
}

.hrhc-hero-content{
  position:absolute;
  left:42px;
  bottom:42px;
  max-width:620px;
  color:#fff;
}

.hrhc-hero-content span{
  display:inline-block;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.35);
  padding:10px 18px;
  border-radius:30px;
  font-size:14px;
  margin-bottom:16px;
  backdrop-filter:blur(8px);
}

.hrhc-hero-content h1{
  font-size:42px;
  line-height:1.08;
  font-weight:800;
  margin:0;
}

.hrhc-breadcrumb{
  font-size:13px;
  color:#50607c;
  margin:24px 0;
}

.hrhc-breadcrumb span{
  color:#6a5acd;
  margin:0 8px;
}

.hrhc-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:36px;
  align-items:start;
}

.hrhc-content,
.hrhc-side-box{
  background:#fff;
  border-radius:22px;
  border:1px solid #e8edf5;
  box-shadow:0 12px 35px rgba(17,31,64,.06);
}

.hrhc-content{
  padding:34px;
}

.hrhc-tag{
  display:inline-block;
  background:linear-gradient(135deg,#493e77,#6a5acd);
  color:#fff;
  padding:9px 18px;
  border-radius:24px;
  font-size:13px;
  margin-bottom:18px;
}

.hrhc-content h2{
  font-size:30px;
  font-weight:700;
  margin-bottom:15px;
  color:#111936;
}

.hrhc-content p{
  font-size:15px;
  line-height:1.9;
  color:#47526b;
}

.hrhc-focus{
  background:linear-gradient(135deg,#f1f5ff,#eefaff);
  border-left:4px solid #6a5acd;
  padding:22px;
  border-radius:16px;
  margin:28px 0;
  color:#34415d;
  line-height:1.8;
}

.hrhc-content h3{
  position:relative;
  font-size:21px;
  color:#1c2670;
  font-weight:700;
  margin:35px 0 18px;
  padding-left:14px;
}

.hrhc-content h3:before{
  content:"";
  position:absolute;
  left:0;
  top:3px;
  width:4px;
  height:24px;
  background:#246bff;
  border-radius:10px;
}

.hrhc-info-box{
  background:#fbfcff;
  border:1px solid #e7ecf4;
  border-radius:18px;
  padding:22px 24px;
  margin-bottom:18px;
  transition:.3s ease;
}

.hrhc-info-box:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 35px rgba(31,44,90,.08);
  border-color:#d9ddff;
}

.hrhc-info-box h4{
  font-size:16px;
  font-weight:700;
  color:#17203a;
  margin-bottom:12px;
}

.hrhc-info-box ul{
  margin:0;
  padding-left:18px;
}

.hrhc-info-box li{
  font-size:14px;
  line-height:1.85;
  color:#44506a;
  margin-bottom:6px;
}

.hrhc-process-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.hrhc-process-card{
  background:#fff;
  border:1px solid #e6ebf3;
  border-radius:18px;
  padding:24px;
  box-shadow:0 12px 30px rgba(15,31,60,.06);
  transition:.3s ease;
}

.hrhc-process-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 42px rgba(35,35,90,.12);
}

.hrhc-process-card span{
  display:inline-flex;
  width:42px;
  height:42px;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#493e77,#6a5acd);
  color:#fff;
  border-radius:12px;
  font-weight:700;
  margin-bottom:16px;
}

.hrhc-process-card h4{
  font-size:16px;
  font-weight:700;
  margin-bottom:10px;
}

.hrhc-process-card p{
  font-size:14px;
  line-height:1.7;
  margin:0;
}

.hrhc-sidebar{
  position:sticky;
  top:25px;
}

.hrhc-side-box{
  padding:26px;
  margin-bottom:24px;
}

.hrhc-side-box h3,
.hrhc-cta-box h3{
  font-size:20px;
  font-weight:700;
  margin-bottom:12px;
}

.hrhc-side-box p{
  font-size:14px;
  color:#59667e;
  line-height:1.8;
}

.hrhc-side-box ul{
  list-style:none;
  padding:0;
  margin:22px 0 0;
}

.hrhc-side-box li{
  display:flex;
  gap:10px;
  padding:13px 0;
  border-bottom:1px solid #edf0f5;
  font-size:14px;
  color:#26324b;
}

.hrhc-side-box li span{
  color:#5d4ed1;
  font-weight:800;
}

.hrhc-cta-box{
  background:linear-gradient(135deg,#493e77,#6a5acd);
  color:#fff;
  border-radius:22px;
  padding:28px;
  box-shadow:0 18px 38px rgba(73,62,119,.28);
}

.hrhc-cta-box p{
  font-size:14px;
  line-height:1.8;
  color:rgba(255,255,255,.88);
}

.hrhc-cta-box a{
  display:inline-block;
  margin-top:12px;
  background:#fff;
  color:#493e77;
  padding:12px 20px;
  border-radius:30px;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
  transition:.3s ease;
}

.hrhc-cta-box a:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 25px rgba(0,0,0,.18);
}

@media(max-width:991px){
  .hrhc-layout{
    grid-template-columns:1fr;
  }

  .hrhc-sidebar{
    position:static;
  }

  .hrhc-hero{
    height:310px;
  }

  .hrhc-hero-content h1{
    font-size:34px;
  }
}

@media(max-width:576px){
  .hrhc-page{
    padding:25px 0 45px;
  }

  .hrhc-hero{
    height:280px;
    border-radius:18px;
  }

  .hrhc-hero-content{
    left:22px;
    right:22px;
    bottom:28px;
  }

  .hrhc-hero-content h1{
    font-size:28px;
  }

  .hrhc-content{
    padding:22px;
  }

  .hrhc-process-grid{
    grid-template-columns:1fr;
  }
}

/* payroll & salary  */

.prsm-page{
  background:#f5f7fb;
  padding:45px 0 60px;
  font-family:'Poppins',Arial,sans-serif;
  color:#101833;
}

.prsm-container{
  width:min(1180px,92%);
  margin:auto;
}

/* HERO */
.prsm-hero{
  position:relative;
  height:360px;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(24,18,62,.16);
}

.prsm-hero img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.prsm-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(40,31,101,.84),rgba(73,62,119,.48),rgba(73,62,119,.12));
}

.prsm-hero-content{
  position:absolute;
  left:42px;
  bottom:42px;
  max-width:650px;
  color:#fff;
}

.prsm-hero-content span{
  display:inline-block;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.35);
  padding:10px 18px;
  border-radius:30px;
  font-size:14px;
  margin-bottom:16px;
  backdrop-filter:blur(8px);
}

.prsm-hero-content h1{
  font-size:42px;
  line-height:1.08;
  font-weight:800;
  margin:0;
}

/* BREADCRUMB */
.prsm-breadcrumb{
  font-size:13px;
  color:#50607c;
  margin:24px 0;
}

.prsm-breadcrumb span{
  color:#6a5acd;
  margin:0 8px;
}

/* LAYOUT */
.prsm-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:36px;
  align-items:start;
}

/* CONTENT */
.prsm-content{
  background:#fff;
  border-radius:22px;
  border:1px solid #e8edf5;
  box-shadow:0 12px 35px rgba(17,31,64,.06);
  padding:34px;
}

.prsm-tag{
  display:inline-block;
  background:linear-gradient(135deg,#493e77,#6a5acd);
  color:#fff;
  padding:9px 18px;
  border-radius:24px;
  font-size:13px;
  margin-bottom:18px;
}

.prsm-content h2{
  font-size:30px;
  font-weight:700;
  margin-bottom:15px;
  color:#111936;
}

.prsm-content p{
  font-size:15px;
  line-height:1.9;
  color:#47526b;
}

.prsm-focus{
  background:linear-gradient(135deg,#f1f5ff,#eefaff);
  border-left:4px solid #6a5acd;
  padding:22px;
  border-radius:16px;
  margin:28px 0;
  color:#34415d;
  line-height:1.8;
}

.prsm-content h3{
  position:relative;
  font-size:21px;
  color:#1c2670;
  font-weight:700;
  margin:35px 0 18px;
  padding-left:14px;
}

.prsm-content h3:before{
  content:"";
  position:absolute;
  left:0;
  top:3px;
  width:4px;
  height:24px;
  background:#246bff;
  border-radius:10px;
}

/* INFO BOX */
.prsm-box{
  background:#fbfcff;
  border:1px solid #e7ecf4;
  border-radius:18px;
  padding:22px 24px;
  margin-bottom:18px;
  transition:.3s ease;
}

.prsm-box:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 35px rgba(31,44,90,.08);
  border-color:#d9ddff;
}

.prsm-box h4{
  font-size:16px;
  font-weight:700;
  color:#17203a;
  margin-bottom:12px;
}

.prsm-box ul{
  margin:0;
  padding-left:18px;
}

.prsm-box li{
  font-size:14px;
  line-height:1.85;
  color:#44506a;
  margin-bottom:6px;
}

/* PROCESS GRID */
.prsm-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.prsm-card{
  background:#fff;
  border:1px solid #e6ebf3;
  border-radius:18px;
  padding:24px;
  box-shadow:0 12px 30px rgba(15,31,60,.06);
  transition:.3s ease;
}

.prsm-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 42px rgba(35,35,90,.12);
}

.prsm-card span{
  display:inline-flex;
  width:42px;
  height:42px;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#493e77,#6a5acd);
  color:#fff;
  border-radius:12px;
  font-weight:700;
  margin-bottom:16px;
}

.prsm-card h4{
  font-size:16px;
  font-weight:700;
  margin-bottom:10px;
}

.prsm-card p{
  font-size:14px;
  line-height:1.7;
  margin:0;
}

/* SIDEBAR */
.prsm-sidebar{
  position:sticky;
  top:25px;
}

.prsm-side{
  background:#fff;
  border-radius:22px;
  border:1px solid #e8edf5;
  box-shadow:0 12px 35px rgba(17,31,64,.06);
  padding:26px;
  margin-bottom:24px;
}

.prsm-side h3,
.prsm-cta h3{
  font-size:20px;
  font-weight:700;
  margin-bottom:12px;
}

.prsm-side p{
  font-size:14px;
  color:#59667e;
  line-height:1.8;
}

.prsm-side ul{
  list-style:none;
  padding:0;
  margin:22px 0 0;
}

.prsm-side li{
  display:flex;
  gap:10px;
  padding:13px 0;
  border-bottom:1px solid #edf0f5;
  font-size:14px;
  color:#26324b;
}

.prsm-side li span{
  color:#5d4ed1;
  font-weight:800;
}

.prsm-cta{
  background:linear-gradient(135deg,#493e77,#6a5acd);
  color:#fff;
  border-radius:22px;
  padding:28px;
  box-shadow:0 18px 38px rgba(73,62,119,.28);
}

.prsm-cta p{
  font-size:14px;
  line-height:1.8;
  color:rgba(255,255,255,.88);
}

.prsm-cta a{
  display:inline-block;
  margin-top:12px;
  background:#fff;
  color:#493e77;
  padding:12px 20px;
  border-radius:30px;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
  transition:.3s ease;
}

.prsm-cta a:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 25px rgba(0,0,0,.18);
}

/* TABLET */
@media(max-width:991px){
  .prsm-layout{
    grid-template-columns:1fr;
    gap:24px;
  }

  .prsm-sidebar{
    position:static;
  }

  .prsm-hero{
    height:310px;
  }

  .prsm-hero-content h1{
    font-size:34px;
  }

  .prsm-content{
    padding:28px;
  }
}

/* MOBILE */
@media(max-width:576px){
  .prsm-page{
    padding:25px 0 45px;
  }

  .prsm-container{
    width:92%;
  }

  .prsm-hero{
    height:280px;
    border-radius:18px;
  }

  .prsm-hero-content{
    left:22px;
    right:22px;
    bottom:28px;
  }

  .prsm-hero-content span{
    font-size:12px;
    padding:8px 13px;
  }

  .prsm-hero-content h1{
    font-size:27px;
    line-height:1.15;
  }

  .prsm-content{
    padding:22px;
    border-radius:18px;
  }

  .prsm-content h2{
    font-size:24px;
  }

  .prsm-content h3{
    font-size:19px;
  }

  .prsm-box{
    padding:18px;
  }

  .prsm-grid{
    grid-template-columns:1fr;
  }

  .prsm-side,
  .prsm-cta{
    border-radius:18px;
    padding:22px;
  }
}

/* budget controll  */

.bccm-page{
  background:#f5f7fb;
  padding:45px 0 60px;
  font-family:'Poppins',Arial,sans-serif;
  color:#101833;
}

.bccm-container{
  width:min(1180px,92%);
  margin:auto;
}

.bccm-hero{
  position:relative;
  height:360px;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(24,18,62,.16);
}

.bccm-hero img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.bccm-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(40,31,101,.84),rgba(73,62,119,.48),rgba(73,62,119,.12));
}

.bccm-hero-content{
  position:absolute;
  left:42px;
  bottom:42px;
  max-width:650px;
  color:#fff;
}

.bccm-hero-content span{
  display:inline-block;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.35);
  padding:10px 18px;
  border-radius:30px;
  font-size:14px;
  margin-bottom:16px;
  backdrop-filter:blur(8px);
}

.bccm-hero-content h1{
  font-size:42px;
  line-height:1.08;
  font-weight:800;
  margin:0;
}

.bccm-breadcrumb{
  font-size:13px;
  color:#50607c;
  margin:24px 0;
}

.bccm-breadcrumb span{
  color:#6a5acd;
  margin:0 8px;
}

.bccm-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:36px;
  align-items:start;
}

.bccm-content{
  background:#fff;
  border-radius:22px;
  border:1px solid #e8edf5;
  box-shadow:0 12px 35px rgba(17,31,64,.06);
  padding:34px;
}

.bccm-tag{
  display:inline-block;
  background:linear-gradient(135deg,#493e77,#6a5acd);
  color:#fff;
  padding:9px 18px;
  border-radius:24px;
  font-size:13px;
  margin-bottom:18px;
}

.bccm-content h2{
  font-size:30px;
  font-weight:700;
  margin-bottom:15px;
  color:#111936;
}

.bccm-content p{
  font-size:15px;
  line-height:1.9;
  color:#47526b;
}

.bccm-focus{
  background:linear-gradient(135deg,#f1f5ff,#eefaff);
  border-left:4px solid #6a5acd;
  padding:22px;
  border-radius:16px;
  margin:28px 0;
  color:#34415d;
  line-height:1.8;
}

.bccm-content h3{
  position:relative;
  font-size:21px;
  color:#1c2670;
  font-weight:700;
  margin:35px 0 18px;
  padding-left:14px;
}

.bccm-content h3:before{
  content:"";
  position:absolute;
  left:0;
  top:3px;
  width:4px;
  height:24px;
  background:#246bff;
  border-radius:10px;
}

.bccm-box{
  background:#fbfcff;
  border:1px solid #e7ecf4;
  border-radius:18px;
  padding:22px 24px;
  margin-bottom:18px;
  transition:.3s ease;
}

.bccm-box:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 35px rgba(31,44,90,.08);
  border-color:#d9ddff;
}

.bccm-box h4{
  font-size:16px;
  font-weight:700;
  color:#17203a;
  margin-bottom:12px;
}

.bccm-box ul{
  margin:0;
  padding-left:18px;
}

.bccm-box li{
  font-size:14px;
  line-height:1.85;
  color:#44506a;
  margin-bottom:6px;
}

.bccm-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.bccm-card{
  background:#fff;
  border:1px solid #e6ebf3;
  border-radius:18px;
  padding:24px;
  box-shadow:0 12px 30px rgba(15,31,60,.06);
  transition:.3s ease;
}

.bccm-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 42px rgba(35,35,90,.12);
}

.bccm-card span{
  display:inline-flex;
  width:42px;
  height:42px;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#493e77,#6a5acd);
  color:#fff;
  border-radius:12px;
  font-weight:700;
  margin-bottom:16px;
}

.bccm-card h4{
  font-size:16px;
  font-weight:700;
  margin-bottom:10px;
}

.bccm-card p{
  font-size:14px;
  line-height:1.7;
  margin:0;
}

.bccm-sidebar{
  position:sticky;
  top:25px;
}

.bccm-side{
  background:#fff;
  border-radius:22px;
  border:1px solid #e8edf5;
  box-shadow:0 12px 35px rgba(17,31,64,.06);
  padding:26px;
  margin-bottom:24px;
}

.bccm-side h3,
.bccm-cta h3{
  font-size:20px;
  font-weight:700;
  margin-bottom:12px;
}

.bccm-side p{
  font-size:14px;
  color:#59667e;
  line-height:1.8;
}

.bccm-side ul{
  list-style:none;
  padding:0;
  margin:22px 0 0;
}

.bccm-side li{
  display:flex;
  gap:10px;
  padding:13px 0;
  border-bottom:1px solid #edf0f5;
  font-size:14px;
  color:#26324b;
}

.bccm-side li span{
  color:#5d4ed1;
  font-weight:800;
}

.bccm-cta{
  background:linear-gradient(135deg,#493e77,#6a5acd);
  color:#fff;
  border-radius:22px;
  padding:28px;
  box-shadow:0 18px 38px rgba(73,62,119,.28);
}

.bccm-cta p{
  font-size:14px;
  line-height:1.8;
  color:rgba(255,255,255,.88);
}

.bccm-cta a{
  display:inline-block;
  margin-top:12px;
  background:#fff;
  color:#493e77;
  padding:12px 20px;
  border-radius:30px;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
  transition:.3s ease;
}

.bccm-cta a:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 25px rgba(0,0,0,.18);
}

@media(max-width:991px){
  .bccm-layout{
    grid-template-columns:1fr;
    gap:24px;
  }

  .bccm-sidebar{
    position:static;
  }

  .bccm-hero{
    height:310px;
  }

  .bccm-hero-content h1{
    font-size:34px;
  }

  .bccm-content{
    padding:28px;
  }
}

@media(max-width:576px){
  .bccm-page{
    padding:25px 0 45px;
  }

  .bccm-container{
    width:92%;
  }

  .bccm-hero{
    height:280px;
    border-radius:18px;
  }

  .bccm-hero-content{
    left:22px;
    right:22px;
    bottom:28px;
  }

  .bccm-hero-content span{
    font-size:12px;
    padding:8px 13px;
  }

  .bccm-hero-content h1{
    font-size:27px;
    line-height:1.15;
  }

  .bccm-content{
    padding:22px;
    border-radius:18px;
  }

  .bccm-content h2{
    font-size:24px;
  }

  .bccm-content h3{
    font-size:19px;
  }

  .bccm-box{
    padding:18px;
  }

  .bccm-grid{
    grid-template-columns:1fr;
  }

  .bccm-side,
  .bccm-cta{
    border-radius:18px;
    padding:22px;
  }
}

/* manpower-budget */

.mbcm-page{
  background:#f5f7fb;
  padding:45px 0 60px;
  font-family:'Poppins',Arial,sans-serif;
  color:#101833;
}

.mbcm-container{
  width:min(1180px,92%);
  margin:auto;
}

/* HERO */
.mbcm-hero{
  position:relative;
  height:360px;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(24,18,62,.16);
}

.mbcm-hero img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.mbcm-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(40,31,101,.84),rgba(73,62,119,.48),rgba(73,62,119,.12));
}

.mbcm-hero-content{
  position:absolute;
  left:42px;
  bottom:42px;
  max-width:650px;
  color:#fff;
}

.mbcm-hero-content span{
  display:inline-block;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.35);
  padding:10px 18px;
  border-radius:30px;
  font-size:14px;
  margin-bottom:16px;
  backdrop-filter:blur(8px);
}

.mbcm-hero-content h1{
  font-size:42px;
  line-height:1.08;
  font-weight:800;
  margin:0;
}

/* BREADCRUMB */
.mbcm-breadcrumb{
  font-size:13px;
  color:#50607c;
  margin:24px 0;
}

.mbcm-breadcrumb span{
  color:#6a5acd;
  margin:0 8px;
}

/* LAYOUT */
.mbcm-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:36px;
  align-items:start;
}

/* CONTENT */
.mbcm-content{
  background:#fff;
  border-radius:22px;
  border:1px solid #e8edf5;
  box-shadow:0 12px 35px rgba(17,31,64,.06);
  padding:34px;
}

.mbcm-tag{
  display:inline-block;
  background:linear-gradient(135deg,#493e77,#6a5acd);
  color:#fff;
  padding:9px 18px;
  border-radius:24px;
  font-size:13px;
  margin-bottom:18px;
}

.mbcm-content h2{
  font-size:30px;
  font-weight:700;
  margin-bottom:15px;
  color:#111936;
}

.mbcm-content p{
  font-size:15px;
  line-height:1.9;
  color:#47526b;
}

.mbcm-focus{
  background:linear-gradient(135deg,#f1f5ff,#eefaff);
  border-left:4px solid #6a5acd;
  padding:22px;
  border-radius:16px;
  margin:28px 0;
  color:#34415d;
  line-height:1.8;
}

.mbcm-content h3{
  position:relative;
  font-size:21px;
  color:#1c2670;
  font-weight:700;
  margin:35px 0 18px;
  padding-left:14px;
}

.mbcm-content h3:before{
  content:"";
  position:absolute;
  left:0;
  top:3px;
  width:4px;
  height:24px;
  background:#246bff;
  border-radius:10px;
}

/* INFO BOX */
.mbcm-box{
  background:#fbfcff;
  border:1px solid #e7ecf4;
  border-radius:18px;
  padding:22px 24px;
  margin-bottom:18px;
  transition:.3s ease;
}

.mbcm-box:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 35px rgba(31,44,90,.08);
  border-color:#d9ddff;
}

.mbcm-box h4{
  font-size:16px;
  font-weight:700;
  color:#17203a;
  margin-bottom:12px;
}

.mbcm-box ul{
  margin:0;
  padding-left:18px;
}

.mbcm-box li{
  font-size:14px;
  line-height:1.85;
  color:#44506a;
  margin-bottom:6px;
}

/* PROCESS GRID */
.mbcm-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.mbcm-card{
  background:#fff;
  border:1px solid #e6ebf3;
  border-radius:18px;
  padding:24px;
  box-shadow:0 12px 30px rgba(15,31,60,.06);
  transition:.3s ease;
}

.mbcm-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 42px rgba(35,35,90,.12);
}

.mbcm-card span{
  display:inline-flex;
  width:42px;
  height:42px;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#493e77,#6a5acd);
  color:#fff;
  border-radius:12px;
  font-weight:700;
  margin-bottom:16px;
}

.mbcm-card h4{
  font-size:16px;
  font-weight:700;
  margin-bottom:10px;
}

.mbcm-card p{
  font-size:14px;
  line-height:1.7;
  margin:0;
}

/* SIDEBAR */
.mbcm-sidebar{
  position:sticky;
  top:25px;
}

.mbcm-side{
  background:#fff;
  border-radius:22px;
  border:1px solid #e8edf5;
  box-shadow:0 12px 35px rgba(17,31,64,.06);
  padding:26px;
  margin-bottom:24px;
}

.mbcm-side h3,
.mbcm-cta h3{
  font-size:20px;
  font-weight:700;
  margin-bottom:12px;
}

.mbcm-side p{
  font-size:14px;
  color:#59667e;
  line-height:1.8;
}

.mbcm-side ul{
  list-style:none;
  padding:0;
  margin:22px 0 0;
}

.mbcm-side li{
  display:flex;
  gap:10px;
  padding:13px 0;
  border-bottom:1px solid #edf0f5;
  font-size:14px;
  color:#26324b;
}

.mbcm-side li span{
  color:#5d4ed1;
  font-weight:800;
}

.mbcm-cta{
  background:linear-gradient(135deg,#493e77,#6a5acd);
  color:#fff;
  border-radius:22px;
  padding:28px;
  box-shadow:0 18px 38px rgba(73,62,119,.28);
}

.mbcm-cta p{
  font-size:14px;
  line-height:1.8;
  color:rgba(255,255,255,.88);
}

.mbcm-cta a{
  display:inline-block;
  margin-top:12px;
  background:#fff;
  color:#493e77;
  padding:12px 20px;
  border-radius:30px;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
  transition:.3s ease;
}

.mbcm-cta a:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 25px rgba(0,0,0,.18);
}

/* TABLET */
@media(max-width:991px){
  .mbcm-layout{
    grid-template-columns:1fr;
    gap:24px;
  }

  .mbcm-sidebar{
    position:static;
  }

  .mbcm-hero{
    height:310px;
  }

  .mbcm-hero-content h1{
    font-size:34px;
  }

  .mbcm-content{
    padding:28px;
  }
}

/* MOBILE */
@media(max-width:576px){
  .mbcm-page{
    padding:25px 0 45px;
  }

  .mbcm-container{
    width:92%;
  }

  .mbcm-hero{
    height:280px;
    border-radius:18px;
  }

  .mbcm-hero-content{
    left:22px;
    right:22px;
    bottom:28px;
  }

  .mbcm-hero-content span{
    font-size:12px;
    padding:8px 13px;
  }

  .mbcm-hero-content h1{
    font-size:27px;
    line-height:1.15;
  }

  .mbcm-content{
    padding:22px;
    border-radius:18px;
  }

  .mbcm-content h2{
    font-size:24px;
  }

  .mbcm-content h3{
    font-size:19px;
  }

  .mbcm-box{
    padding:18px;
  }

  .mbcm-grid{
    grid-template-columns:1fr;
  }

  .mbcm-side,
  .mbcm-cta{
    border-radius:18px;
    padding:22px;
  }
}

/* housing & catering */

.hcs-page{
  background:#f5f7fb;
  padding:45px 0 60px;
  font-family:'Poppins',Arial,sans-serif;
  color:#101833;
}

.hcs-container{
  width:min(1180px,92%);
  margin:auto;
}

/* HERO */
.hcs-hero{
  position:relative;
  height:360px;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(24,18,62,.16);
}

.hcs-hero img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hcs-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(40,31,101,.84),rgba(73,62,119,.48),rgba(73,62,119,.12));
}

.hcs-hero-content{
  position:absolute;
  left:42px;
  bottom:42px;
  max-width:650px;
  color:#fff;
}

.hcs-hero-content span{
  display:inline-block;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.35);
  padding:10px 18px;
  border-radius:30px;
  font-size:14px;
  margin-bottom:16px;
  backdrop-filter:blur(8px);
}

.hcs-hero-content h1{
  font-size:42px;
  line-height:1.08;
  font-weight:800;
  margin:0;
}

/* BREADCRUMB */
.hcs-breadcrumb{
  font-size:13px;
  color:#50607c;
  margin:24px 0;
}

.hcs-breadcrumb span{
  color:#6a5acd;
  margin:0 8px;
}

/* LAYOUT */
.hcs-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:36px;
  align-items:start;
}

/* CONTENT */
.hcs-content{
  background:#fff;
  border-radius:22px;
  border:1px solid #e8edf5;
  box-shadow:0 12px 35px rgba(17,31,64,.06);
  padding:34px;
}

.hcs-tag{
  display:inline-block;
  background:linear-gradient(135deg,#493e77,#6a5acd);
  color:#fff;
  padding:9px 18px;
  border-radius:24px;
  font-size:13px;
  margin-bottom:18px;
}

.hcs-content h2{
  font-size:30px;
  font-weight:700;
  margin-bottom:15px;
  color:#111936;
}

.hcs-content p{
  font-size:15px;
  line-height:1.9;
  color:#47526b;
}

.hcs-focus{
  background:linear-gradient(135deg,#f1f5ff,#eefaff);
  border-left:4px solid #6a5acd;
  padding:22px;
  border-radius:16px;
  margin:28px 0;
  color:#34415d;
  line-height:1.8;
}

.hcs-content h3{
  position:relative;
  font-size:21px;
  color:#1c2670;
  font-weight:700;
  margin:35px 0 18px;
  padding-left:14px;
}

.hcs-content h3:before{
  content:"";
  position:absolute;
  left:0;
  top:3px;
  width:4px;
  height:24px;
  background:#246bff;
  border-radius:10px;
}

/* BOX */
.hcs-box{
  background:#fbfcff;
  border:1px solid #e7ecf4;
  border-radius:18px;
  padding:22px 24px;
  margin-bottom:18px;
  transition:.3s ease;
}

.hcs-box:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 35px rgba(31,44,90,.08);
  border-color:#d9ddff;
}

.hcs-box h4{
  font-size:16px;
  font-weight:700;
  color:#17203a;
  margin-bottom:12px;
}

.hcs-box ul{
  margin:0;
  padding-left:18px;
}

.hcs-box li{
  font-size:14px;
  line-height:1.85;
  color:#44506a;
  margin-bottom:6px;
}

/* GRID */
.hcs-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.hcs-card{
  background:#fff;
  border:1px solid #e6ebf3;
  border-radius:18px;
  padding:24px;
  box-shadow:0 12px 30px rgba(15,31,60,.06);
  transition:.3s ease;
}

.hcs-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 42px rgba(35,35,90,.12);
}

.hcs-card span{
  display:inline-flex;
  width:42px;
  height:42px;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#493e77,#6a5acd);
  color:#fff;
  border-radius:12px;
  font-weight:700;
  margin-bottom:16px;
}

/* SIDEBAR */
.hcs-sidebar{
  position:sticky;
  top:25px;
}

.hcs-side{
  background:#fff;
  border-radius:22px;
  border:1px solid #e8edf5;
  box-shadow:0 12px 35px rgba(17,31,64,.06);
  padding:26px;
  margin-bottom:24px;
}

.hcs-side h3,
.hcs-cta h3{
  font-size:20px;
  font-weight:700;
  margin-bottom:12px;
}

.hcs-side p{
  font-size:14px;
  color:#59667e;
  line-height:1.8;
}

.hcs-side ul{
  list-style:none;
  padding:0;
  margin:22px 0 0;
}

.hcs-side li{
  display:flex;
  gap:10px;
  padding:13px 0;
  border-bottom:1px solid #edf0f5;
  font-size:14px;
}

.hcs-side li span{
  color:#5d4ed1;
  font-weight:800;
}

.hcs-cta{
  background:linear-gradient(135deg,#493e77,#6a5acd);
  color:#fff;
  border-radius:22px;
  padding:28px;
  box-shadow:0 18px 38px rgba(73,62,119,.28);
}

.hcs-cta a{
  display:inline-block;
  margin-top:12px;
  background:#fff;
  color:#493e77;
  padding:12px 20px;
  border-radius:30px;
  text-decoration:none;
}

/* RESPONSIVE */
@media(max-width:991px){
  .hcs-layout{
    grid-template-columns:1fr;
  }

  .hcs-sidebar{
    position:static;
  }

  .hcs-hero{
    height:310px;
  }

  .hcs-hero-content h1{
    font-size:34px;
  }
}

@media(max-width:576px){
  .hcs-hero{
    height:280px;
  }

  .hcs-hero-content h1{
    font-size:27px;
  }

  .hcs-grid{
    grid-template-columns:1fr;
  }
}

/* drilling  */

.dos-page{
  background:#f5f7fb;
  padding:45px 0 60px;
  font-family:'Poppins',Arial,sans-serif;
  color:#101833;
}

.dos-container{
  width:min(1180px,92%);
  margin:auto;
}

.dos-hero{
  position:relative;
  height:360px;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(24,18,62,.16);
}

.dos-hero img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.dos-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(40,31,101,.84),rgba(73,62,119,.48),rgba(73,62,119,.12));
}

.dos-hero-content{
  position:absolute;
  left:42px;
  bottom:42px;
  max-width:650px;
  color:#fff;
}

.dos-hero-content span{
  display:inline-block;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.35);
  padding:10px 18px;
  border-radius:30px;
  font-size:14px;
  margin-bottom:16px;
  backdrop-filter:blur(8px);
}

.dos-hero-content h1{
  font-size:42px;
  line-height:1.08;
  font-weight:800;
  margin:0;
}

.dos-breadcrumb{
  font-size:13px;
  color:#50607c;
  margin:24px 0;
}

.dos-breadcrumb span{
  color:#6a5acd;
  margin:0 8px;
}

.dos-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:36px;
  align-items:start;
}

.dos-content{
  background:#fff;
  border-radius:22px;
  border:1px solid #e8edf5;
  box-shadow:0 12px 35px rgba(17,31,64,.06);
  padding:34px;
}

.dos-tag{
  display:inline-block;
  background:linear-gradient(135deg,#493e77,#6a5acd);
  color:#fff;
  padding:9px 18px;
  border-radius:24px;
  font-size:13px;
  margin-bottom:18px;
}

.dos-content h2{
  font-size:30px;
  font-weight:700;
  margin-bottom:15px;
  color:#111936;
}

.dos-content p{
  font-size:15px;
  line-height:1.9;
  color:#47526b;
}

.dos-focus{
  background:linear-gradient(135deg,#f1f5ff,#eefaff);
  border-left:4px solid #6a5acd;
  padding:22px;
  border-radius:16px;
  margin:28px 0;
  color:#34415d;
  line-height:1.8;
}

.dos-content h3{
  position:relative;
  font-size:21px;
  color:#1c2670;
  font-weight:700;
  margin:35px 0 18px;
  padding-left:14px;
}

.dos-content h3:before{
  content:"";
  position:absolute;
  left:0;
  top:3px;
  width:4px;
  height:24px;
  background:#246bff;
  border-radius:10px;
}

.dos-box{
  background:#fbfcff;
  border:1px solid #e7ecf4;
  border-radius:18px;
  padding:22px 24px;
  margin-bottom:18px;
  transition:.3s ease;
}

.dos-box:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 35px rgba(31,44,90,.08);
  border-color:#d9ddff;
}

.dos-box h4{
  font-size:16px;
  font-weight:700;
  color:#17203a;
  margin-bottom:12px;
}

.dos-box ul{
  margin:0;
  padding-left:18px;
}

.dos-box li{
  font-size:14px;
  line-height:1.85;
  color:#44506a;
  margin-bottom:6px;
}

.dos-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.dos-card{
  background:#fff;
  border:1px solid #e6ebf3;
  border-radius:18px;
  padding:24px;
  box-shadow:0 12px 30px rgba(15,31,60,.06);
  transition:.3s ease;
}

.dos-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 42px rgba(35,35,90,.12);
}

.dos-card span{
  display:inline-flex;
  width:42px;
  height:42px;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#493e77,#6a5acd);
  color:#fff;
  border-radius:12px;
  font-weight:700;
  margin-bottom:16px;
}

.dos-card h4{
  font-size:16px;
  font-weight:700;
  margin-bottom:10px;
}

.dos-card p{
  font-size:14px;
  line-height:1.7;
  margin:0;
}

.dos-sidebar{
  position:sticky;
  top:25px;
}

.dos-side{
  background:#fff;
  border-radius:22px;
  border:1px solid #e8edf5;
  box-shadow:0 12px 35px rgba(17,31,64,.06);
  padding:26px;
  margin-bottom:24px;
}

.dos-side h3,
.dos-cta h3{
  font-size:20px;
  font-weight:700;
  margin-bottom:12px;
}

.dos-side p{
  font-size:14px;
  color:#59667e;
  line-height:1.8;
}

.dos-side ul{
  list-style:none;
  padding:0;
  margin:22px 0 0;
}

.dos-side li{
  display:flex;
  gap:10px;
  padding:13px 0;
  border-bottom:1px solid #edf0f5;
  font-size:14px;
  color:#26324b;
}

.dos-side li span{
  color:#5d4ed1;
  font-weight:800;
}

.dos-cta{
  background:linear-gradient(135deg,#493e77,#6a5acd);
  color:#fff;
  border-radius:22px;
  padding:28px;
  box-shadow:0 18px 38px rgba(73,62,119,.28);
}

.dos-cta p{
  font-size:14px;
  line-height:1.8;
  color:rgba(255,255,255,.88);
}

.dos-cta a{
  display:inline-block;
  margin-top:12px;
  background:#fff;
  color:#493e77;
  padding:12px 20px;
  border-radius:30px;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
  transition:.3s ease;
}

.dos-cta a:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 25px rgba(0,0,0,.18);
}

@media(max-width:991px){
  .dos-layout{
    grid-template-columns:1fr;
    gap:24px;
  }

  .dos-sidebar{
    position:static;
  }

  .dos-hero{
    height:310px;
  }

  .dos-hero-content h1{
    font-size:34px;
  }

  .dos-content{
    padding:28px;
  }
}

@media(max-width:576px){
  .dos-page{
    padding:25px 0 45px;
  }

  .dos-container{
    width:92%;
  }

  .dos-hero{
    height:280px;
    border-radius:18px;
  }

  .dos-hero-content{
    left:22px;
    right:22px;
    bottom:28px;
  }

  .dos-hero-content span{
    font-size:12px;
    padding:8px 13px;
  }

  .dos-hero-content h1{
    font-size:27px;
    line-height:1.15;
  }

  .dos-content{
    padding:22px;
    border-radius:18px;
  }

  .dos-content h2{
    font-size:24px;
  }

  .dos-content h3{
    font-size:19px;
  }

  .dos-box{
    padding:18px;
  }

  .dos-grid{
    grid-template-columns:1fr;
  }

  .dos-side,
  .dos-cta{
    border-radius:18px;
    padding:22px;
  }
}

/* about us  */

.about-saudi-page{
  font-family:'Poppins',Arial,sans-serif;
  background:#f7f8fc;
  color:#1f2937;
  overflow:hidden;
}
.about-saudi-hero{
  min-height:460px;
  display:flex;
  align-items:center;
  background:
    linear-gradient(135deg,rgba(36,18,92,.50),rgba(106,90,205,.82)),
    url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1600&q=80");
  background-size:cover;
  background-position:center;
  color:#fff;
  padding:80px 20px;
}
.about-saudi-wrap{
  max-width:1180px;
  margin:auto;
  width:100%;
}
.about-saudi-hero-box{
  max-width:720px;
}
.about-saudi-tag{
  display:inline-block;
  padding:9px 18px;
  border-radius:40px;
  background:rgba(255,255,255,.16);
  backdrop-filter:blur(8px);
  font-size:14px;
  font-weight:600;
  margin-bottom:18px;
}
.about-saudi-hero h1{
  font-size:48px;
  line-height:1.15;
  font-weight:800;
  margin:0 0 18px;
}
.about-saudi-hero h1 span{
  color:#dcd7ff;
}
.about-saudi-hero p{
  font-size:17px;
  line-height:1.8;
  max-width:680px;
  opacity:.95;
}
.about-saudi-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:25px;
  padding:13px 28px;
  border-radius:40px;
  background:#fff;
  color:#24125c;
  text-decoration:none;
  font-weight:700;
  box-shadow:0 14px 35px rgba(0,0,0,.18);
  transition:.3s;
}
.about-saudi-btn:hover{
  transform:translateY(-3px);
  color:#24125c;
}

.about-saudi-content{
  padding:75px 20px;
}
.about-saudi-main{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:35px;
  align-items:center;
}
.about-saudi-card{
  background:#fff;
  padding:38px;
  border-radius:28px;
  box-shadow:0 18px 50px rgba(31,41,55,.08);
  border:1px solid rgba(106,90,205,.12);
}
.about-saudi-card h2{
  font-size:34px;
  color:#24125c;
  font-weight:800;
  margin-bottom:18px;
}
.about-saudi-card p{
  color:#4b5563;
  line-height:1.85;
  font-size:15.8px;
  margin-bottom:15px;
}
.about-saudi-image{
  position:relative;
}
.about-saudi-image img{
  width:100%;
  height:440px;
  object-fit:cover;
  border-radius:30px;
  box-shadow:0 22px 55px rgba(36,18,92,.22);
}
.about-saudi-floating{
  position:absolute;
  left:-25px;
  bottom:30px;
  background:#fff;
  padding:20px 24px;
  border-radius:22px;
  box-shadow:0 16px 40px rgba(0,0,0,.16);
}
.about-saudi-floating h3{
  margin:0;
  color:#24125c;
  font-size:28px;
  font-weight:800;
}
.about-saudi-floating p{
  margin:3px 0 0;
  color:#6b7280;
  font-size:14px;
}
.about-saudi-features{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:45px;
}
.about-saudi-feature{
  background:#fff;
  padding:28px;
  border-radius:24px;
  box-shadow:0 14px 40px rgba(31,41,55,.07);
  transition:.3s;
}
.about-saudi-feature:hover{
  transform:translateY(-8px);
  box-shadow:0 22px 55px rgba(76,48,155,.16);
}
.about-saudi-icon{
  width:55px;
  height:55px;
  border-radius:17px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#6a5acd,#24125c);
  color:#fff;
  font-size:22px;
  margin-bottom:18px;
}
.about-saudi-feature h3{
  color:#24125c;
  font-size:21px;
  font-weight:800;
  margin-bottom:10px;
}
.about-saudi-feature p{
  color:#5b6472;
  line-height:1.7;
  font-size:15px;
}
@media(max-width:991px){
  .about-saudi-main{
    grid-template-columns:1fr;
  }
  .about-saudi-features{
    grid-template-columns:1fr 1fr;
  }
  .about-saudi-hero h1{
    font-size:38px;
  }
}
@media(max-width:576px){
  .about-saudi-hero{
    min-height:auto;
    padding:65px 16px;
  }
  .about-saudi-hero h1{
    font-size:30px;
  }
  .about-saudi-card{
    padding:25px;
  }
  .about-saudi-card h2{
    font-size:27px;
  }
  .about-saudi-image img{
    height:300px;
  }
  .about-saudi-floating{
    position:relative;
    left:0;
    bottom:0;
    margin-top:-45px;
    width:90%;
  }
  .about-saudi-features{
    grid-template-columns:1fr;
  }
}

/* privacy policy  */

.privacy-saudi-page{
  font-family:'Poppins',Arial,sans-serif;
  background:#f5f7fc;
  color:#1f2937;
}

/* HERO */
.privacy-saudi-hero{
  padding:85px 20px;
  background:
    linear-gradient(135deg,rgba(36,18,92,.50),rgba(106,90,205,.85)),
    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1600&q=80");
  background-size:cover;
  background-position:center;
  color:#fff;
  text-align:center;
}
.privacy-saudi-hero span{
  display:inline-block;
  background:rgba(255,255,255,.15);
  padding:8px 18px;
  border-radius:30px;
  margin-bottom:15px;
  font-size:14px;
}
.privacy-saudi-hero h1{
  font-size:42px;
  font-weight:800;
  margin-bottom:12px;
}
.privacy-saudi-hero p{
  max-width:700px;
  margin:auto;
  font-size:16.5px;
  opacity:.95;
}

/* CONTENT */
.privacy-saudi-content{
  max-width:1100px;
  margin:auto;
  padding:70px 20px;
}

/* MAIN CARD */
.privacy-saudi-box{
  background:#fff;
  border-radius:26px;
  padding:40px;
  box-shadow:0 18px 50px rgba(0,0,0,.08);
  border:1px solid rgba(106,90,205,.12);
}

/* HEADINGS */
.privacy-saudi-box h2{
  color:#24125c;
  font-weight:800;
  margin-bottom:15px;
}
.privacy-saudi-box h3{
  color:#493e77;
  margin-top:22px;
  font-size:21px;
}

/* TEXT */
.privacy-saudi-box p{
  color:#4b5563;
  line-height:1.8;
  font-size:15.5px;
}
.privacy-saudi-box ul{
  padding-left:18px;
}
.privacy-saudi-box li{
  margin-bottom:8px;
  color:#4b5563;
  font-size:15px;
}

/* HIGHLIGHT STRIP */
.privacy-saudi-highlight{
  margin-top:25px;
  padding:18px 22px;
  border-radius:18px;
  background:linear-gradient(135deg,#6a5acd,#24125c);
  color:#fff;
  font-size:15px;
  box-shadow:0 12px 30px rgba(76,48,155,.25);
}

/* RESPONSIVE */
@media(max-width:768px){
  .privacy-saudi-hero h1{
    font-size:32px;
  }
  .privacy-saudi-box{
    padding:25px;
  }
}


/* contact us  */

.contact-saudi-page{
  font-family:'Poppins',Arial,sans-serif;
  background:#f5f7fc;
  color:#1f2937;
}

/* HERO */
.contact-saudi-hero{
  padding:90px 20px;
  background:
    linear-gradient(135deg,rgba(36,18,92,.50),rgba(106,90,205,.84)),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1600&q=80");
  background-size:cover;
  background-position:center;
  color:#fff;
  text-align:center;
}
.contact-saudi-hero span{
  display:inline-block;
  padding:8px 18px;
  border-radius:30px;
  background:rgba(255,255,255,.15);
  margin-bottom:15px;
  font-size:14px;
}
.contact-saudi-hero h1{
  font-size:42px;
  font-weight:800;
  margin-bottom:12px;
}
.contact-saudi-hero p{
  max-width:720px;
  margin:auto;
  font-size:16.5px;
  line-height:1.8;
  opacity:.95;
}

/* CONTENT */
.contact-saudi-content{
  max-width:1180px;
  margin:auto;
  padding:70px 20px;
}
.contact-saudi-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:28px;
  align-items:stretch;
}

/* INFO CARD */
.contact-saudi-info{
  background:linear-gradient(160deg,#24125c,#493e77,#6a5acd);
  color:#fff;
  border-radius:28px;
  padding:38px;
  box-shadow:0 20px 55px rgba(36,18,92,.25);
}
.contact-saudi-info h2{
  font-size:30px;
  font-weight:800;
  margin-bottom:14px;
}
.contact-saudi-info > p{
  line-height:1.8;
  opacity:.92;
  margin-bottom:26px;
}
.contact-saudi-item{
  display:flex;
  gap:15px;
  margin-bottom:22px;
  align-items:flex-start;
}
.contact-saudi-icon{
  min-width:48px;
  height:48px;
  border-radius:16px;
  background:rgba(255,255,255,.16);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
}
.contact-saudi-item h4{
  font-size:17px;
  margin:0 0 5px;
  font-weight:700;
}
.contact-saudi-item p{
  margin:0;
  line-height:1.6;
  opacity:.9;
}

/* FORM */
.contact-saudi-formbox{
  background:#fff;
  border-radius:28px;
  padding:38px;
  box-shadow:0 18px 50px rgba(0,0,0,.08);
  border:1px solid rgba(106,90,205,.12);
}
.contact-saudi-formbox h2{
  color:#24125c;
  font-size:30px;
  font-weight:800;
  margin-bottom:10px;
}
.contact-saudi-formbox p{
  color:#5b6472;
  line-height:1.7;
  margin-bottom:24px;
}
.contact-saudi-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
}
.contact-saudi-form input,
.contact-saudi-form select,
.contact-saudi-form textarea{
  width:100%;
  border:1px solid #dde1ea;
  background:#f9fafc;
  padding:14px 16px;
  border-radius:15px;
  outline:none;
  margin-bottom:15px;
  font-size:15px;
  transition:.3s;
}
.contact-saudi-form textarea{
  resize:none;
}
.contact-saudi-form input:focus,
.contact-saudi-form select:focus,
.contact-saudi-form textarea:focus{
  border-color:#6a5acd;
  background:#fff;
  box-shadow:0 0 0 4px rgba(106,90,205,.12);
}
.contact-saudi-btn{
  border:none;
  padding:14px 28px;
  border-radius:40px;
  color:#fff;
  font-weight:700;
  background:linear-gradient(135deg,#4c309b,#24125c);
  box-shadow:0 14px 30px rgba(76,48,155,.25);
  cursor:pointer;
  transition:.3s;
}
.contact-saudi-btn:hover{
  transform:translateY(-3px);
  background:linear-gradient(135deg,#6a5acd,#4c309b);
}

/* MAP BOX */
.contact-saudi-map{
  margin-top:28px;
  border-radius:26px;
  overflow:hidden;
  height:280px;
  background:#e5e7eb;
  box-shadow:0 15px 45px rgba(31,41,55,.08);
}
.contact-saudi-map iframe{
  width:100%;
  height:100%;
  border:0;
}

/* RESPONSIVE */
@media(max-width:991px){
  .contact-saudi-grid{
    grid-template-columns:1fr;
  }
}
@media(max-width:576px){
  .contact-saudi-hero{
    padding:70px 16px;
  }
  .contact-saudi-hero h1{
    font-size:31px;
  }
  .contact-saudi-info,
  .contact-saudi-formbox{
    padding:25px;
  }
  .contact-saudi-row{
    grid-template-columns:1fr;
    gap:0;
  }
}

/* terms of use  */
.terms-saudi-page{
  font-family:'Poppins',Arial,sans-serif;
  background:#f6f7fb;
  color:#1f2937;
}

/* HERO */
.terms-saudi-hero{
  padding:90px 20px;
  background:
    linear-gradient(135deg,rgba(36,18,92,.50),rgba(106,90,205,.85)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1600&q=80");
  background-size:cover;
  background-position:center;
  text-align:center;
  color:#fff;
}
.terms-saudi-hero span{
  display:inline-block;
  background:rgba(255,255,255,.15);
  padding:8px 18px;
  border-radius:30px;
  margin-bottom:15px;
  font-size:14px;
}
.terms-saudi-hero h1{
  font-size:42px;
  font-weight:800;
  margin-bottom:12px;
}
.terms-saudi-hero p{
  max-width:700px;
  margin:auto;
  font-size:16.5px;
  opacity:.95;
}

/* CONTENT */
.terms-saudi-content{
  max-width:1150px;
  margin:auto;
  padding:70px 20px;
}

/* MAIN WRAP */
.terms-saudi-box{
  background:#fff;
  border-radius:26px;
  padding:40px;
  box-shadow:0 18px 50px rgba(0,0,0,.08);
  border:1px solid rgba(106,90,205,.12);
}

/* TITLE */
.terms-saudi-box h2{
  color:#24125c;
  font-size:30px;
  font-weight:800;
  margin-bottom:15px;
}

/* GRID SECTION */
.terms-saudi-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
  margin-top:25px;
}

/* CARD */
.terms-saudi-card{
  background:#f9faff;
  border-radius:20px;
  padding:22px;
  border:1px solid rgba(106,90,205,.12);
  transition:.3s;
}
.terms-saudi-card:hover{
  transform:translateY(-5px);
  box-shadow:0 15px 40px rgba(76,48,155,.15);
}
.terms-saudi-card h3{
  color:#493e77;
  font-size:19px;
  margin-bottom:10px;
  font-weight:700;
}
.terms-saudi-card p{
  font-size:15px;
  color:#4b5563;
  line-height:1.7;
}

/* BOTTOM NOTICE */
.terms-saudi-note{
  margin-top:30px;
  padding:18px 22px;
  border-radius:18px;
  background:linear-gradient(135deg,#6a5acd,#24125c);
  color:#fff;
  font-size:15px;
  box-shadow:0 12px 30px rgba(76,48,155,.25);
}

/* RESPONSIVE */
@media(max-width:768px){
  .terms-saudi-grid{
    grid-template-columns:1fr;
  }
  .terms-saudi-hero h1{
    font-size:32px;
  }
  .terms-saudi-box{
    padding:25px;
  }
}

/* faq */
.faq-saudi-page{
  font-family:'Poppins',Arial,sans-serif;
  background:#f6f7fb;
  color:#1f2937;
}

/* HERO */
.faq-saudi-hero{
  padding:90px 20px;
  background:
    linear-gradient(135deg,rgba(36,18,92,.50),rgba(106,90,205,.84)),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1600&q=80");
  background-size:cover;
  background-position:center;
  color:#fff;
  text-align:center;
}
.faq-saudi-hero span{
  display:inline-block;
  padding:8px 18px;
  border-radius:30px;
  background:rgba(255,255,255,.15);
  font-size:14px;
  margin-bottom:15px;
}
.faq-saudi-hero h1{
  font-size:42px;
  font-weight:800;
  margin-bottom:12px;
}
.faq-saudi-hero p{
  max-width:720px;
  margin:auto;
  font-size:16.5px;
  line-height:1.8;
  opacity:.95;
}

/* CONTENT */
.faq-saudi-content{
  max-width:1050px;
  margin:auto;
  padding:70px 20px;
}

/* INTRO BOX */
.faq-saudi-intro{
  background:#fff;
  border-radius:26px;
  padding:35px;
  margin-bottom:28px;
  box-shadow:0 18px 50px rgba(0,0,0,.08);
  border:1px solid rgba(106,90,205,.12);
  text-align:center;
}
.faq-saudi-intro h2{
  color:#24125c;
  font-size:30px;
  font-weight:800;
  margin-bottom:12px;
}
.faq-saudi-intro p{
  color:#5b6472;
  line-height:1.8;
  max-width:760px;
  margin:auto;
}

/* FAQ */
.faq-saudi-list{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.faq-saudi-item{
  background:#fff;
  border-radius:20px;
  box-shadow:0 12px 35px rgba(31,41,55,.07);
  border:1px solid rgba(106,90,205,.12);
  overflow:hidden;
  transition:.3s ease;
}
.faq-saudi-item:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 45px rgba(76,48,155,.14);
}
.faq-saudi-item summary{
  list-style:none;
  cursor:pointer;
  padding:22px 24px;
  color:#24125c;
  font-weight:800;
  font-size:17px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
}
.faq-saudi-item summary::-webkit-details-marker{
  display:none;
}
.faq-saudi-item summary::after{
  content:"+";
  min-width:34px;
  height:34px;
  border-radius:50%;
  background:linear-gradient(135deg,#6a5acd,#24125c);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  font-weight:500;
  transition:.3s;
}
.faq-saudi-item[open] summary::after{
  content:"−";
  transform:rotate(180deg);
}
.faq-saudi-answer{
  padding:0 24px 24px;
  color:#4b5563;
  line-height:1.8;
  font-size:15.5px;
}

/* CTA */
.faq-saudi-help{
  margin-top:32px;
  padding:28px;
  border-radius:24px;
  background:linear-gradient(135deg,#6a5acd,#24125c);
  color:#fff;
  text-align:center;
  box-shadow:0 18px 45px rgba(76,48,155,.25);
}
.faq-saudi-help h3{
  font-size:25px;
  font-weight:800;
  margin-bottom:10px;
}
.faq-saudi-help p{
  opacity:.92;
  margin-bottom:18px;
}
.faq-saudi-help a{
  display:inline-block;
  background:#fff;
  color:#24125c;
  padding:12px 26px;
  border-radius:35px;
  text-decoration:none;
  font-weight:700;
  transition:.3s;
}
.faq-saudi-help a:hover{
  transform:translateY(-3px);
}





/* RESPONSIVE */
@media(max-width:768px){
  .faq-saudi-hero h1{
    font-size:32px;
  }
  .faq-saudi-intro{
    padding:25px;
  }
  .faq-saudi-item summary{
    font-size:15.5px;
    padding:20px;
  }
  .faq-saudi-answer{
    padding:0 20px 22px;
  }
}



/* animation  */


.service-card,
.how-modern-card,
.premium-card,
.review-card,
.service-form-card,
.btn-new,
.call-btn,
.btn-primary,
.btn-outline {
  transition: all 0.35s ease;
}

.service-card:hover,
.how-modern-card:hover,
.premium-card:hover,
.review-card:hover {
  transform: translateY(-10px);
}

.btn-new:hover,
.call-btn:hover,
.btn-primary:hover,
.btn-outline:hover {
  transform: translateY(-3px);
}

.hero-badge,
.hero-gulf h1,
.hero-gulf p,
.hero-buttons {
  will-change: transform, opacity;
}

.img-box img {
  transition: transform 0.6s ease;
}

.service-card:hover .img-box img {
  transform: scale(1.08);
}

.how-icon,
.premium-card .icon {
  transition: all 0.35s ease;
}

.how-modern-card:hover .how-icon,
.premium-card:hover .icon {
  transform: rotate(8deg) scale(1.08);
}


 /* whatsapp code  */

 .whatsapp-float {
     position: fixed;
     width: 60px;
     height: 60px;
     right: 22px;
     bottom: 150px;
     background: #25d366;
     color: #fff;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 37px;
     text-decoration: none;
     z-index: 9999;
     box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
     animation: whatsappPulse 1.6s infinite;
 }

 .whatsapp-float:hover {
     color: #fff;
     transform: scale(1.08);
 }

 @keyframes whatsappPulse {
     0% {
         box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.65);
     }

     70% {
         box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
     }

     100% {
         box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
     }
 }





















