* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue-main: #2f6fdd;
  --blue-dark: #1f4fa8;
  --blue-soft: #eaf3ff;
  --blue-light: #f5f9ff;

  --yellow-main: #f4c542;
  --yellow-dark: #e2b12e;
  --yellow-soft: #fff4c9;
  --yellow-light: #fffbea;

  --white: #ffffff;
  --text-main: #22324d;
  --text-soft: #667792;
  --border: #dce7f5;

  --shadow-sm: 0 8px 20px rgba(31, 79, 168, 0.08);
  --shadow-md: 0 18px 40px rgba(31, 79, 168, 0.12);
  --shadow-yellow: 0 12px 28px rgba(244, 197, 66, 0.26);

  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 10% 10%, rgba(244, 197, 66, 0.18), transparent 20%),
    radial-gradient(circle at 90% 20%, rgba(47, 111, 221, 0.14), transparent 22%),
    radial-gradient(circle at 20% 80%, rgba(244, 197, 66, 0.14), transparent 24%),
    radial-gradient(circle at 85% 85%, rgba(47, 111, 221, 0.10), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  padding-left: 20px;
}

section {
  position: relative;
  overflow: hidden;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Decorative bubbles */
.hero::before,
.feature-section::before,
.programs::before,
.quote-section::before,
.footer::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  top: 30px;
  right: 40px;
  background: rgba(244, 197, 66, 0.22);
}

.feature-section::before {
  top: 40px;
  left: -30px;
  background: rgba(47, 111, 221, 0.10);
}

.programs::before {
  bottom: 30px;
  left: 30px;
  background: rgba(244, 197, 66, 0.18);
}

.quote-section::before {
  top: -20px;
  right: 60px;
  background: rgba(47, 111, 221, 0.10);
}

.footer::before {
  bottom: -50px;
  left: 30px;
  background: rgba(244, 197, 66, 0.22);
}

.hero::after,
.feature-section::after,
.programs::after,
.quote-section::after,
.footer::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  bottom: 50px;
  left: 20px;
  background: rgba(47, 111, 221, 0.12);
}

.feature-section::after {
  bottom: 20px;
  right: -20px;
  background: rgba(244, 197, 66, 0.18);
}

.programs::after {
  top: 40px;
  right: 20px;
  background: rgba(47, 111, 221, 0.08);
}

.quote-section::after {
  bottom: -10px;
  left: 60px;
  background: rgba(244, 197, 66, 0.18);
}

.footer::after {
  top: 20px;
  right: 40px;
  background: rgba(255, 255, 255, 0.08);
}

/* Label */
.section-label {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--yellow-soft);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(244, 197, 66, 0.15);
}

.section-label.light {
  background: rgba(255, 255, 255, 0.14);
  color: #fff5cc;
  box-shadow: none;
}

.center-text {
  text-align: center;
}

.section-heading {
  max-width: 740px;
  margin: 0 auto 48px;
}

.section-heading h2,
.section-heading h3 {
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--blue-dark);
}

.section-heading p {
  color: var(--text-soft);
  font-size: 16px;
}

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  /* tap highlight off untuk mobile */
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-dark {
  background: linear-gradient(135deg, var(--yellow-main), var(--yellow-dark));
  color: var(--text-main);
  box-shadow: var(--shadow-yellow);
}

.btn-dark:hover {
  filter: brightness(1.02);
}

.btn-light {
  background: var(--white);
  color: var(--blue-dark);
  border: 1px solid #d8e4f5;
  box-shadow: var(--shadow-sm);
}

.btn-light:hover {
  background: var(--blue-soft);
}

.border {
  border: 1px solid var(--border);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 2px solid rgba(244, 197, 66, 0.35);
  box-shadow: 0 4px 18px rgba(31, 79, 168, 0.04);
}

.nav-wrapper {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  background: #ffffff;
  padding: 5px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(31, 79, 168, 0.12);
}

.brand-logo span {
  font-size: 21px;
  font-weight: 800;
  color: var(--blue-dark);
  letter-spacing: -0.2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  font-size: 15px;
  font-weight: 600;
  color: #42536d;
  position: relative;
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--blue-main);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--yellow-main);
  transition: var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Hero */
.hero {
  padding: 96px 0 82px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.hero-text h1 {
  font-size: 58px;
  line-height: 1.08;
  margin-bottom: 18px;
  color: var(--blue-dark);
}

.hero-desc {
  font-size: 17px;
  color: var(--text-soft);
  max-width: 620px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.image-box {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-soft), var(--yellow-soft));
  border: 1.5px dashed rgba(47, 111, 221, 0.20);
  min-height: 280px;
  position: relative;
  box-shadow: var(--shadow-md);
}

.image-box img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.image-box img[src=""],
.image-box img:not([src]) {
  opacity: 0;
}

.image-box::after {
  content: "Tambahkan gambar di assets/images";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-dark);
}

.image-box:has(img[src]:not([src=""]))::after {
  display: none;
}

.large-box {
  max-width: 470px;
  min-height: 420px;
}

.small-box {
  max-width: 430px;
  min-height: 310px;
}

/* Sections */
.feature-section,
.programs {
  padding: 94px 0;
}

.alt {
  background: linear-gradient(180deg, var(--blue-light), #ffffff);
}

.feature-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.feature-text h3 {
  font-size: 40px;
  line-height: 1.18;
  margin-bottom: 18px;
  color: var(--blue-dark);
}

.feature-text p {
  color: var(--text-soft);
  margin-bottom: 18px;
  font-size: 16px;
}

.feature-text ul li,
.feature-text ol li {
  margin-bottom: 10px;
  color: #42536d;
}

.feature-image {
  display: flex;
  justify-content: center;
}

/* Highlight / Vision */
.highlight {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-dark));
  color: var(--white);
}

.highlight h2 {
  font-size: 40px;
  line-height: 1.16;
  max-width: 780px;
  margin: 0 auto 14px;
  color: var(--white);
}

.highlight-desc {
  max-width: 760px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.84);
}

.highlight-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  padding: 16px;
  border-radius: 18px;
  font-weight: 700;
  text-align: center;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 42px;
}

.vision-card {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: left;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.vision-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #fff4c2;
}

.vision-card p,
.vision-card li {
  color: rgba(255, 255, 255, 0.92);
}

/* Icon chip */
.icon-chip {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff5cf, #ffe89c);
  color: var(--blue-dark);
  font-size: 22px;
  box-shadow: 0 10px 24px rgba(244, 197, 66, 0.25);
  margin-bottom: 14px;
}

/* Cards */
.program-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.program-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--yellow-main);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card-image {
  height: 210px;
  background: linear-gradient(135deg, var(--yellow-soft), var(--blue-soft));
  position: relative;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-image img[src=""],
.card-image img:not([src]) {
  opacity: 0;
}

.card-image::after {
  content: "Masukkan gambar program";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-dark);
}

.card-image:has(img[src]:not([src=""]))::after {
  display: none;
}

.program-card h4 {
  font-size: 22px;
  margin: 20px 20px 10px;
  color: var(--blue-dark);
}

.program-card p {
  font-size: 15px;
  color: var(--text-soft);
  margin: 0 20px 22px;
}

.program-card span {
  display: inline-block;
  margin: 0 20px 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-main);
}

.simple-card {
  padding: 26px;
  background: linear-gradient(180deg, #ffffff, #fffdfa);
}

.simple-card h4 {
  margin: 0 0 12px;
}

.simple-card p {
  margin: 0;
}

/* Program list */
.program-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.list-box {
  background: linear-gradient(180deg, #ffffff, #fffcf2);
  border: 1px solid var(--border);
  border-left: 8px solid var(--yellow-main);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.list-box h4 {
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--blue-dark);
}

.list-box li {
  margin-bottom: 10px;
  color: var(--text-soft);
}

/* Quote */
.quote-section {
  padding: 86px 0;
  background: linear-gradient(135deg, var(--yellow-light), var(--blue-soft));
}

.quote-content {
  text-align: center;
  max-width: 840px;
}

.quote-text {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 16px;
  color: var(--blue-dark);
}

.quote-author {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #60708a;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--blue-main), var(--blue-dark));
  color: var(--white);
  padding-top: 68px;
  margin-top: 10px;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer .brand-logo span {
  color: var(--white);
}

.footer .brand-logo img {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.footer-brand h4 {
  font-size: 24px;
  margin-bottom: 8px;
}

.footer-brand p,
.footer-cta p,
.footer-links a {
  color: rgba(255, 255, 255, 0.84);
}

.footer-cta h3 {
  font-size: 30px;
  margin-bottom: 12px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.footer-links h5 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #fff4c2;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-wrapper,
  .feature-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .vision-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .program-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlight-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-text h1 {
    font-size: 44px;
  }

  /* Gambar hero & feature: urutan teks dulu, gambar belakang */
  .hero-image,
  .feature-image {
    order: -1;
    max-height: 340px;
  }

  .image-box {
    min-height: 220px;
    max-height: 340px;
  }

  .image-box img {
    min-height: unset;
    max-height: 340px;
  }

  .large-box {
    max-width: 100%;
    min-height: 220px;
    max-height: 340px;
  }

  .small-box {
    max-width: 100%;
    min-height: 180px;
    max-height: 280px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE BESAR / PHABLET (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Navbar */
  .nav-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    min-height: unset;
    padding: 14px 0;
    gap: 12px;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
    width: 100%;
  }

  .nav-menu a {
    font-size: 14px;
  }

  /* Hero */
  .hero {
    padding: 56px 0 52px;
  }

  .hero-wrapper {
    gap: 28px;
  }

  .hero-text,
  .feature-text {
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
    gap: 12px;
  }

  .hero-text h1 {
    font-size: 36px;
    line-height: 1.12;
  }

  .feature-text h3,
  .section-heading h2,
  .section-heading h3,
  .highlight h2 {
    font-size: 30px;
  }

  /* Gambar: teks duluan, gambar di bawah */
  .hero-image {
    order: 1;
    max-height: 260px;
  }

  .feature-image {
    order: 1;
    max-height: 240px;
  }

  .image-box {
    min-height: 160px;
    max-height: 260px;
    border-radius: 20px;
  }

  .image-box img {
    min-height: unset;
    max-height: 260px;
    object-fit: cover;
  }

  .large-box {
    max-width: 100%;
    min-height: 180px;
    max-height: 260px;
  }

  .small-box {
    max-width: 100%;
    min-height: 150px;
    max-height: 220px;
  }

  /* Sections padding */
  .feature-section,
  .programs {
    padding: 60px 0;
  }

  .highlight,
  .quote-section {
    padding: 60px 0;
  }

  /* Program cards */
  .program-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Card image lebih compact */
  .card-image {
    height: 180px;
  }

  /* Program list */
  .program-list-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Stats */
  .highlight-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Vision */
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .vision-card {
    padding: 22px;
    border-radius: 20px;
  }

  .vision-card h3 {
    font-size: 22px;
  }

  /* Quote */
  .quote-text {
    font-size: 26px;
  }

  /* Footer */
  .footer {
    padding-top: 52px;
  }

  .footer-cta h3 {
    font-size: 26px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Section heading */
  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2,
  .section-heading h3 {
    font-size: 28px;
  }

  /* Bubble dekoratif dikecilkan */
  .hero::before,
  .feature-section::before,
  .programs::before,
  .quote-section::before,
  .footer::before {
    width: 100px;
    height: 100px;
  }

  .hero::after,
  .feature-section::after,
  .programs::after,
  .quote-section::after,
  .footer::after {
    width: 70px;
    height: 70px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE KECIL (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .container {
    width: calc(100% - 32px);
  }

  /* Navbar */
  .brand-logo span {
    font-size: 17px;
  }

  .brand-logo img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .nav-menu a {
    font-size: 13px;
  }

  /* Hero */
  .hero {
    padding: 44px 0 44px;
  }

  .hero-text h1 {
    font-size: 28px;
    line-height: 1.15;
  }

  .hero-desc,
  .feature-text p,
  .program-card p,
  .section-heading p,
  .highlight-desc {
    font-size: 14px;
    line-height: 1.65;
  }

  /* Buttons: full width di HP kecil */
  .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  /* Gambar */
  .hero-image,
  .feature-image {
    max-height: 210px;
  }

  .image-box {
    min-height: 130px;
    max-height: 210px;
    border-radius: 16px;
  }

  .image-box img {
    max-height: 210px;
    min-height: unset;
  }

  .large-box {
    min-height: 140px;
    max-height: 210px;
  }

  .small-box {
    min-height: 120px;
    max-height: 180px;
  }

  /* Card */
  .card-image {
    height: 150px;
  }

  .program-card {
    border-radius: 18px;
  }

  .program-card h4 {
    font-size: 18px;
    margin: 16px 16px 8px;
  }

  .program-card p {
    font-size: 14px;
    margin: 0 16px 18px;
  }

  .program-card span {
    margin: 0 16px 18px;
  }

  /* List box */
  .list-box {
    padding: 18px;
    border-radius: 16px;
  }

  .list-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  /* Vision */
  .vision-card,
  .list-box {
    border-radius: 16px;
  }

  .vision-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  /* Stats */
  .highlight-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .stat-box {
    padding: 14px 10px;
    font-size: 14px;
    border-radius: 14px;
  }

  /* Highlight section */
  .highlight h2 {
    font-size: 26px;
    line-height: 1.2;
  }

  /* Quote */
  .quote-text {
    font-size: 22px;
    line-height: 1.45;
  }

  .quote-author {
    font-size: 13px;
  }

  /* Section heading */
  .section-heading h2,
  .section-heading h3 {
    font-size: 24px;
    line-height: 1.2;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-label {
    font-size: 11px;
    padding: 6px 12px;
  }

  /* Footer */
  .footer {
    padding-top: 44px;
  }

  .footer-cta h3 {
    font-size: 22px;
  }

  .footer-brand h4 {
    font-size: 20px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-bottom p {
    font-size: 13px;
  }

  /* Feature & programs padding */
  .feature-section,
  .programs {
    padding: 48px 0;
  }

  .highlight,
  .quote-section {
    padding: 48px 0;
  }

  /* Icon chip */
  .icon-chip {
    width: 46px;
    height: 46px;
    font-size: 18px;
    border-radius: 12px;
  }
}

/* ============================================================
   RESPONSIVE — HP SANGAT KECIL (max 360px)
   ============================================================ */
@media (max-width: 360px) {
  .hero-text h1 {
    font-size: 24px;
  }

  .section-heading h2,
  .section-heading h3 {
    font-size: 22px;
  }

  .quote-text {
    font-size: 20px;
  }

  .image-box {
    max-height: 180px;
    min-height: 110px;
  }

  .card-image {
    height: 130px;
  }

  .highlight-stats {
    grid-template-columns: 1fr;
  }
}

/* ===== Media Partner PDF ===== */

.pdf-container{
    width:100%;
    height:100vh; /* penuh layar HP */
    border-radius:24px;
    overflow:hidden;

    box-shadow:
      0 10px 30px rgba(0,0,0,.08);
}

.pdf-container iframe{
    width:100%;
    height:100%;
    border:none;
    display:block;
}


/* Mobile */
@media(max-width:768px){

    .pdf-container{
        height:500px;
    }

}

/* ====================
SOCIAL MEDIA ABOUT
==================== */

.social-grid{
  display:grid;
  grid-template-columns:
  repeat(3,1fr);

  gap:28px;
  margin-top:50px;
}


.social-card{

  background:#fff;
  padding:20px;

  border-radius:24px;

  border:
  1px solid var(--border);

  box-shadow:
  0 10px 30px rgba(
  0,0,0,.06);

  transition:.3s;

  text-align:center;

}


.social-card:hover{

transform:
translateY(-8px);

box-shadow:
0 20px 40px rgba(
0,0,0,.1);

}


.social-image{

height:280px;

overflow:hidden;

border-radius:18px;

margin-bottom:20px;

background:
var(--blue-soft);

}


.social-image img{

width:100%;
height:100%;

object-fit:cover;

transition:.4s;

}


.social-card:hover img{

transform:
scale(1.04);

}



.social-card h4{

font-size:22px;

margin-bottom:12px;

color:
var(--blue-dark);

}


.social-card p{

font-size:15px;

color:
var(--text-soft);

margin-bottom:20px;

min-height:48px;

}


.social-card .btn{

width:100%;

}



/* Tablet */
@media(max-width:768px){

.social-grid{

grid-template-columns:
1fr 1fr;

}

}



/* HP */
@media(max-width:480px){

.social-grid{

grid-template-columns:
1fr;

}


.social-image{

height:220px;

}

}

/* =========================
   CHANNELS SECTION
========================= */

#channels {
  background: var(--blue-light);
  padding: 100px 0;
}

#channels .feature-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

#channels .feature-text {
  flex: 1;
  min-width: 320px;
}

#channels .feature-text h3 {
  font-size: 2rem;
  color: var(--text-main);
  margin: 16px 0;
}

#channels .feature-text p {
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 18px;
}

#channels .feature-text ul {
  margin-top: 20px;
  padding-left: 0;
}

#channels .feature-text ul li {
  list-style: none;
  margin-bottom: 14px;
  color: var(--text-main);
  font-weight: 500;
}

#channels .icon-chip {
  width: 60px;
  height: 60px;
  background: var(--yellow-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-dark);
  font-size: 24px;
  box-shadow: var(--shadow-yellow);
}

#channels .btn {
  margin-top: 25px;
}

#channels .btn-dark {
  background: var(--blue-main);
  color: white;
  border-radius: 50px;
  padding: 14px 26px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

#channels .btn-dark:hover {
  background: var(--blue-dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}


/* IMAGE */

#channels .feature-image {
  flex: 1;
  min-width: 300px;
}

#channels .image-box {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

#channels .image-box:hover {
  transform: translateY(-8px);
}

#channels .image-box img {
  width: 100%;
  display: block;
  object-fit: cover;
}


/* Label */

#channels .section-label {
  color: var(--blue-main);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* RESPONSIVE */

@media (max-width: 768px){

  #channels .feature-wrapper{
    flex-direction: column-reverse;
    text-align: center;
  }

  #channels .icon-chip{
    margin: auto;
  }

  #channels ul{
    text-align: left;
  }

}

.article-content{
  max-width:850px;
  margin:50px auto;
}

.article-content p{
  font-size:17px;
  line-height:1.9;
  margin-bottom:20px;
  color:var(--text-main);
}