/*********************************
  GLOBAL REFINEMENTS
**********************************/
:root {
  --text: #4a5680;
  --dark: #1a2340;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, #ffffff, #f4f6f8);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 82px;
}

h1, h2, h3, h4, h5 {
  font-weight: 800;
  letter-spacing: .4px;
  color: var(--dark);
}

.lead {
  font-size: 1.18rem;
  opacity: 0.95;
}

/* ── RESET (header scoped) ── */
.site-header *, .site-header *::before, .site-header *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #ffffff;
  border-bottom: 1.5px solid #e8eeff;
  box-shadow: 0 2px 18px rgba(58, 107, 255, 0.07);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  transition: box-shadow .3s, border-color .3s;
}

.site-header.scrolled {
  box-shadow: 0 4px 28px rgba(58, 107, 255, 0.11);
  border-bottom-color: #d4dbf5;
}

/* ── INNER ── */
.hdr-inner {
  margin: 0 auto;
  padding: 0 40px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: height .3s;
}

.site-header.scrolled .hdr-inner { height: 60px; }

/* ── BRAND ── */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-wrap {
  height: 46px;
  width: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3a6bff 0%, #7c3aed 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(58, 107, 255, 0.22);
  transition: height .3s, width .3s;
}

.site-header.scrolled .logo-wrap {
  height: 38px;
  width: 38px;
  border-radius: 10px;
}

.logo-img {
  width: 70%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.brand-info { display: flex; flex-direction: column; gap: 2px; }

.brand-name {
  font-size: 17px;
  font-weight: 800;
  color: #1a2340;
  letter-spacing: 0.1px;
  line-height: 1;
}

.brand-tag {
  font-size: 9.5px;
  font-weight: 600;
  color: #7a90c0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── NAV ── */
.main-nav { display: flex; align-items: center; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

/* ── LINKS ── */
.nav-item > a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: #4a5680;
  text-decoration: none;
  border-radius: 9px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}

.nav-item > a:hover {
  color: #0579b8;
  background: #f0f4ff;
}

.nav-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #37964d, #5bbf73);
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0);
  transition: opacity .2s, transform .2s;
}

.nav-item > a:hover .nav-dot,
.nav-item > a.active .nav-dot {
  opacity: 1;
  transform: scale(1);
}

.nav-item > a.active {
  color: #0579b8;
  background: #eef2ff;
  font-weight: 700;
}

.nav-item > a.active::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #bfb282, #d4c89b);
}

/* ── FACILITIES DROPDOWN ── */
.nav-item--dropdown { position: relative; }

/* invisible bridge — cursor can cross the gap without losing hover */
.nav-item--dropdown::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
  background: transparent;
  z-index: 9999;
}

.nav-item--dropdown > a .nav-chevron {
  font-size: 9px;
  margin-left: 2px;
  opacity: 0.55;
  transition: transform .25s;
}

.nav-item--dropdown:hover > a .nav-chevron,
.nav-item--dropdown.open > a .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  list-style: none;
  background: #ffffff;
  border: 1px solid #e2e8f5;
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 16px 40px rgba(58, 107, 255, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s, transform .22s, visibility .22s;
  z-index: 10000;
  margin: 0;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid #e2e8f5;
  border-top: 1px solid #e2e8f5;
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: #4a5680;
  text-decoration: none;
  transition: color .2s, background .2s;
  white-space: nowrap;
}

.nav-dropdown li a::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0579b8, #37964d);
  flex-shrink: 0;
  opacity: 0.7;
}

.nav-dropdown li a:hover {
  color: #0579b8;
  background: #f0f4ff;
}

.nav-dropdown li a:hover::before { opacity: 1; }

.nav-dropdown-divider {
  height: 1px;
  background: #e8eeff;
  margin: 6px 8px;
}

.nav-dropdown-all {
  font-size: 12.5px !important;
  color: #0579b8 !important;
  font-weight: 700 !important;
}

.nav-dropdown-all::before {
  display: none !important;
}

/* ── DIVIDER ── */
.nav-divider {
  width: 1px;
  height: 20px;
  background: #dde4f5;
  margin: 0 8px;
}

/* ── CTA ── */
.nav-cta {
  display: flex !important;
  align-items: center;
  gap: 7px;
  padding: 9px 22px !important;
  border-radius: 50px !important;
  font-size: 14px;
  font-weight: 700;
  color: #fff !important;
  text-decoration: none;
  background: linear-gradient(135deg, #0579b8, #034f7a) !important;
  box-shadow: 0 4px 16px rgba(58, 107, 255, 0.25);
  transition: transform .2s, box-shadow .2s !important;
  border: none !important;
}

.nav-cta::after { display: none !important; }
.nav-cta .nav-dot { display: none; }

.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 26px rgba(58, 107, 255, 0.38) !important;
  color: #fff !important;
}

.cta-arrow {
  display: inline-block;
  transition: transform .2s;
}

.nav-cta:hover .cta-arrow { transform: translateX(3px); }

/* ── TOGGLER ── */
.nav-toggler {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: #f0f4ff;
  border: 1.5px solid #dde4f5;
  border-radius: 10px;
  cursor: pointer;
  padding: 9px;
  transition: background .2s;
}

.nav-toggler:hover { background: #e4eaff; }

.nav-toggler span {
  display: block;
  height: 2px;
  background: #3a6bff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.nav-toggler.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggler.open span:nth-child(2) { opacity: 0; }
.nav-toggler.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE ── */
@media (max-width: 992px) {
  body { padding-top: 72px; }

  .nav-toggler { display: flex; }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e8eeff;
    box-shadow: 0 12px 32px rgba(58, 107, 255, 0.10);
    display: none;
    padding: 12px 16px 18px;
  }

  .main-nav.open { display: block; }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav-item > a {
    width: 100%;
    padding: 12px 14px;
  }

  .nav-item > a.active::after { display: none; }

  .nav-sep-item { display: none; }

  .nav-cta {
    justify-content: center !important;
    margin-top: 6px;
  }

  .nav-item--dropdown .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    min-width: 0;
    margin: 4px 0 6px;
    box-shadow: none;
    border: 1px solid #eef2ff;
    background: #f8faff;
  }

  .nav-item--dropdown .nav-dropdown::before { display: none; }

  .nav-item--dropdown.open .nav-dropdown { display: block; }

  .nav-item--dropdown:hover .nav-dropdown {
    transform: none;
  }
}

 /** navbar css code end here */


 /* ── HERO — fixed 400px ── */
.hero {
  position: relative;
  height: 500px;
  min-height: 500px;
  max-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a1a10;
}

.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease;
  z-index: 0;
}

.hero-img.show { opacity: 1; }

.hero-tint {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
  z-index: 1;
}

.hero-tint.show { opacity: 1; }

.hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,15,10,0.78) 0%, rgba(5,15,10,0.32) 55%, transparent 100%);
  z-index: 2;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 3;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
}

.orb1 { width: 280px; height: 280px; background: rgba(5,121,184,0.18); top: -90px; left: -70px; filter: blur(80px); }
.orb2 { width: 220px; height: 220px; background: rgba(55,150,77,0.16); bottom: -70px; right: -50px; filter: blur(70px); }
.orb3 { width: 160px; height: 160px; background: rgba(191,178,130,0.14); top: 30px; right: 14%; filter: blur(60px); }

.hero-inner {
  position: relative;
  z-index: 6;
  max-width: 720px;
  width: 100%;
  padding: 52px 20px 48px;
  text-align: center;
}

.slide-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.13);
  border: 0.5px solid rgba(255,255,255,0.30);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 12px;
}

.label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.6); }
}

.chips {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.chip {
  background: rgba(255,255,255,0.10);
  border: 0.5px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.85);
}

.hero-title {
  font-size: clamp(1.45rem, 3.8vw, 2.15rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  transition: opacity 0.5s, transform 0.5s;
}

.hero-title em { font-style: normal; }

.hero-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  margin: 0 auto 14px;
  line-height: 1.55;
  transition: opacity 0.5s, transform 0.5s;
}

.fade-out {
  opacity: 0 !important;
  transform: translateY(10px) !important;
}

.stat-bar {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-bottom: 14px;
}

.stat-item {
  padding: 6px 16px;
  border-right: 0.5px solid rgba(255,255,255,0.15);
  text-align: center;
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1;
}

.stat-lbl {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.4px;
  margin-top: 2px;
  display: block;
}

.btn-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.btn-p {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: inherit;
  color: #fff;
  background: linear-gradient(135deg, #0579b8, #034f7a);
  box-shadow: 0 4px 16px rgba(5,121,184,0.35);
}

.btn-p:hover { transform: translateY(-2px); color: #fff; }

.btn-o {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s, background 0.2s;
  font-family: inherit;
}

.btn-o:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.22);
  color: #fff;
}

.dots {
  display: flex;
  gap: 7px;
  justify-content: center;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}

.dot.on {
  width: 22px;
  border-radius: 4px;
  background: #fff;
}



.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.13);
  border: 0.5px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  user-select: none;
}

.arrow:hover { background: rgba(255,255,255,0.25); }
.arrow-l { left: 12px; }
.arrow-r { right: 12px; }



.slide-num {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 72px;
  font-weight: 900;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  z-index: 4;
  user-select: none;
  pointer-events: none;
}
/* ══ VALUE BAND — paste after hero ══ */
  .st-vb-band {
    position: relative;
    background: linear-gradient(135deg, #071525 0%, #0c2840 45%, #0a2235 100%);
    overflow: hidden;
    padding: 0;
  }

  .st-vb-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 50% 120% at 0% 50%, rgba(5, 121, 184, 0.22), transparent 55%),
      radial-gradient(ellipse 40% 100% at 100% 50%, rgba(55, 150, 77, 0.18), transparent 50%);
    pointer-events: none;
  }

  .st-vb-band::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--vb-blue), var(--vb-green), var(--vb-gold), var(--vb-blue));
    background-size: 200% 100%;
    animation: vbShine 6s linear infinite;
  }

  @keyframes vbShine {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
  }

  .st-vb-inner {
    position: relative;
    z-index: 1;
    max-width: 1140px;
    margin: 0 auto;
    padding: 1.35rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
  }

  .st-vb-tagline {
    flex: 1;
    min-width: 200px;
  }

  .st-vb-tagline p {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--vb-gold);
    margin-bottom: 0.35rem;
  }

  .st-vb-tagline h2 {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.3;
  }

  .st-vb-tagline h2 em {
    font-style: normal;
    color: #7ec8ea;
  }

  /* facility track */
  .st-vb-track {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
  }

  .st-vb-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
    color: #fff;
    padding: 0.35rem 0.5rem;
    transition: transform 0.25s;
  }

  .st-vb-node:hover { transform: translateY(-3px); }

  .st-vb-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    transition: border-color 0.25s, box-shadow 0.25s;
  }

  .st-vb-node:hover .st-vb-dot {
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 20px rgba(5, 121, 184, 0.5);
  }

  .st-vb-dot--wi { color: var(--vb-blue); }
  .st-vb-dot--va { color: #6ecf8a; }
  .st-vb-dot--sc { color: var(--vb-gold); }

  .st-vb-dot::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid currentColor;
    opacity: 0;
    animation: vbRing 2.5s ease-out infinite;
  }

  .st-vb-node:nth-child(1) .st-vb-dot::after { animation-delay: 0s; }
  .st-vb-node:nth-child(3) .st-vb-dot::after { animation-delay: 0.8s; }
  .st-vb-node:nth-child(5) .st-vb-dot::after { animation-delay: 1.6s; }

  @keyframes vbRing {
    0% { transform: scale(0.85); opacity: 0.6; }
    100% { transform: scale(1.35); opacity: 0; }
  }

  .st-vb-node span {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.85;
    white-space: nowrap;
  }

  .st-vb-line {
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, rgba(5,121,184,0.6), rgba(55,150,77,0.6));
    flex-shrink: 0;
    margin-bottom: 1.1rem;
    opacity: 0.7;
  }

  /* certs + cta */
  .st-vb-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
  }

  .st-vb-certs {
    display: flex;
    gap: 0.4rem;
  }

  .st-vb-cert {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a8e6b8;
    font-size: 0.95rem;
    transition: background 0.2s;
  }

  .st-vb-cert:hover { background: rgba(255, 255, 255, 0.16); }

  .st-vb-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, var(--vb-blue), var(--vb-green));
    box-shadow: 0 4px 16px rgba(5, 121, 184, 0.35);
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .st-vb-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5, 121, 184, 0.45);
  }

  @media (max-width: 768px) {
    .st-vb-inner {
      flex-direction: column;
      text-align: center;
      padding: 1.25rem 1rem;
    }

    .st-vb-tagline { min-width: auto; }

    .st-vb-track { justify-content: center; }

    .st-vb-actions {
      flex-direction: column;
      width: 100%;
    }

    .st-vb-btn { width: 100%; justify-content: center; }
  }

@media (max-width: 640px) {
  .hero { height: 400px; min-height: 400px; max-height: 400px; }
  .hero-inner { padding: 46px 16px 44px; }
  .slide-num { display: none; }
  .chips { display: none; }
  .stat-bar { margin-bottom: 12px; }
  .stat-item { padding: 5px 12px; }
  .arrow { width: 32px; height: 32px; font-size: 14px; }
  .corner-name { display: none; }
}


/* Info Section */



  .section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    height: 300px;
    max-height: 300px;
    border-radius: 14px;
    overflow: hidden;
    border: 0.5px solid var(--color-border-tertiary);
  }

  /* ── LEFT ── */
  .left {
    background: var(--color-background-primary);
    padding: 14px 16px 14px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    min-height: 0;
  }

  .left-accent {
    position: absolute; top: 0; left: 0;
    width: 3px; height: 100%;
    background: linear-gradient(to bottom, #0579b8, #37964d, #bfb282);
  }

  .top-row {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 6px;
    flex-shrink: 0;
  }

  .pr-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(5,121,184,0.08);
    border: 0.5px solid rgba(5,121,184,0.25);
    border-radius: 50px; padding: 3px 10px;
    font-size: 9px; font-weight: 600;
    letter-spacing: 0.6px; text-transform: uppercase;
    color: #0579b8;
  }

  .pr-dot {
    width: 4px; height: 4px; border-radius: 50%;
    background: #0579b8;
    animation: blink 2s infinite;
  }

  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
  }

  .date-chip {
    font-size: 10px; color: var(--color-text-secondary);
    background: var(--color-background-secondary);
    border: 0.5px solid var(--color-border-tertiary);
    border-radius: 5px; padding: 2px 7px;
  }

  .headline {
    font-size: 14.5px; font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.3; letter-spacing: -0.2px;
    margin-bottom: 5px;
    display: -webkit-box;
     line-clamp: 2;          /* Standard property */
    -webkit-line-clamp: 2;  /* Chrome, Edge, Safari */
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-shrink: 0;
  }

  .headline .hl1 { color: #0579b8; }
  .headline .hl2 { color: #37964d; }

  .location-row {
    display: flex; align-items: center; gap: 5px;
    font-size: 10px; color: var(--color-text-secondary);
    margin-bottom: 8px;
    flex-shrink: 0;
  }

  .location-row i { font-size: 11px; color: #0579b8; }

  .stats-strip {
    display: grid; grid-template-columns: repeat(3, 1fr);
    margin-bottom: 8px;
    border: 0.5px solid var(--color-border-tertiary);
    border-radius: 8px; overflow: hidden;
    flex-shrink: 0;
  }

  .sstat {
    padding: 6px 4px; text-align: center;
    border-right: 0.5px solid var(--color-border-tertiary);
    background: var(--color-background-secondary);
    position: relative;
  }

  .sstat:last-child { border-right: none; }

  .sstat-num {
    font-size: 15px; font-weight: 700;
    display: block; line-height: 1;
  }

  .sstat-lbl {
    font-size: 8.5px; color: var(--color-text-secondary);
    margin-top: 2px; display: block;
  }

  .n1 { color: #0579b8; }
  .n2 { color: #37964d; }
  .n3 { color: #8a7a40; }

  .sstat-bar {
    position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  }

  .b1 { background: #0579b8; }
  .b2 { background: #37964d; }
  .b3 { background: #bfb282; }

  .body {
    font-size: 11px; color: var(--color-text-secondary);
    line-height: 1.45;
    display: -webkit-box;
    line-clamp: 2;          /* Standard property */
    -webkit-line-clamp: 2;  /* Chrome, Edge, Safari */
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    min-height: 0;
  }

  .body strong { color: var(--color-text-primary); font-weight: 600; }

  .btns { flex-shrink: 0; margin-top: 8px; }

  .b-main {
    display: inline-flex; align-items: center; gap: 5px;
    background: #0579b8; color: #fff;
    font-size: 11px; font-weight: 600;
    padding: 7px 16px; border-radius: 50px;
    text-decoration: none;
    transition: opacity 0.15s;
  }

  .b-main:hover { opacity: 0.88; }

  /* ── RIGHT ── */
  .right {
    position: relative; overflow: hidden;
    background: #061510;
    height: 300px;
  }

  .right img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; opacity: 0.55;
  }

  .r-tint {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(5,121,184,0.30) 0%, rgba(4,12,8,0.15) 50%, rgba(55,150,77,0.25) 100%);
  }

  .r-vfade {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(4,12,8,0.92) 0%, rgba(4,12,8,0.15) 50%, transparent 100%);
  }

  .r-tag {
    position: absolute; top: 10px; right: 10px;
    display: inline-flex; align-items: center; gap: 4px;
    background: rgba(255,255,255,0.12);
    border: 0.5px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(6px);
    border-radius: 50px; padding: 3px 9px;
    font-size: 8.5px; font-weight: 600;
    letter-spacing: 0.5px; text-transform: uppercase;
    color: rgba(255,255,255,0.90);
  }

  .r-tag-dot {
    width: 4px; height: 4px; border-radius: 50%;
    background: #37964d; animation: blink 2s infinite;
  }

  .r-bottom {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 12px;
  }

  .r-headline {
    font-size: 13px; font-weight: 700; color: #fff;
    line-height: 1.2; margin-bottom: 8px;
  }

  .r-headline span { color: #91c4e0; }

  .r-statrow {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px;
  }

  .r-st {
    background: rgba(255,255,255,0.09);
    border: 0.5px solid rgba(255,255,255,0.16);
    border-radius: 7px; padding: 6px 4px; text-align: center;
  }

  .r-st-n { font-size: 13px; font-weight: 700; color: #fff; display: block; line-height: 1; }
  .r-st-l { font-size: 8px; color: rgba(255,255,255,0.55); margin-top: 2px; display: block; }

  @media (max-width: 640px) {
    .section {
      grid-template-columns: 1fr;
      height: auto;
      max-height: none;
    }
    .right { height: 180px; }
  }
/* Info Section end here*/


/* chat bot css*/
#chatIcon{
  position:fixed;bottom:24px;right:24px;
  width:64px;height:64px;border-radius:50%;
  padding:3px;
  background:linear-gradient(135deg,#0579b8,#37964d);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;z-index:99999;
  box-shadow:0 8px 28px rgba(5,121,184,0.40);
  transition:transform .2s,box-shadow .2s;
  overflow:visible;
  border:none;
}
#chatIcon:hover{transform:scale(1.08);box-shadow:0 12px 36px rgba(5,121,184,0.50);}

.chat-icon-inner{
  width:100%;
  height:100%;
  border-radius:50%;
  background:#fff;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
#chatIcon .chat-icon-inner img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  pointer-events:none;
}

.icon-notif{
  position:absolute;
  top:-3px;
  right:-3px;
  width:18px;
  height:18px;
  border-radius:50%;
  background:#ef4444;
  border:2.5px solid #fff;
  font-size:9px;
  font-weight:800;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
  box-shadow:0 2px 8px rgba(239,68,68,0.45);
  pointer-events:none;
}

#chatWidget{
  position:fixed;bottom:100px;right:24px;
  width:360px;
  max-height:min(520px,calc(100vh - 120px));
  border-radius:22px;
  background:#fff;
  box-shadow:0 24px 60px rgba(0,0,0,0.16),0 4px 16px rgba(5,121,184,0.12);
  display:flex;flex-direction:column;
  overflow:hidden;z-index:99998;
}

.chat-header{
  background:linear-gradient(135deg,#0579b8 0%,#37964d 100%);
  padding:14px 16px;
  display:flex;align-items:center;gap:12px;
  flex-shrink:0;
}

.hdr-logo-wrap{
  width:42px;height:42px;
  border-radius:50%;
  flex-shrink:0;
  background:#fff;
  border:2px solid rgba(255,255,255,0.88);
  overflow:hidden;
  padding:0;
  box-shadow:0 2px 8px rgba(0,0,0,0.12);
}
.hdr-logo-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.hdr-info{flex:1;min-width:0;}
.hdr-name{
  font-size:14px;font-weight:700;color:#fff;line-height:1.25;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.hdr-status{display:flex;align-items:center;gap:5px;margin-top:3px;}
.status-dot{width:7px;height:7px;border-radius:50%;background:#86efac;flex-shrink:0;}
.hdr-status span{font-size:11px;color:rgba(255,255,255,0.88);font-weight:500;}

.hdr-close{
  width:30px;height:30px;border-radius:50%;
  background:rgba(255,255,255,0.18);border:none;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-size:15px;line-height:1;
  transition:background .2s;flex-shrink:0;
}
.hdr-close:hover{background:rgba(255,255,255,0.28);}

#chatBody{
  flex:1 1 auto;
  min-height:0;
  height:300px;
  max-height:340px;
  overflow-y:auto;
  overflow-x:hidden;
  padding:16px;
  background:#f4f8fb;
  display:flex;
  flex-direction:column;
  gap:10px;
  scroll-behavior:smooth;
}
#chatBody::-webkit-scrollbar{width:5px;}
#chatBody::-webkit-scrollbar-track{background:transparent;}
#chatBody::-webkit-scrollbar-thumb{background:#b8cfe0;border-radius:4px;}
#chatBody::-webkit-scrollbar-thumb:hover{background:#0579b8;}

.bot-msg{display:flex;align-items:flex-end;gap:8px;max-width:92%;}
.bot-msg-avatar{
  width:28px;height:28px;border-radius:50%;flex-shrink:0;
  background:#fff;border:1px solid #dce8f0;
  overflow:hidden;padding:0;
  box-shadow:0 1px 4px rgba(5,121,184,0.08);
}
.bot-msg-avatar img{
  width:100%;height:100%;object-fit:cover;display:block;
}

.bot-bubble{
  background:#fff;color:#0f1c2e;
  padding:10px 14px;border-radius:16px 16px 16px 4px;
  font-size:13px;line-height:1.6;
  border:1px solid #dce8f0;
  box-shadow:0 2px 8px rgba(5,121,184,0.06);
}

.user-row{display:flex;justify-content:flex-end;}
.user-bubble{
  background:linear-gradient(135deg,#0579b8,#37964d);
  color:#fff;padding:10px 14px;
  border-radius:16px 16px 4px 16px;
  font-size:13px;line-height:1.6;max-width:82%;
}

.quick-replies{display:flex;flex-wrap:wrap;gap:6px;margin-top:2px;margin-left:36px;}
.qr-btn{
  font-size:11px;font-weight:600;
  padding:6px 11px;border-radius:20px;
  background:#fff;color:#0579b8;
  border:1px solid #b8d4e8;
  cursor:pointer;transition:all .18s;
}
.qr-btn:hover{background:#e8f4fa;border-color:#0579b8;}

.chat-link-btn{
  display:inline-flex;align-items:center;gap:.3rem;margin-top:.55rem;
  padding:.4rem .75rem;border-radius:999px;
  font-size:.72rem;font-weight:700;text-decoration:none;color:#fff;
  background:linear-gradient(135deg,#0579b8,#37964d);
}
.chat-link-btn:hover{opacity:.92;}

.typing-indicator{display:flex;align-items:flex-end;gap:8px;}
.typing-dots{display:flex;gap:4px;padding:10px 14px;background:#fff;border:1px solid #dce8f0;border-radius:16px 16px 16px 4px;}
.typing-dots span{width:7px;height:7px;border-radius:50%;background:#b8d4e8;animation:stChatTd .9s ease-in-out infinite;}
.typing-dots span:nth-child(2){animation-delay:.2s;}
.typing-dots span:nth-child(3){animation-delay:.4s;}
@keyframes stChatTd{0%,80%,100%{transform:translateY(0);}40%{transform:translateY(-6px);background:#0579b8;}}

.chat-input-area{
  padding:12px 14px;background:#fff;
  border-top:1px solid #e8f0f5;
  display:flex;align-items:center;gap:10px;
  flex-shrink:0;
}
.chat-input-area input{
  flex:1;padding:10px 16px;
  border:1.5px solid #dce8f0;border-radius:50px;
  font-size:13px;color:#0f1c2e;outline:none;background:#f4f8fb;
  font-family:inherit;
}
.chat-input-area input:focus{border-color:#0579b8;background:#fff;}
.send-btn{
  width:40px;height:40px;border-radius:50%;border:none;
  background:linear-gradient(135deg,#0579b8,#37964d);
  color:#fff;cursor:pointer;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
}
.chat-footer{
  text-align:center;padding:6px 0 10px;
  font-size:10.5px;color:#8fa3b5;background:#fff;
  flex-shrink:0;
}

@media(max-width:420px){
  #chatWidget{width:calc(100vw - 24px);right:12px;bottom:96px;}
  #chatIcon{bottom:16px;right:16px;}
}



/* chat bot css end here */



/* Footer css */
*{box-sizing:border-box;margin:0;padding:0;}
.ft{
  font-family:'Segoe UI',system-ui,sans-serif;
  background:#0f2032;
  position:relative;overflow:hidden;
}
.orb{position:absolute;border-radius:50%;pointer-events:none;}
.o1{width:400px;height:400px;top:-150px;left:-100px;background:rgba(5,121,184,0.15);filter:blur(90px);}
.o2{width:320px;height:320px;bottom:-100px;right:-80px;background:rgba(55,150,77,0.13);filter:blur(80px);}
.o3{width:220px;height:220px;top:30px;right:30%;background:rgba(145,196,224,0.07);filter:blur(70px);}

.ft-line{width:100%;height:3px;background:linear-gradient(90deg,transparent,#0579b8 25%,#91c4e0 50%,#37964d 75%,transparent);}

.ft-inner{position:relative;z-index:2;padding:44px 44px 0;}

/* MAIN GRID */
.main-grid{
  display:grid;grid-template-columns:1.6fr 1fr 1fr;
  gap:48px;padding-bottom:32px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

/* BRAND */
.logo-img{
  height:52px;width:auto;max-width:180px;
  object-fit:contain;
  
  margin-bottom:16px;display:block;
}
.logo-img.color-logo{filter:none;}

.brand-sep{width:36px;height:2px;border-radius:2px;background:linear-gradient(90deg,#0579b8,#37964d);margin-bottom:14px;}

.brand-desc{font-size:13.5px;color:rgba(255,255,255,0.58);line-height:1.78;margin-bottom:18px;max-width:280px;}

.socials{display:flex;gap:8px;margin-bottom:18px;}
.soc{
  width:34px;height:34px;border-radius:9px;
  display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(255,255,255,0.12);
  color:rgba(255,255,255,0.45);font-size:17px;
  background:rgba(255,255,255,0.06);
  text-decoration:none;transition:all 0.18s;
}
.soc:hover{transform:translateY(-3px);}
.sh1:hover{background:#0579b8;color:#fff;border-color:#0579b8;}
.sh2:hover{background:#1da1f2;color:#fff;border-color:#1da1f2;}
.sh3:hover{background:#1877f2;color:#fff;border-color:#1877f2;}
.sh4:hover{background:#ff0000;color:#fff;border-color:#ff0000;}

.certs{display:flex;gap:7px;flex-wrap:wrap;}
.cert{display:inline-flex;align-items:center;gap:5px;border-radius:6px;padding:5px 11px;font-size:11px;font-weight:500;}
.ce1{background:rgba(5,121,184,0.18);border:1px solid rgba(5,121,184,0.35);color:#91c4e0;}
.ce2{background:rgba(55,150,77,0.18);border:1px solid rgba(55,150,77,0.35);color:#6cba7f;}
.ce3{background:rgba(191,178,130,0.14);border:1px solid rgba(191,178,130,0.30);color:#bfb282;}

/* NAV */
.col-head{display:flex;align-items:center;gap:8px;margin-bottom:18px;}
.col-head-line{flex:1;height:0.5px;background:rgba(255,255,255,0.10);}
.col-title{font-size:10.5px;font-weight:700;letter-spacing:1.6px;text-transform:uppercase;color:rgba(255,255,255,0.38);white-space:nowrap;}

.ft-links{list-style:none;display:flex;flex-direction:column;gap:11px;}
.ft-links li a{
  font-size:13.5px;color:rgba(255,255,255,0.55);
  text-decoration:none;display:flex;align-items:center;
  transition:color 0.15s;
}
.ft-links li a .ar{
  display:inline-block;width:0;overflow:hidden;
  color:#91c4e0;font-size:14px;
  transition:width 0.18s,margin 0.18s;margin-right:0;
}
.ft-links li a:hover{color:#fff;}
.ft-links li a:hover .ar{width:14px;margin-right:6px;}

/* CONTACT STRIP */
.contact-strip{
  display:grid;grid-template-columns:repeat(3,1fr);
  border-bottom:1px solid rgba(255,255,255,0.07);
}
.cs{
  padding:18px 22px;border-right:1px solid rgba(255,255,255,0.07);
  display:flex;align-items:flex-start;gap:11px;transition:background 0.15s;
}
.cs:last-child{border-right:none;}
.cs:hover{background:rgba(255,255,255,0.03);}
.cs-ic{
  width:34px;height:34px;border-radius:9px;
  display:flex;align-items:center;justify-content:center;
  font-size:17px;flex-shrink:0;
}
.csi1{background:rgba(5,121,184,0.18);color:#91c4e0;}
.csi2{background:rgba(55,150,77,0.18);color:#6cba7f;}
.csi3{background:rgba(191,178,130,0.14);color:#bfb282;}
.cs-info strong{font-size:11.5px;font-weight:600;color:rgba(255,255,255,0.75);display:block;margin-bottom:4px;}
.cs-info span{font-size:12.5px;color:rgba(255,255,255,0.42);line-height:1.6;display:block;}

/* BOTTOM */
.ft-bottom{
  display:flex;align-items:center;justify-content:space-between;
  gap:12px;padding:16px 0;flex-wrap:wrap;
  border-bottom:1px solid rgba(255,255,255,0.07);
}
.loc-left{display:flex;align-items:center;gap:8px;flex-wrap:wrap;}
.loc-lbl{font-size:10.5px;color:rgba(255,255,255,0.25);letter-spacing:0.9px;text-transform:uppercase;}
.loc-badge{
  display:inline-flex;align-items:center;gap:5px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:50px;padding:4px 12px;
  font-size:12px;color:rgba(255,255,255,0.52);transition:all 0.15s;
}
.loc-badge i{font-size:12px;color:#91c4e0;}
.loc-badge:hover{border-color:rgba(5,121,184,0.50);color:#91c4e0;}
.eco-pill{
  display:inline-flex;align-items:center;gap:7px;
  background:rgba(55,150,77,0.12);
  border:1px solid rgba(55,150,77,0.28);
  border-radius:50px;padding:5px 15px;
  font-size:12px;color:#6cba7f;font-weight:500;
}
.edot{width:6px;height:6px;border-radius:50%;background:#37964d;animation:blink 2s infinite;}
@keyframes blink{0%,100%{opacity:1;transform:scale(1);}50%{opacity:0.25;transform:scale(1.6);}}

.ft-copy{
  display:flex;align-items:center;justify-content:space-between;
  gap:12px;padding:16px 0 22px;flex-wrap:wrap;
}
.copy{font-size:12px;color:rgba(255,255,255,0.28);}
.copy b{color:rgba(255,255,255,0.48);font-weight:500;}
.legals{display:flex;gap:18px;flex-wrap:wrap;}
.legals a{font-size:12px;color:rgba(255,255,255,0.28);text-decoration:none;transition:color 0.15s;}
.legals a:hover{color:#91c4e0;}

@media(max-width:640px){
  .main-grid{grid-template-columns:1fr;gap:28px;}
  .contact-strip{grid-template-columns:1fr;}
  .cs{border-right:none;border-bottom:1px solid rgba(255,255,255,0.07);}
  .ft-inner{padding:32px 20px 0;}
}
/* Footer css end here */


/* our facility sectin design css*/
   /* ══════════════════════════════════════════════════════════════
   PATCH: Add these :root variables at the TOP of your CSS file
   (your global h1-h5 and companies section need these)
   ══════════════════════════════════════════════════════════════ */
:root {
  --dark: #0f1c2e;
  --text: #0f1c2e;
  --bg: #eef2f6;
  --card: #ffffff;
  --muted: #5a6b7d;
  --border: rgba(15, 28, 46, 0.10);
  --blue: #0579b8;
  --green: #37964d;
  --gold: #bfb282;
}


/* ══════════════════════════════════════════════════════════════
   PATCH: Rename press-release wrapper class to avoid breaking grids
   In your Info Section CSS, change .section → .pr-section
   ══════════════════════════════════════════════════════════════ */


/* ══════════════════════════════════════════════════════════════
   PATCH: Scope companies section globals (replace unscoped rules)
   ══════════════════════════════════════════════════════════════ */
.companies-section .logo-wrap {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 3;
  width: calc(100% - 40px);
  display: flex;
  align-items: center;
  gap: 12px;
  height: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.companies-section .card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}


/* ══════════════════════════════════════════════════════════════
   FACILITIES — REPLACE your entire facilities block with this
   (must be LAST in the CSS file)
   ══════════════════════════════════════════════════════════════ */

.st-facilities-section {
  --st-fac-bg: #ffffff;
  --st-fac-text: #0f1c2e;
  --st-fac-muted: #5a6b7d;
  --st-fac-border: rgba(15, 28, 46, 0.10);
  --st-fac-blue: #0579b8;
  --st-fac-green: #37964d;
  --st-fac-gold: #bfb282;

  position: relative;
  z-index: 1;
  isolation: isolate;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 52px 20px 56px;
  font-family: "Segoe UI", system-ui, sans-serif;
  color: var(--st-fac-text);
  line-height: 1.5;
  background: transparent;
  display: block !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
}

.st-facilities-section *,
.st-facilities-section *::before,
.st-facilities-section *::after {
  box-sizing: border-box;
}

.st-facilities-section h2.st-fac-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.15;
  margin: 0 0 10px;
  color: var(--st-fac-text);
}

.st-facilities-section h3.st-fac-name {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.2px;
  line-height: 1.2;
  margin: 0 0 6px;
  color: #ffffff;
}

.st-facilities-section p { margin: 0; }

.st-facilities-section a.st-fac-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.st-fac-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
  display: block;
  position: static;
  height: auto;
}

.st-fac-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(5, 121, 184, 0.08);
  border: 1px solid rgba(5, 121, 184, 0.22);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--st-fac-blue);
  margin-bottom: 14px;
}

.st-fac-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--st-fac-blue);
  animation: stFacPulse 2s infinite;
}

@keyframes stFacPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

.st-fac-title .st-fac-blue { color: var(--st-fac-blue); }
.st-fac-title .st-fac-green { color: var(--st-fac-green); }

.st-fac-subtitle {
  font-size: 0.92rem;
  color: var(--st-fac-muted);
  line-height: 1.65;
}

.st-fac-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.st-fac-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
  min-height: 300px;
  border: 1px solid var(--st-fac-border);
  background: var(--st-fac-bg);
  box-shadow: 0 8px 28px rgba(15, 28, 46, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.st-fac-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(5, 121, 184, 0.15);
}

.st-fac-card:focus-visible {
  outline: 3px solid var(--st-fac-blue);
  outline-offset: 3px;
}

.st-fac-card-img {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  overflow: hidden;
  z-index: 0;
}

.st-facilities-section .st-fac-card-img img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.st-fac-card:hover .st-fac-card-img img { transform: scale(1.06); }

.st-fac-card-overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 1;
  background:
    linear-gradient(150deg, rgba(5, 121, 184, 0.22) 0%, rgba(4, 12, 8, 0.12) 40%, rgba(55, 150, 77, 0.26) 100%),
    linear-gradient(to top, rgba(4, 12, 8, 0.9) 0%, rgba(4, 12, 8, 0.4) 50%, rgba(4, 12, 8, 0.06) 100%);
  pointer-events: none;
}

.st-fac-card-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}

.st-fac-card-top {
  position: absolute;
  top: 16px; left: 16px; right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  z-index: 3;
}

.st-fac-state {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50px;
  padding: 5px 11px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.st-fac-state i { font-size: 11px; }

.st-fac-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.st-fac-panel {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 16px;
  position: relative;
  z-index: 2;
}

.st-fac-loc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 8px;
}

.st-fac-loc i { color: var(--st-fac-gold); font-size: 13px; flex-shrink: 0; }

.st-fac-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  margin-bottom: 12px;
}

.st-fac-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background: var(--st-fac-blue);
  border-radius: 50px;
  padding: 8px 16px;
  transition: background 0.2s, gap 0.2s;
}

.st-fac-card:hover .st-fac-cta { background: #0468a0; gap: 10px; }
.st-fac-card--green .st-fac-cta { background: var(--st-fac-green); }
.st-fac-card--green:hover .st-fac-cta { background: #2d7a3e; }
.st-fac-card--gold .st-fac-cta { background: linear-gradient(135deg, #8a7a40, var(--st-fac-gold)); }

.st-fac-accent {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  z-index: 4;
}

.st-fac-accent--blue { background: linear-gradient(90deg, var(--st-fac-blue), #3aa8e0); }
.st-fac-accent--green { background: linear-gradient(90deg, var(--st-fac-green), #4db866); }
.st-fac-accent--gold { background: linear-gradient(90deg, #8a7a40, var(--st-fac-gold)); }

.st-fac-footer {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.st-fac-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--st-fac-bg);
  border: 1px solid var(--st-fac-border);
  border-radius: 50px;
  padding: 7px 13px;
  font-size: 0.8rem;
  color: var(--st-fac-muted);
}

.st-fac-pill i { color: var(--st-fac-green); }

@media (max-width: 1024px) {
  .st-fac-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .st-fac-card:last-child {
    grid-column: 1 / -1;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .st-facilities-section { padding: 40px 16px 44px; }
  .st-fac-grid { grid-template-columns: 1fr; gap: 14px; }
  .st-fac-card:last-child { max-width: none; }
  .st-fac-card, .st-fac-card-inner { height: 280px; min-height: 280px; }
  .st-fac-header { margin-bottom: 24px; }
}

/* css end here */


/* Our Company css */
:root {
    --co-bg: #eef2f6;
    --co-card: #ffffff;
    --co-text: #0f1c2e;
    --co-muted: #5a6b7d;
    --co-border: rgba(15, 28, 46, 0.10);
    --co-blue: #0579b8;
    --co-green: #37964d;
    --co-gold: #bfb282;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    font-family: "Segoe UI", system-ui, sans-serif;
    background: var(--co-bg);
    color: var(--co-text);
  }

  .st-co-section {
    position: relative;
    overflow: hidden;
    padding: 48px 20px 52px;
  }

  .st-co-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 8% 10%, rgba(5, 121, 184, 0.08), transparent 28%),
      radial-gradient(circle at 92% 90%, rgba(55, 150, 77, 0.08), transparent 30%),
      linear-gradient(180deg, #f8fafc 0%, var(--co-bg) 100%);
    pointer-events: none;
  }

  .st-co-wrap {
    position: relative;
    z-index: 1;
    max-width: 1140px;
    margin: 0 auto;
  }

  .st-co-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 30px;
  }

  .st-co-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--co-blue);
    background: rgba(5, 121, 184, 0.08);
    border: 1px solid rgba(5, 121, 184, 0.22);
    margin-bottom: 12px;
  }

  .st-co-eyebrow-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--co-blue);
    animation: coPulse 2s infinite;
  }

  @keyframes coPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(1.5); }
  }

  .st-co-title {
    font-size: clamp(1.5rem, 3.2vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.4px;
    line-height: 1.15;
    margin-bottom: 8px;
    color: var(--co-text);
  }

  .st-co-title .blue { color: var(--co-blue); }
  .st-co-title .green { color: var(--co-green); }

  .st-co-subtitle {
    font-size: 0.9rem;
    color: var(--co-muted);
    line-height: 1.6;
  }

  .st-co-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  /* ── CARD ── */
  .st-co-card {
    background: var(--co-card);
    border: 1px solid var(--co-border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 30px rgba(15, 28, 46, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--accent);
  }

  .st-co-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(5, 121, 184, 0.14);
  }

  .st-co-card--blue { --accent: var(--co-blue); --tint: rgba(5, 121, 184, 0.07); }
  .st-co-card--green { --accent: var(--co-green); --tint: rgba(55, 150, 77, 0.07); }
  .st-co-card--gold { --accent: var(--co-gold); --tint: rgba(191, 178, 130, 0.12); }

  /* Logo hero zone — large logo, compact height */
  .st-co-logo-zone {
    position: relative;
    height: 118px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 24px;
    background: var(--tint);
    border-bottom: 1px solid var(--co-border);
    overflow: hidden;
  }

  .st-co-logo-zone::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(15, 28, 46, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(15, 28, 46, 0.03) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
  }

  .st-co-logo-zone::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0.55;
  }

  /* Large logo — prominent but capped */
  .st-co-logo-img {
    position: relative;
    z-index: 1;
    display: block;
    width: auto;
    height: auto;
    max-width: 168px;
    max-height: 76px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(15, 28, 46, 0.10));
    transition: transform 0.35s ease;
  }

  .st-co-card:hover .st-co-logo-img {
    transform: scale(1.04);
  }

  .st-co-logo-fallback {
    position: relative;
    z-index: 1;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.5px;
    line-height: 1;
    text-align: center;
  }

  .st-co-logo-fallback .sub {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-top: 4px;
    opacity: 0.8;
  }

  .st-co-card--blue .st-co-logo-fallback { color: var(--co-blue); }
  .st-co-card--green .st-co-logo-fallback { color: var(--co-green); }
  .st-co-card--gold .st-co-logo-fallback { color: #8a7a40; }

  /* Body */
  .st-co-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .st-co-name {
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--co-text);
    letter-spacing: -0.2px;
    line-height: 1.2;
    margin-bottom: 4px;
    text-align: center;
  }

  .st-co-loc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
  }

  .st-co-loc i { font-size: 11px; }

  .st-co-address {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.8rem;
    color: var(--co-muted);
    line-height: 1.55;
    padding: 10px 12px;
    background: #f7f9fb;
    border-radius: 10px;
    border: 1px solid var(--co-border);
    margin-bottom: 14px;
    flex: 1;
  }

  .st-co-address i {
    font-size: 15px;
    color: var(--accent);
    margin-top: 2px;
    flex-shrink: 0;
  }

  .st-co-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    background: var(--accent);
    box-shadow: 0 4px 16px rgba(15, 28, 46, 0.12);
    transition: transform 0.2s, gap 0.2s, box-shadow 0.2s;
  }

  .st-co-btn:hover {
    transform: translateY(-2px);
    gap: 11px;
    box-shadow: 0 8px 22px rgba(15, 28, 46, 0.16);
  }

  .st-co-card--blue .st-co-btn { background: linear-gradient(135deg, #0579b8, #034f7a); }
  .st-co-card--green .st-co-btn { background: linear-gradient(135deg, #37964d, #2a7340); }
  .st-co-card--gold .st-co-btn { background: linear-gradient(135deg, #8a7a40, #a89458); }

  .st-co-foot {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .st-co-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    color: var(--co-muted);
    background: var(--co-card);
    border: 1px solid var(--co-border);
  }

  .st-co-pill i { color: var(--co-green); }

  @media (max-width: 960px) {
    .st-co-grid {
      grid-template-columns: 1fr;
      max-width: 400px;
      margin: 0 auto;
    }
  }

  @media (max-width: 480px) {
    .st-co-section { padding: 36px 14px 40px; }
    .st-co-logo-img { max-width: 150px; max-height: 68px; }
    .st-co-logo-zone { height: 108px; padding: 16px 20px; }
  }

   
/* css end here */


/* we are hiring css */
 :root {
    --hire-blue: #0579b8;
    --hire-green: #37964d;
    --hire-gold: #bfb282;
    --hire-dark: #061510;
    --hire-text: #0f1c2e;
    --hire-muted: #5a6b7d;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    font-family: "Segoe UI", system-ui, sans-serif;
    background: #eef2f6;
    color: var(--hire-text);
  }

  /* ── WE ARE HIRING (prefixed st-hire- for site safety) ── */
  .st-hire-section {
    position: relative;
    padding: 56px 20px;
    overflow: hidden;
    font-family: "Segoe UI", system-ui, sans-serif;
  }

  .st-hire-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 15% 50%, rgba(5, 121, 184, 0.06), transparent 40%),
      radial-gradient(circle at 85% 50%, rgba(55, 150, 77, 0.06), transparent 40%),
      linear-gradient(180deg, #f8fafc 0%, #eef2f6 100%);
    pointer-events: none;
  }

  .st-hire-wrap {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
  }

  .st-hire-banner {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #041a12 0%, #062818 35%, #041e30 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 56px rgba(5, 121, 184, 0.18);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 40px 44px;
    min-height: 220px;
  }

  /* Grid texture */
  .st-hire-banner::before {
    content: "";
    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: 40px 40px;
    pointer-events: none;
  }

  /* Color wash */
  .st-hire-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      120deg,
      rgba(5, 121, 184, 0.22) 0%,
      transparent 40%,
      rgba(55, 150, 77, 0.18) 70%,
      rgba(191, 178, 130, 0.10) 100%
    );
    pointer-events: none;
  }

  .st-hire-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
  }

  .st-hire-orb--1 {
    width: 280px;
    height: 280px;
    top: -100px;
    right: 10%;
    background: rgba(5, 121, 184, 0.28);
  }

  .st-hire-orb--2 {
    width: 220px;
    height: 220px;
    bottom: -80px;
    left: 5%;
    background: rgba(55, 150, 77, 0.22);
  }

  .st-hire-content {
    position: relative;
    z-index: 2;
    min-width: 0;
  }

  .st-hire-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 16px;
  }

  .st-hire-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--hire-green);
    box-shadow: 0 0 10px rgba(55, 150, 77, 0.8);
    animation: hireBlink 2s ease-in-out infinite;
  }

  @keyframes hireBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(1.5); }
  }

  .st-hire-title {
    font-size: clamp(1.65rem, 3.8vw, 2.35rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
  }

  .st-hire-title .hire-blue { color: #91c4e0; }
  .st-hire-title .hire-green { color: #6cba7f; }

  .st-hire-desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 20px;
  }

  .st-hire-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .st-hire-perk {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 13px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
  }

  .st-hire-perk i { font-size: 12px; }
  .st-hire-perk--b i { color: #91c4e0; }
  .st-hire-perk--g i { color: #6cba7f; }
  .st-hire-perk--y i { color: var(--hire-gold); }

  /* Right side — CTA block */
  .st-hire-action {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
  }

  .st-hire-icon-ring {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    position: relative;
  }

  .st-hire-icon-ring::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(55, 150, 77, 0.45);
    animation: hireRing 2.4s ease-out infinite;
  }

  @keyframes hireRing {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.35); opacity: 0; }
  }

  .st-hire-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, var(--hire-blue) 0%, #034f7a 100%);
    box-shadow: 0 8px 28px rgba(5, 121, 184, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.25s, box-shadow 0.25s, gap 0.25s;
    white-space: nowrap;
  }

  .st-hire-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(5, 121, 184, 0.55);
    gap: 13px;
  }

  .st-hire-btn i {
    font-size: 16px;
    transition: transform 0.25s;
  }

  .st-hire-btn:hover i { transform: translateX(3px); }

  .st-hire-note {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    letter-spacing: 0.3px;
  }

  /* Bottom accent line */
  .st-hire-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 3;
    background: linear-gradient(
      90deg,
      transparent,
      var(--hire-blue) 20%,
      var(--hire-green) 50%,
      var(--hire-gold) 80%,
      transparent
    );
  }

  @media (max-width: 768px) {
    .st-hire-section { padding: 40px 16px; }
    .st-hire-banner {
      grid-template-columns: 1fr;
      text-align: center;
      padding: 32px 24px 36px;
      gap: 24px;
    }
    .st-hire-desc { margin-left: auto; margin-right: auto; }
    .st-hire-perks { justify-content: center; }
    .st-hire-btn { width: 100%; max-width: 300px; }
  }
/* css end here */