:root {
  --tg-primary-color: #ff6600; /* IPS orange */
}

.logo-navbar {
  height: 42px; /* مثالي للـ navbar */
  width: auto;
  max-height: 45px;
  transition: all 0.3s ease;
}

.hero-area {
  padding: 120px 0;
  background: linear-gradient(135deg, #fff 60%, rgba(255, 106, 0, 0.08));
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  color: #111;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  color: #555;
  margin-bottom: 25px;
}

.hero-features {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.hero-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-weight: 500;
}

.hero-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--theme-orange);
}

.hero-buttons .btn-primary {
  background: var(--theme-orange);
  border: none;
  padding: 14px 32px;
  font-weight: 600;
}

.hero-buttons .btn-primary:hover {
  background: #e65c00;
}

.hero-buttons .btn-outline {
  border: 2px solid var(--theme-orange);
  color: var(--theme-orange);
  padding: 14px 30px;
  margin-left: 15px;
  font-weight: 600;
}

.hero-buttons .btn-outline:hover {
  background: var(--theme-orange);
  color: #fff;
}

.hero-image img {
  max-width: 100%;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ==============================
   HERO BUTTONS – FINAL FIX
================================ */

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* Base button style */
.hero-buttons .btn,
.hero-area .btn {
  padding: 14px 36px !important;
  min-height: 50px;
  line-height: 1.4 !important;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Primary button */
.hero-buttons .btn-primary {
  background-color: #ff6a00 !important;
  border-color: #ff6a00 !important;
  color: #fff !important;
}

.hero-buttons .btn-primary:hover {
  background-color: #e85c00 !important;
  border-color: #e85c00 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.35);
}

/* Secondary button */
.hero-buttons .btn-outline-primary {
  background-color: transparent !important;
  border: 2px solid #ff6a00 !important;
  color: #ff6a00 !important;
}

.hero-buttons .btn-outline-primary:hover {
  background-color: #ff6a00 !important;
  color: #fff !important;
  transform: translateY(-2px);
}

/* ==============================
	MOBILE OPTIMIZATION
================================ */

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    gap: 14px;
  }

  .hero-buttons .btn {
    width: 100%;
    padding: 16px !important;
    font-size: 16px;
    min-height: 54px;
  }
}

/* ==============================
	LANGUAGE BUTTON (NAVBAR)
================================ */

.lang-btn {
  padding: 6px 14px;
  border: 1px solid #ff6a00;
  border-radius: 4px;
  color: #ff6a00 !important;
  font-weight: 600;
  margin-left: 15px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.lang-btn:hover {
  background-color: #ff6a00;
  color: #fff !important;
}

/* ==============================
   OUR STRENGTH SECTION
================================ */

.our-strength {
  background-color: #f9fafc;
}

.section-padding {
  padding: 80px 0;
}

.section-title .subtitle {
  color: #ff6a00;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}

/* Fix Our Strength Title Alignment */
.our-strength .section-tittle,
.our-strength .section-tittle h2,
.our-strength .section-tittle span {
  text-align: center !important;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 10px 0;
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
  color: #666;
}

/* Strength Card */
.strength-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

/* Top accent */
.strength-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background-color: #ff6a00;
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.strength-card:hover::before {
  transform: scaleX(1);
}

.strength-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(255, 106, 0, 0.18);
}

/* Icon */
.strength-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background-color: rgba(255, 106, 0, 0.1);
  color: #ff6a00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: all 0.35s ease;
}

.strength-card:hover .strength-icon {
  background-color: #ff6a00;
  color: #fff;
}

/* Text */
.strength-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.strength-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* ==============================
	MOBILE OPTIMIZATION
================================ */

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 28px;
  }

  .strength-card {
    padding: 30px 22px;
  }
}

.why-text {
  max-width: 820px;
  margin: 40px auto 0;
  text-align: center;
}

.why-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  font-weight: 400;
}

/* ==============================
   TECH SOLUTIONS SECTION
================================ */

.tech-solutions {
  background-color: #f9fafc;
}

.section-tag {
  color: #ff6a00;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}

.section-heading {
  font-size: 36px;
  font-weight: 700;
  margin: 12px 0 20px;
}

.section-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

/* Tech Cards */
.tech-card {
  background: #fff;
  padding: 32px 26px;
  border-radius: 10px;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  position: relative;
}

.tech-card i {
  font-size: 34px;
  color: #ff6a00;
  margin-bottom: 16px;
  display: inline-block;
}

.tech-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.tech-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Hover Effect */
.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(255, 106, 0, 0.18);
}

/* ==============================
	MOBILE OPTIMIZATION
================================ */

@media (max-width: 768px) {
  .section-heading {
    font-size: 28px;
  }

  .tech-card {
    padding: 26px 20px;
  }
}

/* TRUST / STATS */
.trust-section {
  padding: 70px 0;
  background: #fff;
  border-top: 1px solid #f2f2f2;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.trust-item h2 {
  font-size: 42px;
  font-weight: 800;
  color: #ff6a00;
  margin-bottom: 8px;
}

.trust-item p {
  font-size: 15px;
  font-weight: 500;
  color: #555;
}

/* Mobile */
@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .trust-item h2 {
    font-size: 32px;
  }
}
/* HOW WE WORK */
.process-section {
  padding: 90px 0;
  background: #f9fafb;
}

.section-title {
  max-width: 600px;
  margin-bottom: 50px;
}

.section-title span {
  color: #ff6a00;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 800;
  margin: 10px 0;
  text-align: center;
}

.section-title p {
  color: #666;
  font-size: 16px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.process-step {
  background: #fff;
  padding: 35px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-6px);
}

.step-number {
  font-size: 36px;
  font-weight: 800;
  color: rgba(255, 106, 0, 0.15);
  position: absolute;
  top: 20px;
  right: 25px;
}

.process-step h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 15px;
  color: #555;
}

/* Mobile */
@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 28px;
  }
}

/* Reduce testimonial section height */
.testimonial-area {
  padding: 60px 0 !important; /* كان غالبًا 140+ */
  min-height: auto !important;
}

/* Reduce internal spacing */
.testimonial-padding {
  padding-top: 20 !important;
  padding-bottom: 0 !important;
}

/* Limit slide height */
.single-testimonial {
  min-height: auto !important;
}

/* Center testimonial section content */
.testimonial-area {
  text-align: center;
}
.section-tittle2 {
  text-align: center;
}

.section-tittle2 span {
  display: block;
  text-align: center;
}

.section-tittle2 h2 {
  text-align: center;
}
/* Center testimonial founder block */
.testimonial-founder {
  justify-content: center !important;
  text-align: center;
}

/* Center text under image */
.founder-text {
  text-align: center;
  margin-left: 0 !important;
}

.testimonial-area .row {
  justify-content: center;
}

.testimonial-area .col-xl-7,
.testimonial-area .col-lg-7 {
  margin: 0 auto;
}

.founder-img img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 10px;
}

.testimonial-founder {
  flex-direction: column;
}

.single-testimonial {
  padding: 25px 20px;
  transition: all 0.3s ease;
}

.single-testimonial:hover {
  transform: translateY(-6px);
}

/* ================================
   PARTNERS / TESTIMONIAL FIX
================================ */

/* Center everything */
.testimonial-area {
  text-align: center;
}

/* Center each slide content */
.single-testimonial {
  display: flex;
  justify-content: center;
}

.testimonial-caption {
  max-width: 320px;
  margin: auto;
}

/* Control logo size */
.founder-img img {
  max-width: 100px; /* CHANGE SIZE HERE */
  height: auto;
  object-fit: contain;
  margin: 0 auto 15px;
}

/* Partner name */
.founder-text span {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

/* Partner subtitle */
.founder-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

/* Hover effect (lift) */
.single-testimonial {
  transition: transform 0.3s ease;
}
.single-testimonial:hover {
  transform: translateY(-6px);
}

.footer-area {
  padding-top: 30px;
  padding-bottom: 10px;
}

.footer-area .footer-tittle {
  margin-bottom: 10px;
}

.footer-area .footer-tittle ul li {
  margin-bottom: 2px;
}

.footer-area h3,
.footer-area h2 {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .footer-area h3,
  .footer-area h2 {
    font-size: 22px;
  }
}

.footer-bottom {
  padding: 10px 0;
}

.footer-copy-right p {
  margin: 0;
  font-size: 12px;
}
.footer-copy-right .license-text,
.footer-copy-right .license-text a {
  font-size: 9px;
  opacity: 0.4;
}

/* ===== Who We Are Section Enhancement ===== */
.who-we-are {
  position: relative;
  overflow: hidden;
}

/* Image Box */
.about-img-box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.6s ease;
}

.about-img-box img {
  width: 100%;
  transform: scale(1.05);
  transition: transform 0.8s ease;
}

/* Overlay Effect */
.about-img-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10, 37, 64, 0.15),
    rgba(0, 0, 0, 0.05)
  );
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* Hover Animation */
.about-img-box:hover img {
  transform: scale(1.12) translateX(12px);
}

.about-img-box:hover::after {
  opacity: 1;
}

/* Content */
.who-we-are .about-content {
  padding-left: 20px;
}

.who-we-are .sub-title {
  display: inline-block;
  color: var(--tg-primary-color);
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.who-we-are .title {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.who-we-are p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 15px;
}

/* Badge */
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  padding: 10px 18px;
  border-left: 4px solid var(--tg-primary-color);
  background: #f5f7fa;
}

.about-badge span {
  font-size: 14px;
  color: #777;
}

.about-badge strong {
  font-size: 20px;
  color: #0a2540;
}

/* ===== Certifications / Trust Badges ===== */
.about-certifications {
  display: flex;
  gap: 30px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #f7f9fc;
  border-left: 4px solid var(--tg-primary-color);
  transition: all 0.3s ease;
}

.cert-item i {
  font-size: 26px;
  color: var(--tg-primary-color);
}

.cert-item strong {
  display: block;
  font-size: 15px;
  color: #0a2540;
}

.cert-item span {
  font-size: 13px;
  color: #666;
}

/* Hover polish */
.cert-item:hover {
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

/* ===== About IPS Section Enhancement ===== */
.about-ips {
  position: relative;
  overflow: hidden;
}

/* Soft background accent */
.about-ips::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 260px;
  height: 260px;
  background: rgba(255, 102, 0, 0.08);
  border-radius: 50%;
}

.about-ips::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  background: rgba(10, 37, 64, 0.08);
  border-radius: 50%;
}

/* Content */
.about-ips-content {
  position: relative;
  z-index: 2;
}

.about-ips .sub-title {
  display: inline-block;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--tg-primary-color);
}

.about-ips .title {
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 25px;
}

.about-ips .title span {
  color: var(--tg-primary-color);
}

/* Lead paragraph */
.about-ips .lead {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}

/* Normal paragraph */
.about-ips p {
  color: #666;
  line-height: 1.9;
  max-width: 820px;
  margin: 0 auto;
}

/* ===== About IPS Text Alignment Fix ===== */
.about-ips-content {
  max-width: 820px;
  margin: 0 auto;
}

/* Headings */
.about-ips .title {
  text-align: center;
  margin-bottom: 28px;
}

/* Lead paragraph */
.about-ips .lead {
  text-align: center;
  margin: 0 auto 18px;
  max-width: 720px;
}

/* Body paragraph */
.about-ips p {
  text-align: justify;
  text-align-last: center; /* keeps last line centered */
  hyphens: auto; /* prevents large word gaps */
  word-spacing: -0.5px;
  line-height: 1.9;
  max-width: 760px;
  margin: 0 auto;
}

.about-ips p + p {
  margin-top: 12px;
}

/* ===== Goal / Vision / Mission Section ===== */
.gvm-section {
  background: #ffffff;
}

/* Card */
.gvm-card {
  height: 100%;
  padding: 40px 30px;
  text-align: center;
  background: #f8f9fc;
  border-radius: 10px;
  transition: all 0.35s ease;
}

/* Icon */
.gvm-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(255, 102, 0, 0.12);
  color: var(--tg-primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 26px;
}

/* Title */
.gvm-card h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #0a2540;
}

/* Text */
.gvm-card p {
  color: #666;
  line-height: 1.9;
  font-size: 15px;
}

/* Hover Effect */
.gvm-card:hover {
  background: #ffffff;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.gvm-card:hover .gvm-icon {
  background: rgba(255, 102, 0, 0.18);
  color: var(--tg-primary-color);
}

/* ===== Core Values Section ===== */
.core-values {
  background: #ffffff;
}

/* Card */
.value-card {
  height: 100%;
  padding: 35px 25px;
  text-align: center;
  background: #f8f9fc;
  border-radius: 10px;
  transition: all 0.35s ease;
}

/* Icon */
.value-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  background: rgba(255, 102, 0, 0.12);
  color: var(--tg-primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
}

/* Title */
.value-card h4 {
  font-size: 19px;
  margin-bottom: 14px;
  color: #0a2540;
}

/* Text */
.value-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
}

/* Hover */
.value-card:hover {
  background: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.value-card:hover .value-icon {
  background: var(--tg-primary-color);
  color: #ffffff;
}

/* ===== Why IPS ===== */
.why-ips .choose-content .title {
  margin-bottom: 25px;
}

/* List */
.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
}

/* Icons */
.why-list i {
  color: var(--tg-primary-color);
  font-size: 18px;
  margin-top: 4px;
  min-width: 20px;
}

/* Image */
.why-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  animation: float 3s ease-in-out infinite;
}

/* ===== Company Statistics ===== */
.company-stats {
  background: #ffffff;
}

.stat-card {
  height: 100%;
  padding: 40px 25px;
  text-align: center;
  background: #f8f9fc;
  border-radius: 10px;
  transition: all 0.35s ease;
}

.stat-card h3 {
  font-size: 42px;
  font-weight: 700;
  color: var(--tg-primary-color);
  margin-bottom: 10px;
}

.stat-card p {
  font-size: 15px;
  color: #555;
  margin: 0;
}

/* Hover */
.stat-card:hover {
  background: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

/* ===== Industries We Serve ===== */
.industries {
  background: #ffffff;
}

.industry-card {
  height: 100%;
  padding: 35px 25px;
  text-align: center;
  background: #f8f9fc;
  border-radius: 10px;
  transition: all 0.35s ease;
}

.industry-card i {
  font-size: 36px;
  color: var(--tg-primary-color);
  margin-bottom: 18px;
}

.industry-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #0a2540;
}

.industry-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.industry-card:hover {
  background: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

/* ===== Geographic Coverage ===== */
.coverage-map {
  text-align: center;
}

.coverage-map img {
  max-width: 100%;
  transition: transform 1.2s ease;
}

/* Subtle motion */
.coverage:hover .coverage-map img {
  transform: scale(1.04);
}

/* List */
.coverage-list {
  list-style: none;
  padding: 0;
}

.coverage-list li {
  font-size: 16px;
  margin-bottom: 14px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 10px;
}

.coverage-list i {
  color: var(--tg-primary-color);
}

/* ===== Clients Carousel ===== */
.clients-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.carousel-track {
  display: flex;
  width: max-content; /* ← BEST fix, no math needed */
  animation: scrollClients 35s linear infinite;
}

.client-logo {
  width: 220px; /* fixed width */
  height: 90px; /* fixed height */
  background: #f8f9fc;
  border-radius: 8px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 12px;
  box-sizing: border-box;

  transition: all 0.35s ease;
}

.client-logo img {
  max-width: 100%;
  max-height: 42px; /* KEY: same height for all */
  width: auto;
  height: auto;

  object-fit: contain; /* prevents distortion */
  filter: grayscale(100%);
  opacity: 0.7;

  transition: all 0.35s ease;
}

/* Hover */
.client-logo:hover {
  background: #ffffff;
  transform: scale(1.12);
  z-index: 10;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.client-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

/* Animation */
@keyframes scrollClients {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.clients-carousel:hover .carousel-track {
  animation-play-state: paused;
}

/* Mobile */
@media (max-width: 768px) {
  .carousel-track {
    animation-duration: 25s;
  }
}
.client-logo {
  position: relative;
  z-index: 1;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* Name hidden by default */
.client-name {
  font-size: 12px;
  color: #ff6a00;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
  white-space: nowrap;
  line-height: 1.2;
  height: 16px; /* lock text height */
  overflow: hidden;
}

/* Show on hover */
.client-logo:hover .client-name {
  opacity: 1;
  transform: translateY(0);
}

/* =============================
   PREMIUM SERVICES SECTION
============================= */

.services-section {
  position: relative;
}

.services-wrapper {
  transition: all 0.4s ease;
}

/* Base Card */
.service-card {
  position: relative;
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  transform: translateY(0);

  /* Premium shadow */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Background image */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: 0.5s ease;
  z-index: 1;
}

/* Dark overlay */
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  transition: 0.4s ease;
  z-index: 2;
}

/* Content */
.service-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 40px;
  transition: 0.4s ease;
}

.service-icon span {
  font-size: 45px;
  color: #ff5e14;
  display: inline-block;
  margin-bottom: 20px;
  transition: 0.4s;
}

.service-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
}

/* Button */
.service-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 22px;
  background: #ff5e14;
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s;
}

.service-btn:hover {
  background: #e14b00;
}

/* Hover Effects */
.services-wrapper:hover .service-card {
  opacity: 0.35;
  transform: scale(0.95);
}

.service-card:hover {
  opacity: 1 !important;
  transform: translateY(-18px) scale(1.04);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.service-card:hover::before,
.service-card:hover::after {
  opacity: 1;
  animation: borderMove 4s linear infinite;
}

@keyframes borderMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.service-card:hover h4,
.service-card:hover p,
.service-card:hover .service-icon span {
  color: #fff !important;
}

.service-card:hover .service-btn {
  opacity: 1;
  transform: translateY(0);
}

.service-card.mailroom::before {
  background-image: url("../img/gallery/mailroom.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-card.archive::before {
  background-image: url("../img/gallery/archiving-2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-card.warehouse::before {
  background-image: url("../img/gallery/warehouse.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-card.outsourcing::before {
  background-image: url("../img/gallery/outsourse.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-card.Parcel::before {
  background-image: url("../img/gallery/SPEXDE.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-card.Asset::before {
  background-image: url("../img/gallery/asset1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-card.Asset::before {
  background-image: url("../img/gallery/asset1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ================================
   CLEAN WHITE SERVICE HERO
================================ */

.service-hero-white {
  padding: 140px 0 110px;
  background: #ffffff;
  position: relative;
}

.service-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #ff5e14;
  margin-bottom: 20px;
}

.service-hero-white h1 {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 25px;
}

.service-hero-white p {
  font-size: 18px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 35px;
}

/* Buttons */

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary-custom {
  background: #ff5e14;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary-custom:hover {
  background: #e14b00;
  transform: translateY(-3px);
}

.btn-outline-custom {
  border: 2px solid #0f172a;
  color: #0f172a;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-outline-custom:hover {
  background: #0f172a;
  color: #fff;
  transform: translateY(-3px);
}

/* Image */

.service-hero-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* ================================
   SERVICE OVERVIEW SECTION
================================ */

.service-overview {
  padding: 110px 0;
  background: #f8fafc;
}

.overview-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 25px;
}

.overview-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 30px;
}

.overview-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.overview-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #334155;
  font-weight: 500;
}

.overview-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff5e14;
  font-weight: 700;
}

/* Image Styling */

.overview-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* ================================
   SERVICE PROCESS SECTION
================================ */

.service-process {
  padding: 110px 0;
  background: #ffffff;
}

/* Section Header */

.section-header {
  max-width: 750px;
  margin: 0 auto 70px auto;
}

.section-sub {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #ff5e14;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
}

.section-header p {
  font-size: 17px;
  color: #64748b;
  line-height: 1.7;
}

/* Process Card */

.process-card {
  background: #f8fafc;
  padding: 40px 30px;
  border-radius: 18px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
}

.process-number {
  font-size: 40px;
  font-weight: 800;
  color: #ff5e14;
  margin-bottom: 20px;
}

.process-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0f172a;
}

.process-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

/* Hover Effect */

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

/* ================================
   SECURITY & COMPLIANCE
================================ */

.service-security {
  padding: 120px 0;
  background: #f8fafc;
}

/* Left Content */

.security-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
}

.security-intro {
  font-size: 17px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 30px;
}

.security-list {
  list-style: none;
  padding: 0;
}

.security-list li {
  font-size: 15px;
  color: #334155;
  margin-bottom: 14px;
  padding-left: 25px;
  position: relative;
}

.security-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff5e14;
  font-weight: bold;
}

/* Right Side Cards */

.security-box {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.security-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.security-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

.security-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

.security-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* ================================
   INDUSTRIES SECTION
================================ */

.service-industries {
  padding: 120px 0;
  background: #ffffff;
  text-align: center;
}

/* Title */

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 15px;
}

.section-desc {
  font-size: 17px;
  color: #64748b;
  line-height: 1.7;
}

/* Industry Cards */

.industry-card {
  background: #f8fafc;
  padding: 35px 30px;
  border-radius: 16px;
  margin-bottom: 30px;
  transition: all 0.4s ease;
  border: 1px solid #e2e8f0;
  height: 100%;
}

.industry-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.industry-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  border-color: #ff5e14;
}

/* =================================
   ELECTRONIC ARCHIVING HERO
================================= */

.service-hero {
  padding: 120px 0;
  background: #ffffff;
}

.section-sub {
  font-size: 14px;
  font-weight: 600;
  color: #ff5e14;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-title {
  font-size: 46px;
  font-weight: 800;
  color: #0f172a;
  margin: 20px 0;
}

.service-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 30px;
}

.primary-btn {
  display: inline-block;
  padding: 15px 40px;
  background: #ff5e14;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
}

.primary-btn:hover {
  background: #e04e00;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(255, 94, 20, 0.25);
}

.service-hero-img {
  max-width: 100%;
  border-radius: 18px;
  transition: 0.4s ease;
}

.service-hero-img:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

/* =================================
   ELECTRONIC ARCHIVING OVERVIEW
================================= */

.service-overview {
  padding: 120px 0;
  background: #f8fafc;
}

.overview-features {
  padding-left: 40px;
}

.overview-item {
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 14px;
  margin-bottom: 20px;
  border: 1px solid #e2e8f0;
  transition: 0.3s ease;
}

.overview-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.overview-item p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

.overview-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: #ff5e14;
}

/* =================================
   ELECTRONIC ARCHIVING CAPABILITIES
================================= */

.service-capabilities {
  padding: 120px 0;
  background: #ffffff;
}

.capability-card {
  background: #f8fafc;
  padding: 35px 30px;
  border-radius: 16px;
  margin-bottom: 30px;
  border: 1px solid #e2e8f0;
  transition: all 0.35s ease;
  height: 100%;
}

.capability-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 15px;
}

.capability-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Hover effect */
.capability-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
  border-color: #ff5e14;
}

/* =================================
   SECURITY & COMPLIANCE SECTION
================================= */

.service-security {
  padding: 120px 0;
  background: #f8fafc;
}

.security-text {
  font-size: 15px;
  line-height: 1.8;
  color: #6b7280;
  margin: 20px 0 30px;
}

.security-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.security-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
  font-size: 15px;
  color: #111827;
}

.security-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff5e14;
  font-weight: bold;
}

/* Right Box */
.security-box {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
}

.security-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.security-box p {
  font-size: 15px;
  line-height: 1.8;
  color: #6b7280;
}

.security-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.security-stats strong {
  font-size: 28px;
  color: #ff5e14;
  display: block;
}

.security-stats span {
  font-size: 13px;
  color: #6b7280;
}

/* =================================
   WORKFLOW PROCESS SECTION
================================= */

.service-workflow .section-title,
.service-workflow .section-sub {
  text-align: center !important;
  display: block;
}
.service-workflow {
  padding: 130px 0;
  background: #ffffff;
}

.workflow-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  text-align: center;
}

.workflow-line {
  position: absolute;
  top: 40px;
  left: 5%;
  width: 90%;
  height: 2px;
  background: #e5e7eb;
  z-index: 0;
}

.workflow-item {
  position: relative;
  width: 22%;
  z-index: 2;
}

.workflow-circle {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border: 3px solid #ff5e14;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #ff5e14;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.workflow-item h5 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111827;
}

.workflow-item p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 220px;
  margin: 0 auto;
}

/* Hover Effect */
.workflow-item:hover .workflow-circle {
  background: #ff5e14;
  color: #ffffff;
  transform: scale(1.05);
}

.workflow-title-center {
  font-size: 38px;
  font-weight: 800;
  text-align: center;
  color: #111827;
  line-height: 1.3;
  margin-top: 15px;
  margin-bottom: 20px;
  width: 100%;
  display: block;
}

/* =================================
   FLOATING ENTERPRISE CTA CARD
================================= */

.enterprise-cta-wrapper {
  padding: 90px 0 100px; /* bottom space from footer */
  background: #ffffff; /* keep page white */
}

.enterprise-cta-card {
  background: linear-gradient(135deg, #111827, #1f2937);
  padding: 60px 70px;
  border-radius: 25px;
  color: #ffffff;
  transition: all 0.35s ease;
}

/* Smaller & cleaner title */
.enterprise-cta-card .cta-title {
  color: #ffffff;
  text-align: left !important;
  font-size: 32px;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 15px;
  line-height: 1.8;
  color: #d1d5db;
  max-width: 550px;
}

/* Button keep same hover */
.cta-btn {
  display: inline-block;
  padding: 14px 35px;
  background: #ff5e14;
  color: #ffffff;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Keep hover exactly as before */
.cta-btn:hover {
  background: #ffffff;
  color: #ff5e14;
}

/* Card Hover Effect */
.enterprise-cta-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

/* =================================
   WAREHOUSE HERO SECTION
================================= */

.warehouse-hero {
  padding: 120px 0 90px;
  background: #ffffff;
}

.warehouse-title {
  text-align: left !important;
  font-size: 40px;
  margin-top: 15px;
}

.warehouse-hero-text {
  font-size: 17px;
  line-height: 1.9;
  color: #6b7280;
  margin-top: 25px;
  max-width: 750px;
}

/* =================================
   WAREHOUSE HERO (IMAGE VERSION)
================================= */

.warehouse-hero-img {
  background: url("../img/warehouse-hero.jpg") center center / cover no-repeat;
  min-height: 520px;
  position: relative;
}

.warehouse-overlay {
  background: rgba(17, 24, 39, 0.75);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 120px 0;
}

.light-sub {
  color: #ff5e14;
}

.warehouse-hero-title {
  color: #ffffff;
  text-align: left !important;
  font-size: 42px;
  margin-top: 15px;
}

.warehouse-hero-text-light {
  color: #e5e7eb;
  font-size: 17px;
  line-height: 1.9;
  margin-top: 25px;
  max-width: 650px;
}
/* =================================
   WAREHOUSE CAPABILITIES
================================= */

.warehouse-capabilities {
  padding: 20px 0;
  background: #ffffff;
}

.warehouse-card {
  background: #f9fafb;
  padding: 45px 35px;
  border-radius: 20px;
  margin-bottom: 35px;
  border: 1px solid #e5e7eb;
  transition: all 0.35s ease;
  height: 100%;
}

.warehouse-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111827;
}

.warehouse-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #6b7280;
}

/* Hover Effect */
.warehouse-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.07);
  border-color: #ff5e14;
}

/* =================================
   WAREHOUSE INFRASTRUCTURE
================================= */

.warehouse-infrastructure {
  padding: 80px 0;
  background: #f3f4f6;
}

/* Left Side */

.infra-item {
  margin-bottom: 40px;
}

.infra-item h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111827;
}

.infra-item p {
  font-size: 15px;
  line-height: 1.9;
  color: #6b7280;
}

/* Right Side Boxes */

.infra-visual {
  padding-left: 40px;
}

.infra-box {
  background: #ffffff;
  padding: 30px 28px;
  border-radius: 18px;
  margin-bottom: 25px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.infra-box h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}

.infra-box p {
  font-size: 14px;
  line-height: 1.8;
  color: #6b7280;
}

.infra-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.07);
  border-color: #ff5e14;
}

.workflow-title-left {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
  color: #111827;
  margin-top: 10px;
  text-align: left;
}

/* =================================
   WAREHOUSE PROCESS FLOW
================================= */

.warehouse-process {
  padding: 120px 0;
  background: #ffffff;
}

/* Make wrapper centered and allow wider cards */
.process-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Wider Cards */
.process-step {
  flex: 0 0 22%; /* slightly wider than before */
  min-width: 240px;
  background: #f9fafb;
  padding: 45px 35px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  transition: all 0.35s ease;
  text-align: center; /* center everything inside */
}

/* Centered Number */
.process-number {
  font-size: 36px;
  font-weight: 800;
  color: #ff5e14;
  margin-bottom: 20px;
  display: block;
}

/* Centered Title */
.process-step h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111827;
}

/* Centered Paragraph */
.process-step p {
  font-size: 14px;
  line-height: 1.9;
  color: #6b7280;
}

/* Hover */
.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.07);
  border-color: #ff5e14;
}

/* =================================
   SECURITY LIGHT VERSION
================================= */

.warehouse-security-light {
  padding: 120px 0;
  background: #f9fafb;
}

/* Text */
.security-text-light {
  font-size: 16px;
  line-height: 1.9;
  margin: 20px 0 35px;
  color: #6b7280;
  max-width: 560px;
}

/* List */
.security-list-light {
  list-style: none;
  padding: 0;
}

.security-list-light li {
  margin-bottom: 14px;
  font-size: 15px;
  color: #374151;
  position: relative;
  padding-left: 26px;
}

.security-list-light li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #ff5e14;
  position: absolute;
  left: 0;
  top: 9px;
  border-radius: 50%;
}

/* Right Card */
.security-card-light {
  background: #ffffff;
  padding: 55px 50px;
  border-radius: 28px;
  border: 1px solid #e5e7eb;
  transition: all 0.35s ease;
}

.security-card-light h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #111827;
}

.security-card-light p {
  font-size: 15px;
  line-height: 1.9;
  color: #6b7280;
}

.security-card-light:hover {
  transform: translateY(-8px);
  border-color: #ff5e14;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.07);
}

/* =================================
   INDUSTRIES GRID PREMIUM STYLE
================================= */

.industries-section {
  padding: 6px 0;
  background: #ffffff;
}

.industry-item {
  position: relative;
  padding: 55px 30px 40px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  text-align: center;
  background: #f9fafb;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

/* SINGLE clean centered accent bar */
.industry-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0px;
  height: 2px;
  background: #ff5e14;
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* Icon */
.industry-icon {
  font-size: 28px;
  color: #ff5e14;
  margin-bottom: 18px;
  transition: 0.3s ease;
}

/* Hover effect */
.industry-item:hover::before {
  width: 340px;
}

.industry-item:hover .industry-icon {
  transform: translateY(-1px);
}

.industry-item h6 {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

/* Hover */
.industry-item:hover {
  background: #ffffff;
  transform: translateY(-6px);
  border-color: #ff5e14;
}

/* =================================
   SERVICE OVERVIEW SECTION
================================= */

.service-overview {
  padding: 20px 0;
  background: #ffffff;
}

.overview-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #4b5563;
  margin-bottom: 20px;
}

.overview-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.overview-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #111827;
}

.overview-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff5e14;
  font-weight: bold;
}

.overview-image img {
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

/* =================================
   CAPABILITIES SECTION
================================= */

.capabilities-section {
  padding: 110px 0;
  background: #f9fafb;
}

.capability-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  text-align: center;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.capability-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
  border-color: #ff5e14;
}

.capability-icon {
  font-size: 28px;
  color: #ff5e14;
  margin-bottom: 20px;
}

.capability-card h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #111827;
}

.capability-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
}

/* =================================
   WORKFLOW SECTION
================================= */

.workflow-section {
  padding: 110px 0;
  background: #ffffff;
}

.workflow-card {
  background: #f9fafb;
  padding: 45px 30px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  text-align: center;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.workflow-card:hover {
  transform: translateY(-6px);
  border-color: #ff5e14;
  background: #ffffff;
}

.workflow-number {
  font-size: 32px;
  font-weight: 700;
  color: #ff5e14;
  margin-bottom: 15px;
}

.workflow-card h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111827;
}

.workflow-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
}

/* =================================
   TECHNOLOGY SECTION
================================= */

.technology-section {
  padding: 50px 0;
  background: #f9fafb;
}

.technology-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #4b5563;
  margin-bottom: 25px;
}

.technology-list {
  list-style: none;
  padding: 0;
}

.technology-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #111827;
}

.technology-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ff5e14;
  font-weight: bold;
}

.technology-image img {
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

/* =================================
   SERVICE HERO (LIGHT IMAGE VERSION)
================================= */

.service-hero {
  position: relative;
  padding: 150px 0 130px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f8fafc;
  color: #111827;
}

.service-hero::before {
  display: none; /* remove dark overlay */
}

.service-hero-title {
  font-size: 42px;
  font-weight: 800;
  margin: 20px 0;
  line-height: 1.2;
  color: #111827;
}

.service-hero-text {
  font-size: 18px;
  line-height: 1.9;
  max-width: 680px;
  color: #4b5563;
}

/* =================================
   CAPABILITIES SECTION
================================= */

.capabilities-section {
  padding: 120px 0;
  background: #f9fafb;
}

.capability-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 45px 30px;
  text-align: center;
  transition: all 0.35s ease;
  margin-bottom: 30px;
}

.capability-icon {
  font-size: 30px;
  color: #ff5e14;
  margin-bottom: 20px;
}

.capability-card h6 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #111827;
}

.capability-card p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.8;
}

.capability-card:hover {
  transform: translateY(-8px);
  border-color: #ff5e14;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.workflow-section {
  padding: 120px 0;
  background: #ffffff;
}

.workflow-card {
  background: #f9fafb;
  padding: 45px 30px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  text-align: center;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.workflow-card:hover {
  transform: translateY(-6px);
  border-color: #ff5e14;
  background: #ffffff;
}

.workflow-number {
  font-size: 32px;
  font-weight: 700;
  color: #ff5e14;
  margin-bottom: 15px;
}
/* =================================
   MAP BUTTON STYLE
================================= */

.map-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #ff5e14;
  color: #1d1919;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.map-btn:hover {
  background: #e6530f;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 94, 20, 0.3);
  color: #ffffff;
}
