
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Rajdhani:wght@400;500;600;700&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;1,8..60,300&display=swap');

/* ── VARIABLES ── */
:root {
  --blue:        #0B3D91;
  --blue-dark:   #072a66;
  --blue-light:  #1a5cbf;
  --orange:      #F97316;
  --orange-dark: #d9600e;
  --white:       #F9FAFB;
  --text:        #1F2937;
  --muted:       #6B7280;
  --border:      rgba(11, 61, 145, 0.12);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Rajdhani', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ================================================================
   NAVBAR
   ================================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: 72px;
  background: rgba(7, 42, 102, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(249, 115, 22, 0.25);
  transition: all 0.3s ease;
}

nav.scrolled {
  height: 60px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.nav-logo:hover img { transform: scale(1.06); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.25s;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active { color: #fff; }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 3px;
  transition: all 0.25s ease !important;
}

.nav-cta:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-2px) !important;
}

.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: #fff;
  transition: all 0.3s;
}

nav.open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--blue-dark);
  padding: 2rem;
  gap: 1rem;
  border-top: 1px solid rgba(249, 115, 22, 0.3);
  z-index: 999;
}

/* ================================================================
   PAGE BANNER (oil rig header — all inner pages)
   ================================================================ */
.page-banner {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 72px;
}

.page-banner-bg {
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center;
  filter: blur(3px) brightness(0.35);
  transform: scale(1.05);
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7, 42, 102, 0.88) 0%,
    rgba(11, 61, 145, 0.65) 50%,
    rgba(249, 115, 22, 0.12) 100%
  );
}

.page-banner-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 4rem;
  width: 100%;
}

.page-banner-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.8rem;
}

.page-banner-label::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--orange);
}

.page-banner h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.page-banner h1 span { color: var(--orange); }

.page-banner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-top: 1rem;
  max-width: 580px;
  line-height: 1.65;
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-weight: 300;
}

/* ================================================================
   BREADCRUMB
   ================================================================ */
.breadcrumb {
  background: #f0f4fa;
  padding: 0.85rem 4rem;
  border-bottom: 1px solid var(--border);
}

.breadcrumb-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: rgba(11, 61, 145, 0.3); }

/* ================================================================
   COMMON LAYOUT
   ================================================================ */
section { padding: 5rem 4rem; }

.container {
  max-width: 1300px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.8rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--orange);
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--blue-dark);
  line-height: 1;
  letter-spacing: -0.01em;
}

.section-title .accent { color: var(--orange); }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 3px;
  transition: all 0.28s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.4);
}

.btn-outline-blue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--blue);
  color: var(--blue);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 28px;
  border-radius: 3px;
  transition: all 0.28s ease;
}

.btn-outline-blue:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-3px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 28px;
  border-radius: 3px;
  transition: all 0.28s ease;
}

.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--orange);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 3px;
  transition: all 0.28s ease;
  margin-top: 1rem;
}

.btn-white:hover {
  background: var(--blue-dark);
  color: #fff;
  transform: translateY(-3px);
}

/* ================================================================
   DETAIL PAGES — shared layout (services / ipm / policies)
   ================================================================ */
.detail-wrap { background: var(--white); padding-bottom: 1rem; }

.detail-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.detail-main h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--blue-dark);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.detail-main p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.detail-main h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin: 1.6rem 0 0.7rem;
  letter-spacing: 0.04em;
}

.detail-main ul {
  list-style: none;
  margin: 0.4rem 0 1.4rem;
}

.detail-main ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

.detail-main ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.82rem;
}

.detail-main strong { color: var(--text); }

/* highlight box */
.detail-box {
  background: linear-gradient(135deg, #f0f6ff, #e8f0fe);
  border: 1px solid rgba(11, 61, 145, 0.12);
  border-left: 4px solid var(--orange);
  padding: 1.5rem;
  border-radius: 4px;
  margin-top: 1.5rem;
}

.detail-box h4 {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: var(--blue-dark);
}

.detail-box h4 i { color: var(--orange); }

.detail-box p {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0.4rem 0 0;
}

/* sidebar image placeholder */
.detail-img {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(11, 61, 145, 0.1);
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #e0eaf8, #c8d8f0);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(11, 61, 145, 0.25);
  transition: box-shadow 0.3s;
}

.detail-img img {
  width: 100%;
  display: block;
  border-radius: 6px;
}

.detail-img .ph-icon  { font-size: 3.5rem; }
.detail-img .ph-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* sidebar navigation */
.sidebar-nav {
  background: #f8faff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
}

.sidebar-nav h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue-dark);
  letter-spacing: 0.07em;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--orange);
}

.sidebar-nav ul { list-style: none; }

.sidebar-nav ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.87rem;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
  line-height: 1.4;
}

.sidebar-nav ul li:last-child a { border-bottom: none; }
.sidebar-nav ul li a:hover { color: var(--orange); padding-left: 5px; }
.sidebar-nav ul li a.current { color: var(--orange); font-weight: 700; }
.sidebar-nav ul li a i { font-size: 0.7rem; color: var(--orange); opacity: 0.5; flex-shrink: 0; }

/* signed block (policies) */
.pol-signed {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2.5rem;
  padding: 1.2rem 1.5rem;
  background: #f8faff;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--muted);
}

.pol-signed i { color: var(--blue); font-size: 1.2rem; flex-shrink: 0; }

/* prev/next navigation */
.nav-btns {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: #03111f;
  color: rgba(255, 255, 255, 0.6);
  padding: 3.5rem 4rem 2rem;
}

.footer-inner { max-width: 1300px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
  height: 40px;
  margin-bottom: 1rem;
  filter: brightness(1.2);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.55rem; }

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.87rem;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-col ul li a:hover { color: var(--orange); padding-left: 5px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a { color: var(--orange); text-decoration: none; }

.social-links {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-links a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-3px);
}

/* ================================================================
   ANIMATIONS & SCROLL REVEAL
   ================================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes gridPan {
  0%   { transform: translateY(0); }
  100% { transform: translateY(60px); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ================================================================
   SERVICES LISTING PAGE  (services.html)
   ================================================================ */
.svc-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.svc-listing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.35s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(11, 61, 145, 0.05);
}

.svc-listing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(11, 61, 145, 0.14);
  border-color: rgba(249, 115, 22, 0.3);
}

.svc-listing-img {
  height: 180px;
  background: linear-gradient(135deg, #e8eef8, #c8d8f0);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}

.svc-listing-card:hover .svc-listing-img {
  background: linear-gradient(135deg, #dde8f8, #b8ccec);
}

.svc-listing-img .img-icon {
  font-size: 3rem;
  color: rgba(11, 61, 145, 0.18);
  transition: transform 0.4s;
}

.svc-listing-card:hover .img-icon { transform: scale(1.12); }

.svc-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 2px;
}

.svc-listing-body {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.svc-listing-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue-dark);
  letter-spacing: 0.03em;
  margin-bottom: 0.6rem;
}

.svc-listing-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.svc-listing-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 1.2rem;
  transition: gap 0.25s;
}

.svc-listing-card:hover .svc-listing-link { gap: 10px; }

/* ================================================================
   POLICIES LISTING PAGE  (policies.html)
   ================================================================ */
.pol-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.pol-listing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.2rem;
  transition: all 0.35s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(11, 61, 145, 0.04);
  position: relative;
  overflow: hidden;
}

.pol-listing-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.pol-listing-card:hover::before { transform: scaleX(1); }

.pol-listing-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 64px rgba(11, 61, 145, 0.13);
  border-color: rgba(249, 115, 22, 0.2);
}

.pol-listing-icon {
  width: 52px; height: 52px;
  background: rgba(11, 61, 145, 0.07);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--blue);
  margin-bottom: 1.3rem;
  transition: all 0.35s ease;
}

.pol-listing-card:hover .pol-listing-icon {
  background: var(--orange);
  color: #fff;
  transform: rotate(-5deg);
}

.pol-listing-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue-dark);
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}

.pol-listing-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.pol-listing-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 1.2rem;
  transition: gap 0.25s;
}

.pol-listing-card:hover .pol-listing-link { gap: 10px; }

/* ================================================================
   IPM MAIN PAGE  (ipm.html)
   ================================================================ */
.ipm-intro-box {
  background: linear-gradient(135deg, #f0f6ff, #e4effe);
  border-left: 5px solid var(--orange);
  padding: 2.5rem;
  border-radius: 4px;
  margin-top: 3rem;
}

.ipm-intro-box h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 0.8rem;
}

.ipm-intro-box p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.ipm-deliver-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.ipm-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(11, 61, 145, 0.04);
}

.ipm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(11, 61, 145, 0.14);
  border-color: rgba(249, 115, 22, 0.3);
}

.ipm-card-top {
  padding: 2rem 2rem 1.5rem;
  flex: 1;
}

.ipm-card-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(11, 61, 145, 0.07);
  line-height: 1;
  transition: color 0.3s;
}

.ipm-card:hover .ipm-card-num { color: rgba(249, 115, 22, 0.12); }

.ipm-card-icon {
  width: 50px; height: 50px;
  background: rgba(11, 61, 145, 0.07);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--blue);
  margin: 0.5rem 0 1.2rem;
  transition: all 0.35s ease;
}

.ipm-card:hover .ipm-card-icon {
  background: var(--orange);
  color: #fff;
  transform: rotate(-5deg);
}

.ipm-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue-dark);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.ipm-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.ipm-card-foot {
  padding: 0.8rem 2rem 1.2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  transition: gap 0.25s;
}

.ipm-card:hover .ipm-card-foot { gap: 10px; }

/* IPM Lifecycle dark section */
.ipm-lifecycle {
  background: linear-gradient(160deg, #041830 0%, #0B3D91 100%);
  position: relative;
  overflow: hidden;
}

.ipm-lifecycle::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
}

.ipm-lifecycle .section-title { color: #fff; }
.ipm-lifecycle .section-label { color: var(--orange); }

.ipm-lifecycle-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem;
}

.ipm-lifecycle-img {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease;
}

.ipm-lifecycle-img:hover { transform: scale(1.02); }
.ipm-lifecycle-img img { width: 100%; display: block; }

.ipm-lifecycle-txt p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.ipm-lifecycle-txt ul { list-style: none; margin-top: 1rem; }

.ipm-lifecycle-txt ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
}

.ipm-lifecycle-txt ul li i { color: var(--orange); flex-shrink: 0; }

/* IPM Competitive Edge */
.ipm-edge-section { background: var(--white); }

.ipm-edge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.ipm-edge-card {
  padding: 2.2rem;
  border-radius: 6px;
  transition: all 0.35s ease;
}

.ipm-edge-card.competitive {
  background: linear-gradient(135deg, #0B3D91, #1a5cbf);
}

.ipm-edge-card.value {
  background: #f8faff;
  border: 1px solid var(--border);
}

.ipm-edge-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(11, 61, 145, 0.15);
}

.ipm-edge-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
}

.competitive h3 { color: #fff; }
.value h3       { color: var(--blue-dark); }

.ipm-edge-card p {
  font-size: 0.93rem;
  margin-bottom: 1rem;
}

.competitive p   { color: rgba(255,255,255,0.75); }
.value p         { color: var(--muted); }

.ipm-edge-card ul { list-style: none; }

.ipm-edge-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0.5rem 0;
  font-size: 0.92rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.value ul li { border-bottom-color: var(--border); color: var(--muted); }
.competitive ul li { color: rgba(255,255,255,0.78); }
.ipm-edge-card ul li i { color: var(--orange); flex-shrink: 0; margin-top: 2px; }

/* ================================================================
   HOME PAGE  (index.html)
   ================================================================ */

/* Hero */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(11,61,145,0.55) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(249,115,22,0.12) 0%, transparent 60%),
    linear-gradient(135deg, #041830 0%, #0B3D91 55%, #072a66 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridPan 20s linear infinite;
}

.hero-rig {
  position: absolute;
  right: 0; bottom: 0;
  width: 55%; height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.2;
  mix-blend-mode: luminosity;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 8rem 4rem 4rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.4);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 1.8rem;
  animation: fadeUp 0.8s ease both;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 900;
  line-height: 0.92;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  max-width: 720px;
  animation: fadeUp 0.8s 0.15s ease both;
}

.hero-title .accent { color: var(--orange); }

.hero-sub {
  font-family: 'Source Serif 4', serif;
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.68);
  max-width: 540px;
  margin-top: 1.6rem;
  line-height: 1.7;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease both;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeUp 0.8s 0.6s ease both;
  flex-wrap: wrap;
}

.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-number span { color: var(--orange); }

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* About / Overview */
.overview { background: var(--white); }

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem;
}

.overview-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1.1rem;
}

.overview-text p strong { color: var(--text); font-weight: 600; }

/* Vision & Mission */
.vm-section { background: var(--white); }

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.vm-card {
  padding: 3rem;
  border-radius: 4px;
  transition: transform 0.35s, box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}

.vm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(11,61,145,0.12);
}

.vm-card.vision { background: linear-gradient(135deg, #0B3D91 0%, #1a5cbf 100%); }
.vm-card.mission { background: var(--white); border: 2px solid var(--border); }

.vm-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.vision .vm-icon { background: rgba(249,115,22,0.2);   color: var(--orange); }
.mission .vm-icon { background: rgba(11,61,145,0.08); color: var(--blue); }

.vm-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.9rem;
}

.vision h3 { color: #fff; }
.mission h3 { color: var(--blue-dark); }
.vm-card p { font-size: 0.97rem; line-height: 1.75; }
.vision p  { color: rgba(255,255,255,0.85); }
.mission p { color: var(--muted); }

.vm-infographic {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, #f0f6ff, #e8f0fe);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
   grid-column: 1 / -1;   /* span across both columns */
  max-width: 900px;      /* control width */
  margin: 3.5rem auto 0;
  box-shadow: 0 8px 40px rgba(11, 61, 145, 0.08);
  transition: box-shadow 0.35s ease;
}
 
.vm-infographic:hover {
  box-shadow: 0 20px 64px rgba(11, 61, 145, 0.14);
}
 
.vm-infographic-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1.1rem 2rem;
  background: var(--blue-dark);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
 
.vm-infographic-label i { color: var(--orange); font-size: 1.1rem; }
 
.vm-infographic-img {
  padding: 2rem;
  display: flex;
  justify-content: center;
  background: #fff;
}
 
.vm-infographic-img img {
  max-width: 500px;
  width: 100%;
  display: block;
  border-radius: 8px;
  transition: transform 0.4s ease;
}
 
.vm-infographic:hover .vm-infographic-img img {
  transform: scale(1.01);
}

/* Services section (homepage) */
.services-section {
  background: linear-gradient(160deg, #041830 0%, #0B3D91 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
}

.services-section .section-title { color: #fff; }
.services-section .section-label { color: var(--orange); }

.svc-intro-txt {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  line-height: 1.7;
  margin-top: 0.8rem;
}

.svc-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.svc-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 2.2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  text-decoration: none;
  display: block;
  color: inherit;
}

.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249,115,22,0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}

.svc-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-6px);
  border-color: rgba(249,115,22,0.45);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  z-index: 2;
}

.svc-card:hover::before { opacity: 1; }

.svc-num {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  transition: color 0.35s;
}

.svc-card:hover .svc-num { color: rgba(249,115,22,0.1); }

.svc-icon {
  width: 50px; height: 50px;
  background: rgba(249,115,22,0.14);
  border: 1px solid rgba(249,115,22,0.28);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.25rem;
  color: var(--orange);
  transition: all 0.35s ease;
}

.svc-card:hover .svc-icon {
  background: var(--orange);
  color: #fff;
  transform: rotate(-5deg) scale(1.08);
}

.svc-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.svc-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 1rem;
  transition: gap 0.25s;
}

.svc-card:hover .svc-link { gap: 10px; }

.img-icon {
  width: 100%;
  height: 180px; /* or any fixed height you want */
  overflow: hidden;
}

.img-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* or contain */
  display: block;
}

.maxvalue-section {
  background: var(--white);
  padding: 5rem 4rem;
  border-top: 1px solid var(--border);
}

/* ================================================================
   MAXIMIZING VALUE SECTION
   ================================================================ */
 
.maxvalue-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
 
.maxvalue-text p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 1rem;
  margin-bottom: 1.8rem;
}
 
.maxvalue-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
 
.maxvalue-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 1rem 1.2rem;
  background: #f8faff;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all 0.3s ease;
}
 
.maxvalue-list li:hover {
  transform: translateX(6px);
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 0 6px 24px rgba(11, 61, 145, 0.08);
}
 
.maxvalue-list-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}
 
.maxvalue-list li:hover .maxvalue-list-icon {
  transform: rotate(-8deg) scale(1.1);
}
 
.maxvalue-list li div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
 
.maxvalue-list li strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue-dark);
  letter-spacing: 0.04em;
}
 
.maxvalue-list li span {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}
 
.maxvalue-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 64px rgba(11, 61, 145, 0.14);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
 
.maxvalue-img:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(11, 61, 145, 0.2);
}
 
.maxvalue-img img {
  width: 100%;
  display: block;
}


/* Policies strip (homepage) */
.policies-strip {
  background: linear-gradient(160deg, #041830 0%, #0B3D91 100%);
  position: relative;
  overflow: hidden;
}

.policies-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
}

.policies-strip .section-title { color: #fff; }
.policies-strip .section-label { color: var(--orange); }

.pol-intro-txt {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  max-width: 500px;
  margin-top: 0.6rem;
  line-height: 1.7;
}

.pol-hd { margin-bottom: 2.8rem; }

.pol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.pol-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  padding: 1.4rem 1.3rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.pol-card:hover {
  background: rgba(249,115,22,0.1);
  border-color: rgba(249,115,22,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.pol-card-icon {
  width: 42px; height: 42px;
  background: rgba(249,115,22,0.15);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--orange);
  flex-shrink: 0;
  transition: all 0.3s;
}

.pol-card:hover .pol-card-icon { background: var(--orange); color: #fff; }

.pol-card-text h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.04em;
}

.pol-card-text p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 3px;
  line-height: 1.5;
}

/* IPM strip (homepage) */
.ipm-strip { background: var(--white); }

.ipm-strip-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem;
}

.ipm-strip-img {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(11,61,145,0.12);
  transition: transform 0.4s ease;
}

.ipm-strip-img:hover { transform: scale(1.02); }
.ipm-strip-img img { width: 100%; display: block; }

.ipm-items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
}

.ipm-mini {
  background: #f8faff;
  border: 1px solid var(--border);
  padding: 1.3rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ipm-mini:hover {
  border-color: var(--orange);
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(11,61,145,0.1);
}

.ipm-mini-icon {
  width: 40px; height: 40px;
  background: rgba(11,61,145,0.08);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: all 0.3s;
}

.ipm-mini:hover .ipm-mini-icon { background: var(--orange); color: #fff; }

.ipm-mini h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue-dark);
  letter-spacing: 0.03em;
}

.ipm-mini p { font-size: 0.8rem; color: var(--muted); margin-top: 2px; line-height: 1.5; }

.ooe-block {
  margin-top: 3.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
 
.ooe-block:hover {
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}
 
.ooe-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1.1rem 2rem;
  background: rgba(249, 115, 22, 0.9);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
 
.ooe-label i { font-size: 1.1rem; }
 
.ooe-img-wrap {
  display: flex;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  padding: 2rem;
}
 
.ooe-img-wrap img {
  max-width: 450px;
  width: 100%;
  display: block;
  border-radius: 8px;
}
 
.clients-section {
  background: #f8faff;
  padding: 5rem 4rem;
  overflow: hidden;
}
 
.clients-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
 
.clients-header .section-label {
  justify-content: center;
}
 
.clients-header .section-label::before {
  display: none;
}
 
.clients-header .section-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
}
 
.clients-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0.8rem auto 0;
  line-height: 1.7;
}
 
/* ── Scrolling track ── */
.clients-track-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* fade edges */
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}
 
.clients-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: clientsScroll 36s linear infinite;
}
 
.clients-track:hover {
  animation-play-state: paused;
}
 
@keyframes clientsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
 
/* ── Individual logo card ── */
.client-logo {
  flex-shrink: 0;
  width: 160px;
  height: 90px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.4rem;
  transition: all 0.35s ease;
  box-shadow: 0 2px 12px rgba(11, 61, 145, 0.04);
  cursor: default;
}
 
.client-logo:hover {
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 8px 32px rgba(11, 61, 145, 0.12);
  transform: translateY(-5px) scale(1.04);
}
 
.client-logo img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
  filter: grayscale(30%) opacity(0.85);
  transition: filter 0.35s ease;
}
 
.client-logo:hover img {
  filter: grayscale(0%) opacity(1);
}
 
/* ── Stats row ── */
.clients-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
 
.client-stat {
  text-align: center;
  padding: 1.8rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
 
.client-stat::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
 
.client-stat:hover::before { transform: scaleX(1); }
 
.client-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(11, 61, 145, 0.1);
  border-color: rgba(249, 115, 22, 0.2);
}
 
.client-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--blue-dark);
  line-height: 1;
}
 
.client-stat-num span { color: var(--orange); }
 
.client-stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.6rem;
}

/* ================================================================
   PROJECT CASE HISTORY SECTION
   ================================================================ */
.case-history-section {
  background: #f0f4fa;
  padding: 5rem 4rem;
}
 
.case-history-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
 
.case-history-text p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 1rem;
}
 
.case-history-highlights {
  display: flex;
  gap: 1.2rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}
 
.case-highlight {
  flex: 1;
  min-width: 100px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.4rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
 
.case-highlight::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
 
.case-highlight:hover::after { transform: scaleX(1); }
 
.case-highlight:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(11, 61, 145, 0.12);
}
 
.case-highlight-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--blue-dark);
  line-height: 1;
}
 
.case-highlight-num span { color: var(--orange); }
 
.case-highlight-txt {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
  line-height: 1.4;
}
 
.case-history-img { position: relative; }
 
.case-history-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(11, 61, 145, 0.14);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
 
.case-history-img-wrap:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(11, 61, 145, 0.2);
}
 
.case-history-img-wrap img {
  width: 100%;
  display: block;
  padding-bottom: 60px;
}
 
.case-history-badge {
  position: absolute;
  bottom: -10px;
  left: -10px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--blue-dark);
  color: #fff;
  padding: 1rem 1.4rem;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(7, 42, 102, 0.4);
  max-width: 280px;
  border: 1px solid rgba(249, 115, 22, 0.3);
  transition: transform 0.3s ease;
}
 
.case-history-badge:hover { transform: scale(1.03); }
 
.case-history-badge > i {
  font-size: 1.6rem;
  color: var(--orange);
  flex-shrink: 0;
}
 
.case-history-badge strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
}
 
.case-history-badge span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  margin-top: 3px;
  display: block;
}

 
/* CTA section (homepage) */
.cta-section {
  background: var(--orange);
  position: relative;
  overflow: hidden;
  padding: 4.5rem 4rem !important;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0,0,0,0.1) 0%, transparent 50%);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  max-width: 520px;
}

.cta-contact { display: flex; flex-direction: column; gap: 0.7rem; }

.cta-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s;
}

.cta-contact a:hover { color: #fff; }
.cta-contact a i { opacity: 0.75; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .footer-top          { grid-template-columns: 1fr 1fr; }
  .svc-grid            { grid-template-columns: repeat(2, 1fr); }
  .pol-grid            { grid-template-columns: repeat(2, 1fr); }
  .svc-listing-grid    { grid-template-columns: repeat(2, 1fr); }
  .pol-listing-grid    { grid-template-columns: repeat(2, 1fr); }
  .ipm-deliver-grid    { grid-template-columns: repeat(2, 1fr); }
  .ipm-lifecycle-layout{ grid-template-columns: 1fr; gap: 2.5rem; }
  .ipm-edge-grid       { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .maxvalue-section     { padding: 3.5rem 1.5rem; }
  .case-history-section { padding: 3.5rem 1.5rem; }
  .maxvalue-layout,
  .case-history-layout  { grid-template-columns: 1fr; gap: 2.5rem; }
  .case-history-badge   { position: relative; bottom: auto; left: auto; margin-top: 1.5rem; max-width: 100%; }
  .ooe-img-wrap         { padding: 1rem; }
  .vm-infographic-img   { padding: 1rem; }
}
 
@media (max-width: 600px) {
  .case-history-highlights { gap: 0.8rem; }
  .case-highlight           { padding: 1rem 0.7rem; }
}
 

@media (max-width: 1100px) {
  .clients-stats { grid-template-columns: repeat(2, 1fr); }
}
 
@media (max-width: 900px) {
  .clients-section { padding: 3.5rem 1.5rem; }
  .client-logo { width: 140px; height: 80px; }
}
 
@media (max-width: 600px) {
  .clients-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .client-logo { width: 120px; height: 70px; }
}

@media (max-width: 900px) {
  nav                  { padding: 0 1.5rem; }
  .nav-links           { display: none; }
  .hamburger           { display: flex; }
  section              { padding: 3.5rem 1.5rem; }
  .page-banner-content { padding: 0 1.5rem; }
  .breadcrumb          { padding: 0.85rem 1.5rem; }
  footer               { padding: 3rem 1.5rem 2rem; }
  .hero-content        { padding: 7rem 1.5rem 3rem; }
  .overview-grid       { grid-template-columns: 1fr; gap: 2.5rem; }
  .vm-grid             { grid-template-columns: 1fr; gap: 2rem; }
  .ipm-strip-layout    { grid-template-columns: 1fr; gap: 2.5rem; }
  .detail-layout       { grid-template-columns: 1fr; }
  .detail-sidebar      { order: -1; }
  .cta-section         { padding: 4rem 1.5rem !important; }
  .cta-inner           { flex-direction: column; }
}

@media (max-width: 600px) {
  .svc-grid            { grid-template-columns: 1fr; }
  .team-grid           { grid-template-columns: 1fr; }
  .pol-grid            { grid-template-columns: 1fr; }
  .ipm-items-grid      { grid-template-columns: 1fr; }
  .svc-listing-grid    { grid-template-columns: 1fr; }
  .pol-listing-grid    { grid-template-columns: 1fr; }
  .ipm-deliver-grid    { grid-template-columns: 1fr; }
  .hero-stats          { gap: 1.8rem; }
  .footer-top          { grid-template-columns: 1fr; }
}