:root {
  --blue-900: #0a2540;
  --blue-700: #0b5ed7;
  --blue-600: #0e4aa0;
  --blue-500: #1c6de5;
  --gold-500: #f5a623;
  --gray-100: #f4f7fb;
  --gray-200: #dce4ee;
  --gray-500: #5c6f83;
  --text-900: #0d1b2a;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(10, 37, 64, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', 'Roboto', sans-serif;
  color: var(--text-900);
  background: linear-gradient(180deg, #f9fbff 0%, #f2f6fc 100%);
  line-height: 1.6;
}

body {
  background-image: radial-gradient(1200px 500px at 10% -20%, rgba(11, 94, 215, 0.08), transparent 60%),
                    radial-gradient(900px 420px at 90% -10%, rgba(245, 166, 35, 0.08), transparent 60%);
}

body.page-home {
  background: radial-gradient(900px 400px at 10% -10%, rgba(11, 94, 215, 0.18), transparent 70%),
              radial-gradient(600px 300px at 90% 10%, rgba(245, 166, 35, 0.18), transparent 60%),
              linear-gradient(180deg, #f8fbff 0%, #edf3fb 100%);
}
body.page-home .hero-landing {
  background: linear-gradient(180deg, rgba(10, 37, 64, 0.7), rgba(10, 37, 64, 0.05));
  padding-top: 0;
}

body.page-home .landing-hero {
  position: relative;
  margin-top: 0;
  padding: 0;
  background: linear-gradient(120deg, rgba(11, 94, 215, 0.35), rgba(10, 37, 64, 0.6));
  border-radius: 0 0 32px 32px;
  overflow: hidden;
}

body.page-home .landing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(10, 37, 64, 0.55), rgba(10, 37, 64, 0.2)),
    url('../images/slide-1.jpg');
  background-size: cover;
  background-position: center;
  filter: saturate(1.1);
  z-index: 0;
}

body.page-home .landing-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 20%, rgba(245, 166, 35, 0.45), transparent 35%),
                    radial-gradient(circle at 80% 10%, rgba(11, 94, 215, 0.45), transparent 40%);
  opacity: 0.8;
  z-index: 1;
  mix-blend-mode: screen;
}

body.page-home .landing-hero .hero-slider {
  position: relative;
  z-index: 2;
  padding: 3.5rem 0 2.8rem;
}

body.page-home .landing-hero .hero-slide {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(6, 20, 40, 0.35);
}

body.page-home .landing-hero .hero-slide .slide-content {
  backdrop-filter: blur(6px);
  background: rgba(7, 18, 36, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  animation: slideGlow 6s ease-in-out infinite;
}

@keyframes slideGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(255, 255, 255, 0); }
  50% { box-shadow: 0 0 30px rgba(245, 166, 35, 0.35); }
}

body.page-home .hero-grid {
  margin-top: -1.5rem;
  position: relative;
  z-index: 3;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-strip {
  background: var(--blue-900);
  color: #b7c7db;
  font-size: 0.86rem;
}

.top-strip .container {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0;
  gap: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--gray-200);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--blue-900);
}

.brand-logo {
  height: 34px;
  width: auto;
}

.footer-logo {
  height: 80px;
  width: auto;
}

.brand-mark {
  width: 32px;
  height: 32px;
  position: relative;
  
  background-image: url(../images/daiki_lanka_logo.jpg);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  border-radius: 2px;
}

.brand-mark::after {
  content: '';
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-500);
  left: 4px;
  bottom: 7px;
  box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.2);
}

.nav {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-trigger::after {
  content: '▾';
  margin-left: .35rem;
  font-size: .72rem;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 180px;
  background: var(--white);
  border: 1px solid #d8e5f5;
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(10, 37, 64, 0.14);
  padding: .45rem;
  display: none;
}

.dropdown-menu a {
  display: block;
  padding: .45rem .55rem;
  border-radius: 8px;
  border-bottom: 0;
}

.dropdown-menu a:hover {
  background: #edf4ff;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  display: block;
}

.nav a {
  font-size: 0.94rem;
  color: #1b3550;
  padding: 0.35rem 0.2rem;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--blue-700);
  border-color: var(--blue-700);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.lang-switch {
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 0.22rem;
  display: inline-flex;
  font-size: .83rem;
  background: var(--white);
}

.lang-switch span {
  padding: .2rem .6rem;
}

.lang-switch .active {
  background: var(--blue-900);
  color: var(--white);
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: .72rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--blue-700), var(--blue-600));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(11, 94, 215, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 14px 30px rgba(11, 94, 215, 0.45);
}

.btn-outline {
  border: 1px solid #a9bfdb;
  background: rgba(255,255,255,.85);
  color: var(--blue-900);
}

.btn-whatsapp {
  background: #1f7a3a;
  color: #fff;
  border: 1px solid #1f7a3a;
  box-shadow: 0 8px 18px rgba(31, 122, 58, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(31, 122, 58, 0.45);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--blue-900);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 0 0 4rem;
  background: radial-gradient(1200px 380px at 15% 0%, #d9e8ff 0%, rgba(217, 232, 255, 0) 70%),
              linear-gradient(135deg, #f9fbff, #eef4fd);
}

body.page-home .hero {
  background: radial-gradient(900px 420px at 10% -10%, rgba(11, 94, 215, 0.25), transparent 65%),
              radial-gradient(800px 420px at 90% 0%, rgba(245, 166, 35, 0.18), transparent 70%),
              linear-gradient(140deg, #f5f9ff, #e8f1ff);
}

body.page-home .hero::after {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 20% 20%, rgba(11, 94, 215, 0.18), transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(245, 166, 35, 0.2), transparent 60%);
  animation: heroGlow 14s ease-in-out infinite;
  pointer-events: none;
}

.hero-full {
  margin-top: -1px;
  margin-bottom: 1.6rem;
}

.hero-full .hero-slider {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  box-shadow: none;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.hero-full .hero-slide {
  min-height: 520px;
}

.hero-full .slide-media {
  background: #0a2540;
  padding: 0;
}

.hero-full .slide-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid #d7e3f3;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.hero-slide {
  display: none;
  padding: 0;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}

.hero-slide.active {
  display: block;
  animation: slideFade .8s ease;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8, 25, 45, 0.60s), rgba(8, 25, 45, 0.42));
}

.hero-slide .slide-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 3.5rem 3rem;
  animation: slideLift .9s ease;
}

.hero-slide h2 {
  margin-bottom: .4rem;
  color: #fff;
}

.hero-slide p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}

.hero-slide .slide-tag {
  display: inline-flex;
  padding: .3rem .7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: .6rem;
}

.hero-slide .slide-media {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #dbe7f5;
  background: linear-gradient(150deg, #0a2540, #0b5ed7);
  color: #fff;
  
  min-height: 180px;
  display: grid;
  align-content: center;
  gap: .6rem;
}

.hero-slide .slide-media strong {
  font-size: 1.1rem;
}

.hero-controls {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  gap: .4rem;
  z-index: 2;
}

.hero-dot {
  width: 28px;
  height: 4px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  border: 0;
}

.hero-dot.active {
  background: #fff;
}

.hero::before {
  content: '';
  position: absolute;
  right: -120px;
  top: -60px;
  width: 360px;
  height: 360px;
  background: linear-gradient(170deg, rgba(11, 94, 215, .18), rgba(11, 94, 215, 0));
  border-radius: 50%;
}

@keyframes slideFade {
  from { opacity: 0; transform: scale(1.01); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideLift {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroGlow {
  0% { transform: translate(0, 0); opacity: .7; }
  50% { transform: translate(-3%, 2%); opacity: 1; }
  100% { transform: translate(0, 0); opacity: .7; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.2rem;
  align-items: center;
}

.kicker {
  display: inline-flex;
  padding: .35rem .8rem;
  border-radius: 999px;
  background: #e9f1ff;
  color: var(--blue-700);
  font-weight: 600;
  font-size: .82rem;
}

h1, h2, h3 {
  font-family: 'Poppins', 'Montserrat', sans-serif;
  line-height: 1.2;
  margin: 0 0 .6rem;
  color: var(--blue-900);
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }

.hero p {
  /* color: #38506b; */
  max-width: 52ch;
}

.button-row {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid #d7e3f3;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

body.page-home .hero-card {
  background: linear-gradient(160deg, #ffffff 0%, #f0f5ff 100%);
  border-color: rgba(11, 94, 215, 0.2);
  transition: transform .2s ease, box-shadow .2s ease;
}

body.page-home .hero-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(10, 37, 64, 0.2);
}

.hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #cfdff4;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .8rem;
  margin-top: 1.1rem;
}

.stat {
  background: var(--white);
  border: 1px solid #dbe7f5;
  border-radius: 12px;
  padding: .9rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.15rem;
  color: var(--blue-700);
}

.section {
  padding: 4rem 0;
}

body.page-services_education .section {
  padding: 3rem 0;
}

body.page-services_education .section-head {
  margin-bottom: 1rem;
}

body.page-services_education .grid-2 {
  gap: .9rem;
}

body.page-services_education .card {
  padding: 1rem;
}

body.page-services_education .highlight {
  padding: 1.1rem;
}

body.page-services_education .media-card {
  border-color: rgba(11, 94, 215, 0.2);
}

body.page-services_education .hero-note {
  background: linear-gradient(140deg, rgba(11, 94, 215, 0.12), rgba(245, 166, 35, 0.12));
  border-radius: 12px;
  padding: .8rem 1rem;
}

body.page-services_hr .section-head h1,
body.page-services_hr .section-head h2 {
  color: var(--blue-900);
}

body.page-services_hr .highlight {
  background: linear-gradient(135deg, #0a2540 0%, #0b5ed7 100%);
  color: #f3f7ff;
}

body.page-services_hr .highlight p {
  color: #e6f0ff;
}

body.page-services_hr .media-placeholder {
  color: #1b3550;
}

body.page-services_hr .card {
  background: #ffffff;
  border-color: rgba(11, 94, 215, 0.18);
  box-shadow: 0 12px 26px rgba(10, 37, 64, 0.12);
}

body.page-services_hr .card:hover {
  box-shadow: 0 20px 44px rgba(10, 37, 64, 0.18);
}

body.page-services_hr .stat-card {
  background: linear-gradient(160deg, #f7faff 0%, #e9f2ff 100%);
  border-color: rgba(11, 94, 215, 0.22);
}

body.page-services_hr .stat-card strong {
  color: var(--blue-900);
}

body.page-services_hr .btn-primary {
  box-shadow: 0 12px 26px rgba(11, 94, 215, 0.45);
}

body.page-services_hr .btn-primary:hover {
  transform: translateY(-2px);
}

.hiroshima-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(120deg, rgba(10, 37, 64, 0.92), rgba(10, 37, 64, 0.5)),
              url('../images/weltch.jpeg');
  background-size: cover;
  background-position: center;
}

.hiroshima-hero .section-head h1,
.hiroshima-hero .section-head p {
  color: #fff;
}

.hiroshima-hero .highlight,
.hiroshima-hero .card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.hiroshima-hero .checks li::before {
  color: var(--gold-500);
}

.tokyo-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(120deg, rgba(10, 37, 64, 0.92), rgba(10, 37, 64, 0.5)),
              url('../images/tokiyo.jpeg');
  background-size: cover;
  background-position: center;
}

.tokyo-hero .section-head h1,
.tokyo-hero .section-head p {
  color: #fff;
}

.tokyo-hero .highlight,
.tokyo-hero .card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.tokyo-hero .checks li::before {
  color: var(--gold-500);
}

.contact-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(120deg, rgba(10, 37, 64, 0.88), rgba(10, 37, 64, 0.45)),
              url('../images/lanka_building_m.jpg');
  background-size: cover;
  background-position: center;
}

.contact-hero .section-head h1,
.contact-hero .section-head p {
  color: #fff;
}

.contact-hero .card {
  background: #ffffff;
  border-color: rgba(10, 37, 64, 0.15);
  color: #0d1b2a;
}

.visa-hero {
  background: radial-gradient(800px 360px at 10% -10%, rgba(11, 94, 215, 0.18), transparent 60%),
              linear-gradient(140deg, #f6f9ff, #e7f1ff);
}

.visa-dark {
  background: linear-gradient(130deg, #0a2540 0%, #0d2f57 100%);
  color: #0d1b2a;
}

.visa-dark .section-head h2 {
  color: #0d1b2a;
}

.visa-dark .card {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(10, 37, 64, 0.15);
}

.visa-dark .checks li::before {
  color: var(--gold-500);
}

.study-japan {
  position: relative;
  overflow: hidden;
}

.study-japan::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 37, 64, 0.85), rgba(10, 37, 64, 0.4)),
              url('../images/study_parth.png');
  background-size: cover;
  background-position: center;
  opacity: 0.95;
}

.study-japan .container {
  position: relative;
  z-index: 1;
}

.study-japan .section-head h2,
.study-japan .section-head p,
.study-japan .timeline li,
.study-japan .card {
  color: #fff;
}

.study-japan .timeline li {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.study-japan .card {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.tuition-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, rgba(10, 37, 64, 0.88), rgba(10, 37, 64, 0.45)),
              url('../images/scoller.png');
  background-size: cover;
  background-position: center;
  color: #fff;
}

.tuition-hero .section-head h1,
.tuition-hero .section-head p {
  color: #fff;
}

.tuition-note {
  background: rgba(245, 166, 35, 0.12);
  border-left: 4px solid var(--gold-500);
  padding: .7rem 1rem;
  border-radius: 10px;
}

.scholarship-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.scholarship-card {
  background: linear-gradient(150deg, #0a2540 0%, #0b5ed7 100%);
  color: #fff;
  padding: 1.2rem;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(10, 37, 64, 0.25);
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}

.scholarship-card h3 {
  color: #fff;
}

.scholarship-card strong {
  display: block;
  font-size: 1.3rem;
  margin-top: .4rem;
  color: var(--gold-500);
}

.scholarship-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(10, 37, 64, 0.3);
}

.scholarship-award {
  border-color: rgba(11, 94, 215, 0.2);
  box-shadow: 0 16px 34px rgba(10, 37, 64, 0.2);
}

.scholarship-award img {
  filter: saturate(1.05);
}

.recipient-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.recipient-card {
  background: #fff;
  border: 1px solid #d8e5f5;
  border-radius: 14px;
  padding: .9rem;
  text-align: center;
  box-shadow: 0 10px 24px rgba(10, 37, 64, 0.1);
}

.recipient-photo {
  width: 100%;
  min-height: 140px;
  border-radius: 10px;
  background: repeating-linear-gradient(135deg, #f2f6fc, #f2f6fc 12px, #e9f1fb 12px, #e9f1fb 24px);
  display: grid;
  place-items: center;
  font-weight: 600;
  color: #3e566f;
  margin-bottom: .6rem;
}

@media (max-width: 1024px) {
  .recipient-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 780px) {
  .scholarship-grid { grid-template-columns: 1fr; }
  .recipient-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 460px) {
  .recipient-grid { grid-template-columns: 1fr; }
}

.section-stack {
  display: grid;
  gap: 1.8rem;
}

.section-alt {
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  border-block: 1px solid #e3edf9;
}

.section-head {
  max-width: 66ch;
  margin-bottom: 1.5rem;
}

.section-head h2,
.section-head h4 {
  position: relative;
  display: inline-block;
}

.section-head h2::after,
.section-head h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 46px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-700), var(--gold-500));
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.pathway-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 260px;
  background: #0a2540;
  color: #fff;
  box-shadow: 0 18px 40px rgba(10, 37, 64, 0.2);
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(0);
  transition: transform .2s ease, box-shadow .2s ease;
  will-change: transform;
}

.pathway-card:hover {
  box-shadow: 0 26px 52px rgba(10, 37, 64, 0.28);
}

.pathway-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .75;
}

.pathway-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(6, 18, 32, 0.88), rgba(6, 18, 32, 0.35));
}

.pathway-card .pathway-content {
  position: relative;
  z-index: 1;
  padding: 1.4rem;
  display: grid;
  gap: .5rem;
}

.pathway-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 700;
}

.pathway-card h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: .2rem;
}

.pathway-card p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.card {
  background: var(--white);
  border: 1px solid #d8e5f5;
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: 0 6px 20px rgba(12, 44, 77, 0.08);
}

.card {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(10, 37, 64, 0.16);
  border-color: rgba(11, 94, 215, 0.25);
}

body.page-home .card {
  transition: transform .2s ease, box-shadow .2s ease;
}

body.page-home .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(10, 37, 64, 0.16);
}

body.page-home .section-head h2 {
  position: relative;
  display: inline-block;
}

body.page-home .section-head h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 48px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-700), var(--gold-500));
}

body.page-home .btn-primary {
  box-shadow: 0 12px 26px rgba(11, 94, 215, 0.45);
}

body.page-home .btn-primary:hover {
  transform: translateY(-2px);
}

.home-summary {
  background: linear-gradient(180deg, rgba(11, 94, 215, 0.14), rgba(245, 166, 35, 0.12));
}

.feature-tiles {
  position: relative;
  background: radial-gradient(circle at top left, rgba(11, 78, 162, 0.12), transparent 55%);
}

.feature-tiles .feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.feature-tiles .feature-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(11, 78, 162, 0.12);
  box-shadow: 0 14px 30px rgba(10, 37, 64, 0.12);
  transition: transform .25s ease, box-shadow .25s ease, opacity .35s ease;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(16px);
  position: relative;
}

.feature-tiles .feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 78, 162, 0.08), transparent 45%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.feature-tiles .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(10, 37, 64, 0.18);
}

.feature-tiles .feature-card:hover::after {
  opacity: 1;
}

.feature-tiles .feature-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-tiles .feature-card.is-hidden {
  display: none;
}

.feature-tiles .feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.feature-tiles .feature-content {
  padding: 1.6rem 1.6rem 1.8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.feature-tiles .feature-card h3 {
  margin: 0;
  color: #0b4ea2;
  font-size: 1.25rem;
}

.feature-tiles .feature-card p {
  margin: 0;
  color: var(--gray-500);
}

.feature-tiles .feature-cta {
  align-self: center;
  background: #0b4ea2;
  box-shadow: 0 12px 24px rgba(11, 78, 162, 0.35);
}

.feature-tiles .feature-cta:hover {
  background: #0a4694;
  box-shadow: 0 16px 30px rgba(11, 78, 162, 0.42);
}

.feature-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.8rem;
}

.feature-more {
  min-width: 180px;
}

.feature-more.is-hidden {
  display: none;
}

.summary-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.summary-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid rgba(11, 94, 215, 0.15);
  box-shadow: 0 16px 32px rgba(10, 37, 64, 0.12);
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.summary-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(11, 94, 215, 0.16), transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
}

.summary-card:hover::before {
  opacity: 1;
}

.summary-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0b5ed7, #0a2540);
  box-shadow: 0 10px 20px rgba(11, 94, 215, 0.35);
  margin-bottom: 0.9rem;
}

.summary-card h3 {
  margin: 0 0 .6rem;
  color: var(--blue-900);
}

.summary-card p {
  margin: 0 0 1rem;
  color: var(--gray-500);
}

.summary-link {
  font-weight: 600;
  color: var(--blue-700);
  display: inline-flex;
  gap: .4rem;
  align-items: center;
}

.summary-link::after {
  content: '→';
  transition: transform .3s ease;
}

.summary-link:hover::after {
  transform: translateX(4px);
}
.impact-section {
  position: relative;
  background: linear-gradient(180deg, rgba(11, 94, 215, 0.08), rgba(245, 166, 35, 0.08));
  overflow: hidden;
}

.impact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/background-WhyJP.png') center/cover no-repeat;
  opacity: 0.25;
  z-index: 0;
}

.impact-section .container {
  position: relative;
  z-index: 1;
}

.impact-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.impact-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.4rem 1.3rem 1.6rem;
  box-shadow: 0 14px 30px rgba(10, 37, 64, 0.12);
  border: 1px solid rgba(11, 94, 215, 0.12);
  position: relative;
  overflow: hidden;
}

.impact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(11, 94, 215, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
}

.impact-card:hover::before {
  opacity: 1;
}

.impact-metric {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-900);
}

.impact-card h3 {
  margin: .4rem 0 .6rem;
  color: var(--blue-900);
}

.impact-card p {
  color: var(--gray-500);
  margin: 0;
}


.card.tight {
  padding: .9rem 1rem;
}

.card-title {
  margin-bottom: .6rem;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
}

.list {
  margin: .4rem 0 0;
  padding-left: 1rem;
}

.timeline {
  margin-top: 1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .9rem;
}

.timeline li {
  position: relative;
  padding: .9rem .9rem .9rem 2.8rem;
  border: 1px solid #d7e3f3;
  border-radius: 12px;
  background: #f9fbff;
}

.timeline li::before {
  content: attr(data-step);
  position: absolute;
  left: .85rem;
  top: .95rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--blue-700);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.checks {
  margin: .5rem 0 0;
  padding: 0;
  list-style: none;
}

.checks li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: .45rem;
}

.checks li::before {
  content: '✓';
  color: var(--blue-700);
  position: absolute;
  left: 0;
}

.highlight {
  background: linear-gradient(135deg, var(--blue-900), #0d3155);
  color: #dce9fa;
  border-radius: var(--radius);
  padding: 1.4rem;
}

.media-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #d5e4f7;
  background: #fff;
  box-shadow: var(--shadow);
}

.media-card {
  transition: transform .25s ease, box-shadow .25s ease;
}

.media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(10, 37, 64, 0.2);
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.media-placeholder {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 0rem;
  color: #3e566f;
  background: repeating-linear-gradient(135deg, #f2f6fc, #f2f6fc 12px, #e9f1fb 12px, #e9f1fb 24px);
  font-weight: 600;
}

.promo-modal {
  position: fixed;
  inset: 0;
  background: rgba(9, 25, 43, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  z-index: 50;
}

.promo-modal.open {
  display: flex;
}

.promo-modal .promo-content {
  position: relative;
  width: min(720px, 92%);
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 37, 64, 0.35);
}

.promo-modal img {
  width: 100%;
  height: auto;
  display: block;
}

.promo-modal .promo-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  background: rgba(10, 37, 64, 0.9);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
}

.promo-modal .promo-close:hover {
  background: #0b5ed7;
}

.split-media {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  align-items: center;
}

.leader-grid,
.team-grid {
  display: grid;
  gap: 1.2rem;
}

.leader-grid {
  grid-template-columns: repeat(2, 1fr);
}

.leader-card {
  background: var(--white);
  border: 1px solid #d4e2f5;
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}

.leader-header {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 1rem;
  align-items: center;
}

.leader-avatar {
  width: 84px;
  height: 84px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0b5ed7, #0a2540);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  letter-spacing: .5px;
}

.leader-title {
  color: var(--gray-500);
  font-size: .9rem;
}

.leader-quote {
  margin: 0;
  padding: .9rem 1rem;
  background: #f3f7ff;
  border-left: 4px solid var(--gold-500);
  border-radius: 10px;
  font-style: italic;
}

.team-grid {
  grid-template-columns: repeat(4, 1fr);
}

.leadership-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(120deg, rgba(10, 37, 64, 0.88), rgba(10, 37, 64, 0.45)),
              url('../images/group_photo.jpg');
  background-size: cover;
  background-position: center;
}

.leadership-hero .hero-media {
  box-shadow: 0 22px 48px rgba(10, 37, 64, 0.18);
  border-color: rgba(11, 94, 215, 0.2);
}

.leadership-hero .section-head h1,
.leadership-hero .section-head p,
.leadership-hero .kicker {
  color: #fff;
  text-shadow: 0 6px 18px rgba(7, 20, 36, 0.55);
}

.leadership-hero::after {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 20% 20%, rgba(11, 94, 215, 0.18), transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(245, 166, 35, 0.2), transparent 60%);
  animation: heroGlow 14s ease-in-out infinite;
  pointer-events: none;
}

.leader-card {
  background: linear-gradient(165deg, #ffffff 0%, #f3f7ff 100%);
  border-color: rgba(11, 94, 215, 0.18);
  transition: transform .2s ease, box-shadow .2s ease;
}

.leader-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(10, 37, 64, 0.2);
}

.leader-card img {
  box-shadow: 0 10px 22px rgba(10, 37, 64, 0.18);
}

.leader-title {
  color: var(--blue-700);
}

.leader-card .btn-outline {
  border-color: rgba(11, 94, 215, 0.3);
}

.profile-card {
  background: linear-gradient(160deg, #ffffff 0%, #f1f6ff 100%);
  border-color: rgba(11, 94, 215, 0.18);
  transition: transform .2s ease, box-shadow .2s ease;
}

.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(10, 37, 64, 0.16);
}

.profile-card img {
  box-shadow: 0 10px 20px rgba(10, 37, 64, 0.16);
}

.team-grid .profile-card {
  position: relative;
}

.team-grid .profile-card::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 46px;
  height: 4px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--blue-700), var(--gold-500));
  opacity: 0.9;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.chip {
  background: #edf4ff;
  border: 1px solid #d6e4f6;
  color: var(--blue-900);
  padding: .35rem .7rem;
  border-radius: 999px;
  font-size: .85rem;
}

.mosaic {
  display: grid;
  gap: .8rem;
  grid-template-columns: repeat(2, 1fr);
}

.mosaic .media-card {
  min-height: 160px;
}

.mosaic .media-card.tall {
  grid-row: span 2;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-grid .media-card img {
  min-height: 220px;
}

.business-hero {
  background: radial-gradient(circle at top left, rgba(11, 94, 215, 0.35), transparent 55%), linear-gradient(120deg, #0a2540, #0b5ed7);
  color: #fff;
}

.feature-grid {
  align-items: stretch;
}

.media-stack {
  display: grid;
  gap: 1rem;
}

.image-slot {
  border-radius: 16px;
  border: 2px dashed rgba(11, 94, 215, 0.4);
  background: linear-gradient(135deg, rgba(11, 94, 215, 0.12), rgba(245, 166, 35, 0.1));
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #0a2540;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease;
}

.image-slot::after {
  content: attr(data-label);
  position: relative;
  z-index: 2;
  padding: 1rem;
}

.image-slot:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(10, 37, 64, 0.18);
}

.media-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.info-chip {
  display: inline-flex;
  padding: .5rem .9rem;
  border-radius: 999px;
  background: rgba(11, 94, 215, 0.15);
  color: #0a2540;
  margin: .8rem 0 .6rem;
}

.story-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.5rem;
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 18px 35px rgba(10, 37, 64, 0.12);
}

.story-content h3 {
  font-family: 'Poppins', sans-serif;
  color: #0a2540;
  margin-bottom: .6rem;
}

.story-content ul {
  padding-left: 1.1rem;
  margin: 0;
}

.gallery-band {
  background: #f6f8fc;
}

.slogan-band {
  background: linear-gradient(120deg, rgba(11, 94, 215, 0.12), rgba(10, 37, 64, 0.08));
}

.slogan-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: center;
  background: #0a2540;
  color: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 24px 45px rgba(10, 37, 64, 0.25);
}

.slogan-card h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  line-height: 1.3;
  margin-top: 0.6rem;
}

.slogan-card .image-slot {
  min-height: 220px;
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 900px) {
  .slogan-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .story-card {
    grid-template-columns: 1fr;
  }
  .media-grid {
    grid-template-columns: 1fr;
  }
}

.about-group .card {
  background: linear-gradient(180deg, #ffffff 0%, #f3f7fd 100%);
  border-color: rgba(11, 94, 215, 0.15);
  box-shadow: 0 12px 26px rgba(10, 37, 64, 0.12);
  transition: transform .2s ease, box-shadow .2s ease;
}

.about-group .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(10, 37, 64, 0.18);
}

.about-group .section-head h2,
.about-group .section-head h4 {
  color: var(--blue-900);
}

.about-group .chips .chip {
  background: rgba(11, 94, 215, 0.08);
  border-color: rgba(11, 94, 215, 0.2);
}

.about-group .table-wrap table {
  border-color: rgba(11, 94, 215, 0.18);
}

.about-group .area-tile {
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.about-group .highlight {
  background: linear-gradient(140deg, #0a2540 0%, #0b5ed7 100%);
}

.subsidiaries-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(9, 35, 64, 0.88), rgba(9, 35, 64, 0.65)), url('../images/world-map.png');
  background-size: cover;
  background-position: center;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 36px rgba(10, 37, 64, 0.22);
}

.subsidiaries-card h3 {
  color: #0d1b2a;
}

.subsidiaries-card::after {
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 20% 30%, rgba(245, 166, 35, 0.12), transparent 55%),
              radial-gradient(circle at 80% 70%, rgba(11, 94, 215, 0.22), transparent 60%);
  animation: drift 12s linear infinite;
}

.subsidiaries-card > * {
  position: relative;
  z-index: 1;
}

.subsidiaries-card:hover {
  transform: translateY(-3px);
}

.subsidiary-list li::before {
  content: '●';
  color: var(--gold-500);
}

.subsidiary-list {
  display: grid;
  gap: .6rem;
}

.subsidiary-list li {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(10, 37, 64, 0.15);
  border-radius: 12px;
  padding: .55rem .75rem .55rem 1.6rem;
  font-weight: 600;
  color: #0d1b2a;
}

.subsidiary-list li::before {
  left: .75rem;
}

@keyframes drift {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-4%, 3%); }
  100% { transform: translate(0, 0); }
}

.area-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.area-tile {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 260px;
  color: #fff;
  background: #0a2540;
  box-shadow: 0 14px 28px rgba(10, 37, 64, 0.18);
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform .2s ease, box-shadow .2s ease;
  display: grid;
  align-items: end;
  will-change: transform;
}

.area-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: var(--bg);
  opacity: 0.75;
}

.area-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(4, 18, 34, 0.82), rgba(4, 18, 34, 0.35));
}

.area-tile .area-tile-content {
  position: relative;
  z-index: 1;
  padding: 1.1rem 1.1rem 1.2rem;
  display: grid;
  gap: .4rem;
}

.area-tile strong {
  font-weight: 600;
}

.area-tile ul {
  list-style: none;
  padding: 0;
  margin: .2rem 0 0;
  display: grid;
  gap: .2rem;
  font-size: .84rem;
  color: rgba(255, 255, 255, 0.85);
}

.area-tile li {
  position: relative;
  padding-left: .9rem;
}

.area-tile li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}

.area-tile:hover {
  box-shadow: 0 22px 44px rgba(10, 37, 64, 0.28);
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-4px);
}

.info-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.stat-card {
  background: #f6f9ff;
  border: 1px solid #d8e5f5;
  border-radius: 12px;
  padding: 1rem;
}

.stat-card strong {
  display: block;
  color: var(--blue-700);
  font-size: 1.1rem;
}

.timeline-block {
  background: #ffffff;
  border: 1px solid #d8e5f5;
  border-radius: var(--radius);
  padding: 1.1rem;
}

.timeline-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .6rem;
}

.timeline-block li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: .8rem;
  align-items: baseline;
  font-weight: 600;
  color: #1c3550;
}

.timeline-block li span {
  font-weight: 500;
  color: #3d526a;
}

.profile-card img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto .8rem;
}

.leader-card img {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  object-fit: cover;
}

.profile-card {
  background: var(--white);
  border: 1px solid #d8e5f5;
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 6px 18px rgba(12, 44, 77, 0.08);
}

.profile-avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto .8rem;
  border-radius: 50%;
  background: linear-gradient(150deg, #0b5ed7, #0a2540);
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
  font-family: 'Poppins', sans-serif;
}

.highlight h3 { color: var(--white); }

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d8e5f5;
}

th,
td {
  padding: .8rem;
  border-bottom: 1px solid #e2ecf8;
  text-align: left;
}

th {
  background: #edf4ff;
  color: var(--blue-900);
  font-family: 'Poppins', sans-serif;
}

form {
  display: grid;
  gap: .8rem;
}

input,
select,
textarea {
  width: 100%;
  padding: .7rem .8rem;
  border: 1px solid #c9d8ec;
  border-radius: 10px;
  font: inherit;
}

textarea { min-height: 120px; }

.footer {
  background: var(--blue-900);
  color: #bdd0e8;
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.2rem;
}

.footer h3,
.footer h4 {
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: .5rem;
}

.socials {
  display: flex;
  gap: .5rem;
}

.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
}

.copyright {
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 1.6rem;
  padding: 1rem 0;
  font-size: .9rem;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-full .hero-slide { min-height: 420px; }
  .hero-slide .slide-content { padding: 3rem 2.4rem; }
  .hero-grid,
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .leader-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .pathway-grid { grid-template-columns: repeat(2, 1fr); }
  .area-tiles { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .hero-full .hero-slide { min-height: 360px; }
  .hero-slide .slide-content { padding: 2.6rem 1.6rem; }
  .mobile-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: .8rem 4%;
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: 1px solid #dce7f6;
    margin-top: .2rem;
  }

  @media (max-width: 780px) {
  .nav.open { display: flex; }
  }
  .header-cta .lang-switch { display: none; }
  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .leader-grid,
  .team-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split-media {
    grid-template-columns: 1fr;
  }

  .hero-slide.active {
    grid-template-columns: 1fr;
  }

  .stat-grid { grid-template-columns: 1fr 1fr; }
  .mosaic { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .timeline-block li { grid-template-columns: 70px 1fr; }
  .pathway-grid { grid-template-columns: 1fr; }
  .area-tiles { grid-template-columns: 1fr; }
}

@media (max-width: 460px) {
  .hero-full .hero-slide { min-height: 320px; }
  .hero-slide .slide-content { padding: 2rem 1.2rem; }
  .stat-grid { grid-template-columns: 1fr; }
  .button-row .btn { width: 100%; }
}

.caregiver-welfare-hero {
  background:linear-gradient(135deg,#0b3d91,#1e88e5);
  color:white;
}

.media-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}

.media-grid img,
.media-frame img,
.facility-card img {
  width:100%;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.facility-card {
  background:white;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,0.1);
  transition:.3s ease;
}
.facility-card:hover {
  transform:translateY(-8px);
}

.gradient-band {
  background:linear-gradient(135deg,#0b3d91,#1e88e5);
  color:white;
  text-align:center;
}

.fade-up { animation:fadeUp .8s ease forwards; }
.slide-left { animation:slideLeft .8s ease forwards; }
.slide-right { animation:slideRight .8s ease forwards; }

@keyframes fadeUp {
  from {opacity:0; transform:translateY(40px);}
  to {opacity:1; transform:translateY(0);}
}
@keyframes slideLeft {
  from {opacity:0; transform:translateX(-40px);}
  to {opacity:1; transform:translateX(0);}
}
@keyframes slideRight {
  from {opacity:0; transform:translateX(40px);}
  to {opacity:1; transform:translateX(0);}
}
.global-hero {
  background:linear-gradient(135deg,#0d1b2a,#1b263b,#415a77);
  color:white;
}

.global-cta {
  background:linear-gradient(135deg,#0d1b2a,#415a77);
  color:white;
  text-align:center;
}

.stat-highlight {
  margin-top:30px;
  padding:20px;
  background:white;
  border-radius:16px;
  box-shadow:0 15px 40px rgba(0,0,0,0.1);
  text-align:center;
}

.stat-number {
  font-size:48px;
  font-weight:700;
  color:#0d1b2a;
}

.media-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}

.media-grid img,
.media-frame img,
.leader-photo img {
  width:100%;
  border-radius:12px;
  box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

.fade-up { animation:fadeUp .8s ease forwards; }
.slide-left { animation:slideLeft .8s ease forwards; }
.slide-right { animation:slideRight .8s ease forwards; }

@keyframes fadeUp {
  from {opacity:0; transform:translateY(40px);}
  to {opacity:1; transform:translateY(0);}
}
@keyframes slideLeft {
  from {opacity:0; transform:translateX(-40px);}
  to {opacity:1; transform:translateX(0);}
}
@keyframes slideRight {
  from {opacity:0; transform:translateX(40px);}
  to {opacity:1; transform:translateX(0);}
}
.global-hero {
  background: linear-gradient(135deg,#0d1b2a 0%,#1b263b 50%,#415a77 100%);
  color:white !important;
  padding:120px 0 100px;
  position:relative;
  overflow:hidden;

}
.global-hero h1, h2 {
    color:rgb(92, 115, 244) !important;
}

.global-hero::after {
  content:'';
  position:absolute;
  right:-150px;
  top:-100px;
  width:500px;
  height:500px;
  background:rgba(255,255,255,0.05);
  border-radius:50%;
}
.hero-split img {
  width:100%;
  border-radius:16px;
  box-shadow:0 25px 60px rgba(0,0,0,0.25);
}

.hero-split .content {
  padding-left:60px;
}
.media-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.media-grid img {
  height:220px;
  object-fit:cover;
  border-radius:14px;
  transition:.4s ease;
  box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.media-grid img:hover {
  transform:scale(1.05);
}
.leader-photo img {
  height:450px;
  object-fit:cover;
  border-radius:20px;
}
.leader-photo img {
  height:450px;
  object-fit:cover;
  border-radius:20px;
}

.software-hero {
  background:linear-gradient(135deg,#ff6a00,#ff8c42);
  color:white;
   padding:100px 0 80px;
}

.alt-orange {
  background:#fff5ec;
}

.btn-orange {
  display:inline-block;
  margin-top:20px;
  padding:14px 30px;
  background:linear-gradient(135deg,#ff6a00,#ff8c42);
  color:white;
  border-radius:50px;
  font-weight:600;
  text-decoration:none;
  transition:.3s ease;
}

.btn-orange:hover {
  transform:translateY(-3px);
  box-shadow:0 15px 30px rgba(0,0,0,0.2);
}

.prostyle-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:24px;
  margin-top:40px;
}

.prostyle-card {
  background:white;
  padding:30px;
  border-radius:16px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  transition:.3s ease;
}

.prostyle-card:hover {
  transform:translateY(-6px);
}

.software-cta {
  background:linear-gradient(135deg,#1c1f26,#ff6a00);
  color:white;
   padding:80px 0;
  text-align:center;
}

.products-section {
  background:#fff;
  padding:80px 0;
}

.products-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
  margin-top:50px;
}

.product-card {
  background:white;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
  transition:all .35s ease;
  position:relative;
}

.product-card::before {
  content:'';
  position:absolute;
  top:0;
  left:0;
  height:6px;
  width:100%;
  background:linear-gradient(135deg,#ff6a00,#ff8c42);
}

.product-card:hover {
  transform:translateY(-10px);
  box-shadow:0 30px 70px rgba(0,0,0,0.15);
}

.product-card img {
  width:100%;
  height:200px;
  object-fit:cover;
}

.product-content {
  padding:25px;
}

.product-content h3 {
  color:#1c1f26;
  margin-bottom:10px;
}

.product-content p {
  font-size:14px;
  opacity:.8;
}
.section:first-of-type {
  position:relative;
}

.section:first-of-type::after {
  content:'';
  position:absolute;
  right:-100px;
  top:50px;
  width:300px;
  height:300px;
  background:rgba(255,106,0,0.08);
  border-radius:50%;
}
.tech-hero {
  background:linear-gradient(135deg,#ff6a00 0%,#ff8c42 100%);
  color:white;
  padding:120px 0;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-flex {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}

.hero-left h1 {
  font-size:48px;
  line-height:1.2;
}

.hero-right img {
  width:480px;
  animation:float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform:translateY(0); }
  50% { transform:translateY(-12px); }
  100% { transform:translateY(0); }
}
.tech-strip {
  background:#1c1f26;
  color:white;
  padding:120px 0;
}

.tech-content {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
}

.tech-strip img {
  width:420px;
  border-radius:18px;
}
:root{
  --primary:#0b3d91;
  --secondary:#1e5bb8;
  --dark:#0a2740;
  --light:#f2f6fb;
}

.section{
  /*padding:100px 0; */
}

.section.alt{
  background:#0166ac;
  color: white;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:60px;
}

.align-center{
  align-items:center;
}

.hero{
 padding:80px 0;
  color:white;
}

.overseas-hero{
  background:linear-gradient(135deg,var(--primary),var(--secondary));
}

.hero h1{
  font-size:48px;
  margin-bottom:20px;
}

.hero p{
  max-width:600px;
}

.media-frame img{
  border-radius:18px;
  box-shadow:0 25px 60px rgba(0,0,0,0.2);
}

.checklist{
  margin-top:20px;
}

.checklist li{
  margin-bottom:10px;
}

.section-heading{
  text-align:center;
  margin-bottom:60px;
}

.process-timeline{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
}

.process-step{
  background:white;
  padding:30px;
  border-radius:16px;
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
  border-top:5px solid var(--primary);
}

.process-step span{
  font-size:28px;
  font-weight:700;
  color:var(--primary);
}

.media-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.card{
  background:white;
  padding:20px;
  border-radius:16px;
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.director-section{
  background:white;
}

.director-photo img{
  border-radius:50%;
  width:250px;
  height:250px;
  object-fit:cover;
  box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.director-content h3{
  font-size:28px;
  margin-bottom:10px;
}

.overseas-cta{
  background:linear-gradient(135deg,var(--dark),var(--primary));
  color:white;
  text-align:center;
}

.fade-up{
  opacity:0;
  transform:translateY(40px);
  transition:0.6s ease;
}

.fade-up.show{
  opacity:1;
  transform:translateY(0);
}

@media(max-width:1024px){
  .grid-2{
    grid-template-columns:1fr;
  }
  .hero h1{
    font-size:36px;
  }
  .section{
    padding:70px 0;
  }
}
/* HERO */
.tt-hero{
  position:relative;
  height:70vh;
  background:url('/assets/images/hiroshima-training.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  color:white;
}

.tt-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,#0b3d91cc,#1e5bb8cc);
}

.tt-hero-inner{
  position:relative;
  max-width:700px;
}

.tt-hero h1{
  font-size:48px;
  margin-bottom:20px;
}


/* SECTION BASE */
.tt-section{
  padding:90px 0;
}

.tt-section.alt{
  background:#f2f6fb;
}

.tt-split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.tt-split.reverse{
  grid-template-columns:1fr 1fr;
}

.tt-split.reverse .tt-content{
  order:1;
}

.tt-split.reverse .tt-image-grid{
  order:2;
}


/* IMAGE BLOCK */
.tt-image-block{
  position:relative;
}

.tt-image-block img{
  width:100%;
  border-radius:24px;
  box-shadow:0 30px 70px rgba(0,0,0,0.2);
}

.tt-badge{
  position:absolute;
  bottom:20px;
  left:20px;
  background:#ffffffdd;
  padding:8px 16px;
  border-radius:50px;
  font-size:14px;
}


/* STATS */
.tt-stats{
  display:flex;
  gap:40px;
  margin-top:30px;
}

.tt-stats span{
  font-size:36px;
  font-weight:700;
  color:#0b3d91;
}


/* IMAGE GRID */
.tt-image-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.tt-image-grid img{
  height:250px;
  object-fit:cover;
  border-radius:18px;
  box-shadow:0 20px 50px rgba(0,0,0,0.15);
}


/* SEMINAR */
.tt-seminar{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.tt-highlight{
  margin-top:20px;
  padding:20px;
  background:#e6f0ff;
  border-left:5px solid #0b3d91;
  border-radius:10px;
}


/* LEADERS */
.tt-leaders{
  background:#f8fbff;
  padding:70px 0;
}

.tt-leader-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.tt-leader-card{
  display:flex;
  align-items:center;
  gap:20px;
  background:white;
  padding:25px;
  border-radius:20px;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.tt-leader-card img{
  width:90px;
  height:90px;
  border-radius:50%;
  object-fit:cover;
}


/* CTA */
.tt-cta{
  background:linear-gradient(135deg,#0a2740,#0b3d91);
  color:white;
  text-align:center;
  padding:80px 0;
}


/* RESPONSIVE */
@media(max-width:1024px){
  .tt-split,
  .tt-seminar,
  .tt-leader-grid{
    grid-template-columns:1fr;
  }

  .tt-image-grid{
    grid-template-columns:1fr;
  }

  .tt-hero{
    height:auto;
    padding:80px 0;
  }

  .tt-hero h1{
    font-size:34px;
  }
}
/* HERO HD */
.hr-hero{
  position:relative;
  height:65vh;
  background:url('/assets/images/hr-hero.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  color:white;
}

.hr-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,#0b3d91cc,#1e5bb8cc);
}

.hr-hero-content{
  position:relative;
  max-width:650px;
}

.hr-hero h1{
  font-size:48px;
  margin-bottom:20px;
}


/* SECTION BASE */
.hr-section{
  padding:90px 0;
  transition:0.6s ease;
  opacity:0;
  transform:translateY(40px);
}

.hr-section.visible{
  opacity:1;
  transform:translateY(0);
}

.hr-section.alt{
  background:#f4f7fb;
}

.hr-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.hr-split{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:60px;
  align-items:center;
}


/* IMAGE CARD */
.hr-image-card{
  position:relative;
}

.hr-image-card img{
  width:100%;
  border-radius:22px;
  box-shadow:0 30px 70px rgba(0,0,0,0.15);
}

.hr-image-label{
  position:absolute;
  bottom:20px;
  left:20px;
  background:#ffffffdd;
  padding:8px 16px;
  border-radius:50px;
  font-size:14px;
}


/* LARGE IMAGE */
.hr-large-image img{
  width:100%;
  border-radius:22px;
  box-shadow:0 30px 70px rgba(0,0,0,0.15);
}


/* CONTENT */
.hr-content h2{
  margin-bottom:15px;
}

.hr-highlight{
  margin-top:20px;
  padding:18px;
  background:#e6f0ff;
  border-left:5px solid #0b3d91;
  border-radius:10px;
}


/* DIRECTOR */
.hr-director{
  display:flex;
  align-items:center;
  gap:15px;
  margin-top:25px;
}

.hr-director img{
  width:70px;
  height:70px;
  border-radius:50%;
  object-fit:cover;
}


/* CTA */
.hr-cta{
  background:linear-gradient(135deg,#0a2740,#0b3d91);
  color:white;
  text-align:center;
  padding:80px 0;
}


/* RESPONSIVE */
@media(max-width:1024px){
  .hr-grid,
  .hr-split{
    grid-template-columns:1fr;
  }

  .hr-hero{
    height:auto;
    padding:80px 0;
  }

  .hr-hero h1{
    font-size:34px;
  }
}

* HERO */
.sw-hero{
  position:relative;
  height:65vh;
  background:url('/assets/images/social-welfare-hero.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  color:white;
}

.sw-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,#0b3d91cc,#1f7a5ccc);
}

.sw-hero-content{
  position:relative;
  max-width:650px;
}

.sw-hero h1{
  font-size:48px;
  margin-bottom:20px;
}


/* SECTION BASE */
.sw-section{
  padding:100px 0;
  opacity:0;
  transform:translateY(50px);
  transition:0.6s ease;
}

.sw-section.show{
  opacity:1;
  transform:translateY(0);
}

.sw-section.alt{
  background:#f4f9f6;
}

.sw-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.sw-split{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:70px;
}


/* IMAGE BLOCK */
.sw-image-block img{
  width:100%;
  border-radius:24px;
  box-shadow:0 25px 60px rgba(0,0,0,0.15);
}


/* VERTICAL GALLERY */
.sw-vertical-gallery{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.sw-vertical-gallery img{
  width:100%;
  border-radius:18px;
  box-shadow:0 20px 50px rgba(0,0,0,0.12);
}


/* CONTENT */
.sw-content h2{
  margin-bottom:15px;
  color:#0b3d91;
}

.sw-content h4{
  color:#1f7a5c;
  margin-bottom:20px;
}

.sw-content p{
  margin-bottom:15px;
  line-height:1.7;
}


/* MANAGER CARD */
.sw-manager{
  display:flex;
  align-items:center;
  gap:15px;
  margin-top:25px;
}

.sw-manager img{
  width:70px;
  height:70px;
  border-radius:50%;
  object-fit:cover;
}

.sw-manager span{
  display:block;
  font-size:14px;
  color:#666;
}


/* HIGHLIGHT */
.sw-highlight{
  margin-top:25px;
  padding:18px;
  background:#e7f4ef;
  border-left:5px solid #1f7a5c;
  border-radius:10px;
}


/* CTA */
.sw-cta{
  padding:90px 0;
  text-align:center;
  background:linear-gradient(135deg,#0b3d91,#1f7a5c);
  color:white;
}

.sw-cta h2{
  margin-bottom:15px;
}


/* RESPONSIVE */
@media(max-width:1024px){

  .sw-grid,
  .sw-split{
    grid-template-columns:1fr;
  }

  .sw-hero{
    height:auto;
    padding:80px 0;
  }

  .sw-hero h1{
    font-size:34px;
  }

}
/* HERO */
.ceremony-hero{
  position:relative;
  height:75vh;
  background:url('/assets/images/ceremony/main-banner.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  color:white;
}

.ceremony-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,#0b3d91cc,#00000088);
}

.ceremony-hero-content{
  position:relative;
  max-width:650px;
}

.ceremony-hero h1{
  font-size:52px;
  margin-bottom:20px;
}


/* SECTION BASE */
.ceremony-section,
.ceremony-gallery-section,
.freshers-section{
  padding:100px 0;
  opacity:0;
  transform:translateY(50px);
  transition:0.6s ease;
}

.show{
  opacity:1;
  transform:translateY(0);
}


/* GRID */
.ceremony-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:60px;
  align-items:center;
}

.ceremony-highlight img{
  width:100%;
  border-radius:24px;
  box-shadow:0 30px 70px rgba(0,0,0,0.15);
}

.section-title{
  text-align:center;
  margin-bottom:50px;
}


/* GALLERY */
.ceremony-gallery{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(250px,1fr));
  gap:25px;
}

.gallery-item img{
  width:100%;
  border-radius:18px;
  transition:0.4s ease;
}

.gallery-item:hover img{
  transform:scale(1.05);
}


/* FRESHERS */
.freshers-section{
  background:#f5f7fb;
}

.freshers-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(170px,1fr));
  gap:25px;
}

.fresher-card{
  text-align:center;
  background:white;
  padding:15px;
  border-radius:18px;
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
  transition:0.3s ease;
}

.fresher-card:hover{
  transform:translateY(-8px);
}

.fresher-card img{
  width:100%;
  border-radius:12px;
}

.fresher-name{
  margin-top:10px;
  font-weight:600;
  font-size:14px;
}


/* RESPONSIVE */
@media(max-width:1024px){
  .ceremony-grid{
    grid-template-columns:1fr;
  }

  .ceremony-hero{
    height:auto;
    padding:80px 0;
  }

  .ceremony-hero h1{
    font-size:36px;
  }
}

/* SECTION BASE */
.pathway-section{
    position:relative;
    padding:120px 0 140px;
    overflow:hidden;
    color:#0b2545;
}

/* BACKGROUND */
.pathway-bg{
    position:absolute;
    inset:0;
    background:url('../images/background-WhyJP.png') center/cover no-repeat;
    z-index:-2;
}

.pathway-section::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, rgba(255,255,255,0.82), rgba(231,241,255,0.6));
    z-index:-1;
}

/* CONTENT LAYOUT */
.pathway-content{
    display:grid;
    grid-template-columns:1fr;
    gap:40px;
    align-items:center;
    text-align:center;
}

/* TEXT AREA */
.badge{
    display:inline-block;
    padding:8px 18px;
    background:#ffffffcc;
    border-radius:50px;
    font-size:14px;
    margin-bottom:20px;
    box-shadow:0 10px 20px rgba(10,37,64,0.12);
}

.pathway-text h1{
    font-size:48px;
    line-height:1.2;
    margin-bottom:20px;
}

.pathway-text p{
    font-size:18px;
    margin-bottom:30px;
    max-width:680px;
    margin-left:auto;
    margin-right:auto;
}

.btn-primary{
    display:inline-block;
    padding:14px 30px;
    background:linear-gradient(135deg,#0b3d91,#2b78ff);
    color:white;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s ease;
}

.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

/* STATS PANEL */
.pathway-stats{
    background:rgba(255,255,255,0.85);
    padding:40px;
    border-radius:30px;
    box-shadow:0 30px 80px rgba(10,37,64,0.18);
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
    backdrop-filter: blur(8px);
}

.stat-card{
    text-align:center;
    padding:22px 18px;
    border-radius:22px;
    transition:0.35s ease;
    background:rgba(255,255,255,0.78);
    border:1px solid rgba(11,94,215,0.18);
    position:relative;
    overflow:hidden;
}

.stat-card:hover{
    background:#ffffff;
    transform:translateY(-8px) scale(1.02);
    box-shadow:0 18px 34px rgba(11,94,215,0.2);
}

.stat-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top right, rgba(245,166,35,0.2), transparent 60%);
    opacity:0;
    transition:opacity .35s ease;
}

.stat-card:hover::after{
    opacity:1;
}

.stat-card h3{
    font-size:24px;
    margin-bottom:5px;
    color:#0a2540;
}

.stat-card span{
    font-size:14px;
    color:#555;
}

.stat-icon{
    width:62px;
    height:62px;
    margin:0 auto 12px;
    border-radius:18px;
    background:linear-gradient(135deg,#0b5ed7,#0a2540);
    box-shadow:0 14px 28px rgba(11,94,215,0.4);
    transition:transform .35s ease, box-shadow .35s ease;
}

.stat-card:hover .stat-icon{
    transform:translateY(-4px) scale(1.06);
    box-shadow:0 18px 36px rgba(245,166,35,0.45);
}

/* RESPONSIVE */
@media(max-width:1024px){
    .pathway-content{
        grid-template-columns:1fr;
    }

    .pathway-text h1{
        font-size:34px;
    }

    .pathway-stats{
        grid-template-columns:repeat(2,1fr);
    }
    
}
