

/* ── Hero banner ── */
.uss {
  width: 100%;
  overflow: hidden;
  display: block;
  line-height: 0;
  height: 650px;
}
.uss img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Page banner ── */
.page-banner { background: #f5f5f5; text-align: center; padding: 40px 20px 20px; }
.page-banner h1 { font-size: 2rem; font-weight: 600; letter-spacing: 2px; color: #333; text-transform: uppercase; margin-bottom: 20px; }
.breadcrumb { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1px solid #ddd; border-radius: 4px; padding: 6px 18px; font-size: 0.9rem; color: #555; margin-bottom: 10px; }
.breadcrumb a { color: #555; text-decoration: none; }
.breadcrumb span { color: #999; }

/* ── Section heading ── */
.section-heading-wrap { display: flex; align-items: center; width: 100%; margin-bottom: 36px; overflow: hidden; }
.section-heading-wrap .line { flex: 1; height: 1px; background: #ccc; }
.section-heading-wrap .title-box { display: flex; align-items: center; gap: 12px; padding: 0 18px; white-space: nowrap; }
.section-heading-wrap .title-box h2 { font-size: 1.4rem; font-weight: 700; letter-spacing: 2px; color: #333; text-transform: uppercase; }

.title-decorator { width: 28px; height: 15px; background: #2a7db5; position: relative; display: inline-block; flex-shrink: 0; }
.title-decorator::before { content: ''; position: absolute; top: 50%; transform: translateY(-50%); width: 8px; height: 8px; background: #fff; border: 2px solid #2a7db5; }
.title-decorator.left::before  { right: -5px; }
.title-decorator.right::before { left: -5px; }

/* ── Animations ── */
@keyframes slideFromRight {
  0%   { transform: translateX(80px); opacity: 0; }
  100% { transform: translateX(0);    opacity: 1; }
}

.about-heading-anim { animation: slideFromRight 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; }

.values-heading-anim { opacity: 0; }
.values-heading-anim.animate { animation: slideFromRight 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }

/* ── About section ── */
.about-section { max-width: 1200px; margin: 0 auto; padding: 40px 30px 60px; }
.about-body p { font-size: 0.97rem; line-height: 1.85; color: #333; text-align: justify; margin-bottom: 20px; }
.about-body p strong { font-weight: 700; }

.vision-mission { margin-top: 40px; text-align: center; }
.vm-block { margin-bottom: 30px; }
.vm-block h3 { font-size: 1.1rem; font-weight: 700; color: #333; margin-bottom: 10px; }
.vm-block p { font-size: 0.95rem; color: #444; line-height: 1.75; max-width: 800px; margin: 0 auto; }

/* ── Values section ── */
.values-section { max-width: 1200px; margin: 0 auto; padding: 10px 30px 40px; }
.values-body { text-align: center; margin-top: 20px; }
.values-tagline { font-size: 0.97rem; margin-bottom: 12px; color: #333; }
.values-body p { font-size: 0.95rem; line-height: 1.85; color: #444; max-width: 900px; margin: 0 auto; }

/* ── Values cards ── */
.values-cards-section { background: #f5f5f5; padding: 50px 30px 60px; overflow: hidden; }
.values-cards-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.value-card { text-align: center; }
.value-card h3 { font-size: 1.2rem; font-weight: 700; color: #333; margin-bottom: 16px; }
.value-card p { font-size: 0.92rem; line-height: 1.8; color: #444; margin-bottom: 22px; }

@keyframes imgSlideFromRight {
  0%   { transform: translateX(80px); opacity: 0; }
  100% { transform: translateX(0);    opacity: 1; }
}

.value-card-img { width: 100%; height: 220px; object-fit: cover; border: 1px solid #ddd; display: block; opacity: 0; }
.value-card-img.animate { animation: imgSlideFromRight 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }

/* ── Bullet section ── */
.bullet-section { max-width: 1200px; margin: 0 auto; padding: 40px 30px 50px; background: #fff; }
.bullet-section ul { list-style: none; padding: 0; margin: 0; }
.bullet-section ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.97rem; color: #333; line-height: 1.7; padding: 5px 0; }
.bullet-section ul li::before { content: ''; min-width: 7px; height: 7px; background: #555; border-radius: 50%; margin-top: 8px; flex-shrink: 0; display: inline-block; }

.bottom-divider { border: none; border-top: 1px solid #ddd; margin: 0 30px; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */

@media (max-width: 1024px) {
  .values-cards-grid    { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .about-section        { padding: 32px 20px 48px; }
  .values-section       { padding: 10px 20px 32px; }
  .values-cards-section { padding: 40px 20px 50px; }
  .bullet-section       { padding: 32px 20px 40px; }
}

@media (max-width: 768px) {
  /* ── Hero FIX ── */
  .uss {
    height: 50vw;
    min-height: 220px;
    max-height: 380px;
  }

  .page-banner              { padding: 28px 16px 16px; }
  .page-banner h1           { font-size: 1.4rem; letter-spacing: 1px; margin-bottom: 14px; }
  .breadcrumb               { font-size: 0.8rem; padding: 5px 14px; flex-wrap: wrap; justify-content: center; }
  .section-heading-wrap     { margin-bottom: 24px; }
  .section-heading-wrap .title-box { padding: 0 10px; }
  .section-heading-wrap .title-box h2 { font-size: 1.1rem; letter-spacing: 1px; }
  .title-decorator          { width: 20px; height: 11px; }
  .about-section            { padding: 28px 16px 40px; }
  .about-body p             { font-size: 0.93rem; line-height: 1.75; }
  .vm-block h3              { font-size: 1rem; }
  .vm-block p               { font-size: 0.9rem; }
  .values-section           { padding: 10px 16px 28px; }
  .values-body p            { font-size: 0.9rem; }
  .values-cards-section     { padding: 32px 16px 40px; }
  .values-cards-grid        { grid-template-columns: 1fr; gap: 32px; }
  .value-card-img           { height: 200px; }
  .value-card h3            { font-size: 1.1rem; }
  .value-card p             { font-size: 0.88rem; }
  .bullet-section           { padding: 28px 16px 36px; }
  .bullet-section ul li     { font-size: 0.9rem; }
  .bottom-divider           { margin: 0 16px; }
  .vision-mission           { margin-top: 28px; }
}

@media (max-width: 480px) {
  .page-banner h1           { font-size: 1.2rem; }
  .section-heading-wrap .title-box h2 { font-size: 0.95rem; }
  .section-heading-wrap .title-box { gap: 8px; }
  .about-body p             { font-size: 0.9rem; text-align: left; }
  .vm-block p               { font-size: 0.88rem; }
  .values-body p            { font-size: 0.88rem; }
  .value-card h3            { font-size: 1rem; }
  .value-card p             { font-size: 0.85rem; }
  .bullet-section ul li     { font-size: 0.88rem; gap: 8px; }
}