/* ═══════════════════════════════════════════
   ISO CERTIFICATION PAGE — Deep Indigo / Gold
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ── VARIABLES ── */
:root {
  --iso-primary:   #1e1b4b;   /* deep indigo */
  --iso-mid:       #312e81;
  --iso-accent:    #f59e0b;   /* gold amber */
  --iso-accent2:   #fbbf24;
  --iso-light:     #eef2ff;
  --iso-text:      #1e1b4b;
  --iso-muted:     #6b7280;
  --iso-white:     #ffffff;
  --iso-surface:   #f8f7ff;
  --iso-border:    #e0e7ff;
  --iso-gold-bg:   #fffbeb;
  --iso-gold-bdr:  #fde68a;
  --radius-lg:     18px;
  --radius-md:     12px;
  --radius-sm:     8px;
  --shadow-card:   0 4px 24px rgba(30,27,75,.10);
  --shadow-hover:  0 12px 40px rgba(30,27,75,.18);
}

.iso-page * { box-sizing: border-box; margin: 0; padding: 0; }
.iso-page { font-family: 'DM Sans', sans-serif; color: var(--iso-text); background: #fafafa; }
.iso-page a { text-decoration: none; }
.iso-page ul { list-style: none; }

/* ── HERO ── */
.iso-hero {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 45%, #1e3a8a 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 20px 90px;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.iso-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 70% 50%, rgba(245,158,11,.15) 0%, transparent 70%),
              radial-gradient(circle at 10% 20%, rgba(99,102,241,.25) 0%, transparent 50%);
}
.iso-hero-ring {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(245,158,11,.15);
  right: -120px; top: -140px;
  pointer-events: none;
}
.iso-hero-ring2 {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(245,158,11,.10);
  left: -80px; bottom: -100px;
  pointer-events: none;
}
/* floating dots */
.iso-hero::after {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  background: rgba(245,158,11,.5);
  border-radius: 50%;
  top: 30%; left: 45%;
  box-shadow: 80px 40px 0 rgba(245,158,11,.3), -60px 80px 0 rgba(99,102,241,.4),
              140px -30px 0 rgba(245,158,11,.2), -120px -50px 0 rgba(255,255,255,.15);
}
.iso-hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.iso-hero-text { flex: 1; min-width: 280px; }
.iso-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,.18);
  border: 1px solid rgba(245,158,11,.35);
  color: #fbbf24;
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 22px;
}
.iso-hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 60px);
  color: var(--iso-white);
  line-height: 1.12;
  margin-bottom: 18px;
  font-weight: 800;
}
.hl-gold { color: #fbbf24; }
.hl-indigo { color: #a5b4fc; }
.iso-sub {
  color: rgba(255,255,255,.75);
  font-size: 16px;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 32px;
}
.iso-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .25s;
  box-shadow: 0 6px 20px rgba(245,158,11,.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(245,158,11,.45); color:#fff; }
.btn-outline-gold {
  border: 1.5px solid rgba(251,191,36,.45);
  color: #fbbf24;
  background: transparent;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .25s;
}
.btn-outline-gold:hover { background: rgba(251,191,36,.12); border-color: #fbbf24; }

/* hero card */
.iso-hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 340px;
  flex-shrink: 0;
}
.hc-title {
  color: rgba(255,255,255,.6);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.iso-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 22px; }
.iso-stat {
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  text-align: center;
}
.iso-stat-num { font-size: 22px; font-weight: 800; line-height: 1; margin-bottom: 5px; }
.iso-stat-num.cg { color: #fbbf24; }
.iso-stat-num.cb { color: #a5b4fc; }
.iso-stat-num.co { color: #6ee7b7; }
.iso-stat-num.cn { color: #f9a8d4; }
.iso-stat-lbl { color: rgba(255,255,255,.55); font-size: 11px; font-weight: 500; }
.iso-hero-tag {
  background: rgba(245,158,11,.14);
  border: 1px solid rgba(245,158,11,.3);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ht-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg,#f59e0b,#d97706);
  border-radius: 10px;
  display: grid; place-items: center;
  color: #fff; font-size: 16px;
  flex-shrink: 0;
}
.ht-label { color: #fff; font-size: 13px; font-weight: 700; }
.ht-sub { color: rgba(255,255,255,.5); font-size: 11px; margin-top: 2px; }

/* ── BREADCRUMB ── */
.iso-breadcrumb {
  background: var(--iso-white);
  border-bottom: 1px solid var(--iso-border);
  padding: 12px 20px;
}
.bc-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--iso-muted);
}
.bc-inner a { color: var(--iso-mid); font-weight: 600; }
.bc-inner a:hover { color: var(--iso-accent); }
.bc-inner i { font-size: 10px; color: var(--iso-muted); }

/* ── ABOUT SECTION ── */
.iso-about {
  background: var(--iso-white);
  padding: 64px 20px;
}
.abt-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.iso-about-text { flex: 1; min-width: 280px; }
.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--iso-gold-bg);
  border: 1px solid var(--iso-gold-bdr);
  color: #92400e;
  border-radius: 30px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 16px;
}
.iso-about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--iso-primary);
  margin-bottom: 14px;
  font-weight: 800;
}
.iso-about-text h2 span { color: var(--iso-mid); }
.iso-hl {
  width: 52px; height: 4px;
  background: linear-gradient(90deg, #f59e0b, #d97706);
  border-radius: 3px;
  margin-bottom: 20px;
}
.iso-about-text p {
  color: #374151;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 14px;
}

/* contact card */
.iso-contact-card {
  background: var(--iso-white);
  border: 1px solid var(--iso-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  width: 320px;
  flex-shrink: 0;
  box-shadow: var(--shadow-card);
}
.cc-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--iso-border);
}
.cc-icon-gold {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 12px;
  display: grid; place-items: center;
  color: #fff; font-size: 20px;
  flex-shrink: 0;
}
.cc-head h3 { font-size: 17px; color: var(--iso-primary); font-weight: 700; margin-bottom: 3px; }
.cc-head p { font-size: 12px; color: var(--iso-muted); }
.iso-ci {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  text-decoration: none;
  transition: background .2s;
  border: 1px solid transparent;
}
.iso-ci:hover { background: var(--iso-surface); border-color: var(--iso-border); }
.ci-ic {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 16px;
  flex-shrink: 0;
}
.ci-ic.mail { background: #eff6ff; color: #3b82f6; }
.ci-ic.phone { background: #f0fdf4; color: #16a34a; }
.ci-lbl { font-size: 11px; color: var(--iso-muted); font-weight: 500; margin-bottom: 2px; }
.ci-val { font-size: 14px; color: var(--iso-primary); font-weight: 700; }
.iso-cc-note {
  margin-top: 18px;
  background: var(--iso-gold-bg);
  border: 1px solid var(--iso-gold-bdr);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-size: 13px;
  color: #92400e;
  text-align: center;
  line-height: 1.5;
}
.iso-cc-note span { font-weight: 700; }

/* ── CONTENT SECTION ── */
.iso-content-section {
  background: var(--iso-surface);
  padding: 64px 20px;
}
.iso-content-inner { max-width: 1200px; margin: 0 auto; }
.iso-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media(max-width:760px){ .iso-content-grid { grid-template-columns: 1fr; } }
.iso-content-block {
  background: var(--iso-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--iso-border);
}
.iso-content-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--iso-primary);
  margin-bottom: 14px;
  font-weight: 800;
}
.iso-content-block h4 {
  font-size: 15px;
  color: var(--iso-mid);
  margin: 18px 0 8px;
  font-weight: 700;
}
.iso-content-block p { color: #374151; font-size: 14.5px; line-height: 1.75; margin-bottom: 10px; }
.iso-content-block ul { margin: 10px 0 14px; padding-left: 4px; }
.iso-content-block ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: #374151;
  margin-bottom: 9px;
  line-height: 1.5;
}
.iso-content-block ul li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: #f0fdf4;
  color: #16a34a;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.iso-highlight-box {
  background: var(--iso-gold-bg);
  border: 1px solid var(--iso-gold-bdr);
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-top: 16px;
}
.iso-highlight-box p { color: #78350f; font-size: 14px; margin: 0; }

/* ── WHO CAN APPLY SECTION ── */
.iso-who { background: var(--iso-white); padding: 64px 20px; }
.iso-who-inner { max-width: 1200px; margin: 0 auto; }
.iso-sec-head { text-align: center; margin-bottom: 44px; }
.sh-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 14px;
}
.iso-sec-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 38px);
  color: var(--iso-primary);
  margin-bottom: 12px;
  font-weight: 800;
}
.iso-sec-head h2 span { color: var(--iso-mid); }
.iso-sec-head p { color: var(--iso-muted); font-size: 15px; max-width: 560px; margin: 0 auto; }

.iso-who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.iso-who-card {
  background: var(--iso-surface);
  border: 1px solid var(--iso-border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all .25s;
}
.iso-who-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: #c7d2fe; }
.wc-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--iso-primary), var(--iso-mid));
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 22px;
  color: #fbbf24;
  margin: 0 auto 14px;
}
.iso-who-card h4 { font-size: 14px; color: var(--iso-primary); font-weight: 700; }

/* ── SERVICES GRID ── */
.iso-services { background: var(--iso-surface); padding: 64px 20px; }
.iso-srv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 22px;
}
.iso-srv-card {
  background: var(--iso-white);
  border: 1px solid var(--iso-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .28s;
  box-shadow: var(--shadow-card);
}
.iso-srv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.iso-srv-img-wrap {
  position: relative;
  overflow: hidden;
  height: 150px;
  background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
}
.iso-srv-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}
.iso-srv-card:hover .iso-srv-img-wrap img { transform: scale(1.06); }
.iso-srv-num {
  position: absolute;
  top: 10px; left: 10px;
  background: linear-gradient(135deg,#1e1b4b,#312e81);
  color: #fbbf24;
  font-size: 11px; font-weight: 800;
  padding: 3px 9px;
  border-radius: 20px;
  z-index: 2;
}
.iso-srv-overlay {
  position: absolute; inset: 0;
  background: rgba(30,27,75,.65);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s;
}
.iso-srv-card:hover .iso-srv-overlay { opacity: 1; }
.iso-srv-overlay a {
  color: #fbbf24;
  font-weight: 700; font-size: 13px;
  display: flex; align-items: center; gap: 7px;
}
.iso-srv-body { padding: 18px; }
.iso-srv-body h4 { font-size: 14px; color: var(--iso-primary); font-weight: 700; margin-bottom: 14px; line-height: 1.4; }
.iso-srv-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--iso-primary), var(--iso-mid));
  color: var(--iso-white);
  padding: 9px 18px;
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 700;
  transition: all .2s;
}
.iso-srv-apply-btn:hover { background: linear-gradient(135deg,#f59e0b,#d97706); color:#fff; }

/* ── CTA ── */
.iso-cta {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e3a8a 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.iso-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(245,158,11,.12) 0%, transparent 70%);
}
.iso-cta > .container { position: relative; max-width: 700px; margin: 0 auto; }
.cta-icon {
  width: 72px; height: 72px;
  background: rgba(245,158,11,.2);
  border: 2px solid rgba(245,158,11,.4);
  border-radius: 20px;
  display: grid; place-items: center;
  font-size: 30px; color: #fbbf24;
  margin: 0 auto 24px;
}
.iso-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 40px);
  color: #fff;
  margin-bottom: 16px;
  font-weight: 800;
}
.iso-cta h2 span { color: #fbbf24; }
.iso-cta p { color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.7; margin-bottom: 34px; max-width: 560px; margin-left: auto; margin-right: auto; }
.iso-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── BENEFITS STRIP ── */
.iso-benefits { background: linear-gradient(90deg, #1e1b4b, #312e81, #1e3a8a); padding: 28px 20px; }
.iso-benefits-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 32px;
}
.iso-bene-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.8); font-size: 13px; font-weight: 600;
}
.iso-bene-item i { color: #fbbf24; font-size: 16px; }

/* ── RESPONSIVE ── */
@media(max-width:900px){
  .iso-hero-card { width: 100%; }
  .abt-inner { flex-direction: column; }
  .iso-contact-card { width: 100%; }
}
@media(max-width:600px){
  .iso-hero { padding: 60px 16px 70px; }
  .iso-about, .iso-content-section, .iso-who, .iso-services { padding: 44px 16px; }
}