/* @import url('https://fonts.googleapis.com/css2?family=Mochiy+Pop+One&family=Nunito:wght@300;400;600;700&display=swap'); */
@import url("https://fonts.googleapis.com/css2?family=ABeeZee:ital@0;1&family=Mochiy+Pop+One&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
h1,
h2,
h3,
.section-title,
.pkp_structure_main h1,
.pkp_structure_main h2,
.pkp_structure_main h3,
.pkp_structure_main h4,
.pkp_site_name,
.is_text,
.journal-title {
  font-family: "ABeeZee", sans-serif !important;
}

.page_title {
  color: #081c35;
}

/* ===== FOOTER ===== */
.footer {
  background: #081c35;
  color: #e2e8f0;
  padding: 60px 20px 20px;
  font-family: inherit;
}

/* GRID */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* COLUMN */
.footer-column h3 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 14px;
  transition: 0.3s;
}

/* HOVER */
.footer-column ul li a:hover {
  color: #38bdf8;
  padding-left: 5px;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
  border-top: 1px solid #1e293b;
  padding-top: 15px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column ul li a:hover {
    padding-left: 0;
  }
}
/* Base text */
body {
  font-family: "ABeeZee", sans-serif;
  font-size: 17px; /* 🔥 increase overall text */
  line-height: 1.6;
  color: #222;
}

/* Headings */
h1 {
  font-size: 42px;
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

/* Paragraph & normal text */
.articles {
  padding: 40px 60px;
}

/* Tablet */
@media (max-width: 1024px) {
  .articles {
    padding: 30px 30px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .articles {
    padding: 20px 15px;
  }
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: #555;
}

/* Grid responsive */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Tablet: 2 columns */
@media (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 column */
@media (max-width: 600px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

/* Optional hover for better UX */
.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Make image flexible on smaller screens */
@media (max-width: 600px) {
  .card img {
    height: 160px;
  }
}

.card-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #777;
  margin-bottom: 10px;
}

/* Stack meta on very small screens */
@media (max-width: 400px) {
  .meta {
    flex-direction: column;
    gap: 5px;
  }
}

.tag {
  color: #2ecc71;
  font-weight: bold;
}

.tag.green {
  color: #27ae60;
}

.card h3 {
  font-size: 18px;
  margin: 10px 0;
  color: #222;
}

.card p {
  font-size: 14px;
  color: #666;
  flex-grow: 1;
}

.authors {
  margin-top: 15px;
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.author-label {
  color: #2ecc71;
  font-size: 13px;
  font-weight: bold;
}

.authors p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #333;
}
.editors {
  padding: 60px 40px;
  text-align: center;
}

.editors h2 {
  font-size: 28px;
  margin-bottom: 50px;
}

.editor-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

.editor-card {
  width: 180px;
}

.editor-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%; /* circle image */
  object-fit: cover;
  margin-bottom: 15px;
}

.editor-card h4 {
  font-size: 16px;
  margin: 10px 0 5px;
  color: #222;
}

.editor-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}
.sponsors {
  padding: 70px 40px;
  text-align: center;
}

.sponsors h2 {
  font-size: 30px;
  color: #081c35;
  margin-bottom: 50px;
}

/* Grid Layout */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 80px; /* vertical horizontal spacing */
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* Individual Logo */
.sponsor {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo Image */
.sponsor img {
  max-width: 220px;
  width: 100%;
  height: auto;
  object-fit: contain;

  opacity: 0.8;
  transition: all 0.3s ease;
}

/* Hover Effect */
.sponsor img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}
.awards {
  background: #f5f5f5;
  padding: 80px 40px;
  text-align: center;
  /* font-family: Arial, sans-serif; */
}

.awards h2 {
  font-size: 30px;
  color: #081c35;
  margin-bottom: 60px;
}

/* Layout */
.awards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card */
.award-card {
  text-align: center;
}

/* Image */
.award-card img {
  width: 90px;
  height: auto;
  margin-bottom: 20px;
}

/* Title */
.award-card h3 {
  font-size: 18px;
  color: #222;
  margin-bottom: 15px;
  font-weight: 500;
}

/* Description of the followign*/
.award-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.pkp_head_wrapper {
  padding-top: 1rem;

  bottom: 623px;
  /* background: #081c35; */
  background: #212121;
}

@media (max-width: 768px) {
  #headerNavigationContainer,
  .pkp_structure_head {
    background: transparent;
    top: env(safe-area-inset-top);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 2000;
    border-bottom: none;
  }

  .pkp_head_wrapper {
    padding-top: 0.5rem;
    bottom: -18px;
    background: none;
  }

  .pkp_site_nav_toggle {
    position: absolute;
    top: 0px;
    left: 335px;
    width: 2rem;
    height: 2rem;
    border: 0;
    background: none;
    box-shadow:
      1px 0 0 rgba(255, 255, 255, 0.2),
      -1px 0 0 rgba(255, 255, 255, 0.2);
    z-index: 999;
  }
}

.pkp_structure_head {
  background-color: #26247b00;
  background-color: #26247b00;
  margin-bottom: -53px;
  border: 0px;
}

/* ===============================
   INNER CONTAINER
   =============================== */

/* ===== HEADER ===== */
.journal-header {
  width: 100%;
  min-height: 700px;
  position: relative;
  overflow: hidden;
}

/* ===== INNER CONTENT ===== */
.journal-header-inner {
  position: absolute; /* 🔴 change from relative → absolute */
  top: 4px; /* push it to top */
  left: 62%;
  transform: translateX(-50%);

  /* above everything */
  width: 100%;
  text-align: center;
}

/* TITLE */
/* TITLE */
.journal-title {
  font-size: 32px;
  font-weight: 600;
  color: white; /* 🔴 change if needed */
}

.journal-logo {
  height: 64px;
  flex-shrink: 0;
}

.journal-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  max-width: 90%;
}

/* ===== SLIDER ===== */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* ===== SLIDES ===== */
.slide {
  position: absolute;
  inset: 0;
  background-color: #1c1d26;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: heroFade 20s infinite;
}

/* animation delay */
.slide:nth-child(1) {
  animation-delay: 0s;
}
.slide:nth-child(2) {
  animation-delay: 5s;
}
.slide:nth-child(3) {
  animation-delay: 10s;
}
.slide:nth-child(4) {
  animation-delay: 15s;
}

/* fade */
@keyframes heroFade {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* overlay */
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

/* ===== MOBILE FIX (REAL FIX, NOT COSMETIC) ===== */
@media (max-width: 768px) {
  .journal-header {
    min-height: 220px;
    height: 220px; /* 🔴 force fixed height */
  }

  .hero-slider {
    height: 100%;
  }

  .slide {
    height: 100%;
    background-position: center;
  }

  .journal-header-inner {
    position: absolute;
    padding: 16px 14px;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
  }

  .journal-title {
    font-size: 18px;
    line-height: 1.3;
  }

  .journal-logo {
    height: 48px;
    flex-shrink: 0;
  }
}

/* ===== EXTRA SMALL DEVICES ===== */
@media (max-width: 480px) {
  .journal-header {
    height: 180px;
  }

  .journal-title {
    font-size: 12px;
  }
}

/* hide OJS site name */
.pkp_structure_footer_wrapper {
  display: none !important;
}
.pkp_structure_main p,
.pkp_structure_main ul {
  line-height: 1.785rem;
  margin: 0;
}
/* ===============================
   COLLECTION SECTION
   =============================== */
/* ===============================
   COLLECTION SECTION
   =============================== */

.collections-section {
  padding: 50px 20px;
}

/* GRID */
.collections-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 45px;
  max-width: 900px;
  margin: 0 auto;
}

/* ===============================
   CARD
   =============================== */

.collection-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

/* ===============================
   IMAGE
   =============================== */

.collection-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.4s ease;
}

.collection-card:hover img {
  transform: scale(1.03);
}

/* ===============================
   TAG (MODERN PILL)
   =============================== */

.collection-tag {
  display: inline-block;
  margin: 14px 0 0 16px;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}

/* Tag colors */
.collection-tag.bio {
  background: #eafaf1;
  color: #27ae60;
}

.collection-tag.health {
  background: #e8f8f5;
  color: #16a085;
}

.collection-tag.chem {
  background: #ebf5fb;
  color: #2980b9;
}

.collection-tag.tech {
  background: #eef2ff;
  color: #3f51b5;
}

/* ===============================
   CONTENT
   =============================== */

.collection-content {
  padding: 22px;
}

/* DATE */
.collection-date {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}

/* TITLE */
.collection-content h3 {
  font-size: 21px;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.4;
  font-weight: 600;
}

/* DESCRIPTION */
.collection-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 18px;
}

/* ===============================
   FOOTER (BUTTON STYLE)
   =============================== */

.collection-footer {
  border-top: 1px solid #eee;
  padding-top: 16px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

/* BUTTON TEXT */
.collection-footer span:first-child {
  background: linear-gradient(135deg, #f05332, #f05332);
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

/* HOVER BUTTON */
.collection-footer:hover span:first-child {
  background: linear-gradient(135deg, #f05332, #f05332);
}

/* ICON */
.icon {
  margin-left: 10px;
  font-size: 16px;
  transition: 0.3s;
}

.collection-footer:hover .icon {
  transform: translateX(6px);
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 768px) {
  .collection-card img {
    height: 180px;
  }

  .collection-content h3 {
    font-size: 18px;
  }
}
/* ===== LAYOUT ===== */
.container {
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
}

/* ===== SECTION ===== */
.section {
  padding: 60px 0;
}

/* ===== TYPOGRAPHY ===== */
.section-title {
  font-size: 32px;
  margin-bottom: 20px;
  color: #081c35; /* dark heading */
}

.section-subtitle {
  font-size: 24px;
  margin-top: 40px;
  color: #081c35; /* blue highlight */
}

.text {
  margin: 1px 0;
  line-height: 1.2;
  color: #444;
}

/* ===== OPTIONAL ===== */
.text-center {
  text-align: center;
}

.section-gray {
  background: #f9fafc;
}
.highlight-banner {
  background: #17a6a4; /* purple */
  color: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  max-width: 900px;
  margin: 40px auto;
}

.highlight-banner p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
}
/* HERO SECTION */

.hero-section {
  position: relative;
  width: 100%;
  height: 70vh;
  max-height: 800px;
  overflow: hidden;

  /* CARD LOOK */
  border-radius: 20px;
  margin: 1.5rem auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.hero-section video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.55); */
  background: rgba(0, 0, 0, 0.478);
  z-index: 1;
}

.hero-section video,
.hero-overlay {
  border-radius: 20px;
}

.hero-content p span[style*="#c48429"] {
  font-weight: 600;
}

/* Text content */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  color: #fff;
}

.hero-content p {
  font-size: clamp(2rem, 2vw, 1.25rem);
  max-width: 800px;
  opacity: 1;
  color: white;
  text-shadow: #1f2937;
}

@media (max-width: 768px) {
  .hero-content p {
    font-size: 19px;
  }
}

/* FEATURED */
.featured-editor {
  display: flex;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, #1e293b, #020617);
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 60px;
}

.featured-img img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
}

.featured-content h3 {
  font-size: 26px;
}

.role {
  color: #38bdf8;
  margin: 8px 0;
}

.editors-clean {
  padding: 100px 20px;
}

/* SECTION TITLE */
.editors-clean h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 70px;
  color: #111;
}

/* GRID FIX (THIS IS KEY) */
.editor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* force clean layout */
  gap: 40px;
  max-width: 900px; /* control width */
  margin: auto;
}

/* CARD */
.editor-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  border: 1px solid #e5e7eb;
  transition: 0.25s ease;
}

.editor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* IMAGE (FIXED PROPERLY) */
.editor-card img {
  width: 110px;
  height: 140px;
  object-fit: cover;
  border-radius: 12px; /* NOT circle */
  margin-bottom: 15px;
}

/* NAME */
.editor-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin-bottom: 6px;
}

/* ROLE */
.editor-card span {
  display: block;
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 8px;
}

/* DESC */
.editor-card p {
  font-size: 12px;
  color: #444;
  line-height: 1.4;
}

/* BUTTON */
.view-all {
  text-align: center;
  margin-top: 60px;
}

.view-all a {
  padding: 10px 26px;
  border: 1px solid #111;
  border-radius: 25px;
  text-decoration: none;
  color: #111;
  font-size: 13px;
  transition: 0.3s;
}

.view-all a:hover {
  background: #111;
  color: #fff;
}

/* ===============================
   SECTION
   =============================== */
.process-section {
  padding: 100px 20px;
  text-align: center;
  background: #f9fafb;
}

.process-section h2 {
  font-size: 34px;
  margin-bottom: 70px;
  font-weight: 600;
  color: #081c35;
}

/* TIMELINE LINE */
.process-row {
  position: relative;
  max-width: 800px;
  margin: auto;
}

.process-row::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  width: 3px;
  height: 100%;
  background: #e5e7eb;
}

/* CARD */
.process-step {
  position: relative;
  background: white;
  border-radius: 14px;
  padding: 25px 25px 25px 80px;
  margin-bottom: 40px;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* NUMBER BADGE */
.circle {
  position: absolute;
  left: 5px;
  top: 20px;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
}

/* COLORS (same as yours) */
.step1 .circle {
  background: #071b31;
}

.step2 .circle {
  background: #17a6a4;
}

.step3 .circle {
  background: #d84b2f;
}

/* OPTIONAL LEFT BORDER ACCENT */
.step1 {
  border-left: 5px solid #071b31;
}

.step2 {
  border-left: 5px solid #17a6a4;
}

.step3 {
  border-left: 5px solid #d84b2f;
}

/* TEXT */
.process-step p {
  font-size: 17px;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .process-row::before {
    left: 25px;
  }

  .process-step {
    padding-left: 70px;
  }
}
/* ===============================
   CTA SECTION
   =============================== */

.cta-section {
  background: #26247b;
  padding: 80px 20px;
  text-align: center;
  border-radius: 20px; /* 🔥 rounded corners */
  margin: 40px 20px; /* add space so radius is visible */
}

/* CONTAINER */
.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

/* TITLE */
.cta-title {
  font-size: 36px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
}

/* TEXT */
.cta-text {
  font-size: 18px;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  padding: 12px 40px;
  border: 2px solid #fff;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

/* HOVER EFFECT */
.cta-btn:hover {
  background: #fff;
  color: #26247b;
}
/* ===============================
   CATEGORIES SECTION
   =============================== */

.categories-section {
  padding: 80px 20px;
  text-align: center;
}

/* TITLE */
.categories-title {
  font-size: 30px;
  color: #333;
  margin-bottom: 50px;
}

/* GRID */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

/* ITEM */
.category {
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}

/* IMAGE */
.category img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin-bottom: 15px;
  transition: 0.3s;
}

/* HOVER EFFECT */
.category:hover img {
  transform: scale(1.1);
}

/* TEXT */
.category p {
  font-size: 15px;
  font-weight: 500;
}

/* COLORS */
.blue {
  color: #1e40af;
}
.orange {
  color: #f97316;
}
.teal {
  color: #0284c7;
}
.green {
  color: #22c55e;
}
.dark-green {
  color: #059669;
}
.red {
  color: #ef4444;
}
.purple {
  color: #7c3aed;
}
.cyan {
  color: #06b6d4;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 900px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 500px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}
/* IMAGE SECTION */
.young-image-section {
  width: 100%;
  margin-top: 30px;
}

.young-image-section img {
  width: 100%;
  height: auto;
  display: block;
}

/* SECTION */
.team-section {
  padding: 80px 60px;
  background: #f9fafb;
}

/* TITLE */
.team-title {
  color: #081c35;
  font-size: 28px;
  margin-bottom: 50px;
  font-weight: 600;
}

/* =========================
   SPECIAL EDITOR (HIGHLIGHT)
   ========================= */
.team-featured {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  margin-bottom: 70px;
  transition: 0.3s;
}

.team-featured:hover {
  transform: translateY(-5px);
}

/* BIG IMAGE */
.team-featured img {
  width: 240px;
  height: 240px;
  border-radius: 20px;
  object-fit: cover;
}

/* TEXT */
.team-featured .team-info h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.team-featured .team-info p {
  color: #555;
  line-height: 1.6;
}

/* =========================
   GRID (ASSOCIATE EDITORS)
   ========================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* CARD */
.team-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.team-card:hover {
  transform: translateY(-8px);
}

/* SMALL IMAGE */
.team-card img {
  width: 130px;
  height: 130px;
  border-radius: 10px; /* 🔥 change from 50% to small radius */
  object-fit: cover;
  margin-bottom: 15px;
}

/* NAME */
.team-name {
  font-size: 16px;
  font-weight: 600;
  color: #081c35;
}

/* DESC */
.team-desc {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 768px) {
  .team-featured {
    flex-direction: column;
    text-align: center;
  }

  .team-featured img {
    width: 180px;
    height: 180px;
  }
} /* =========================
   MENTOR SECTION
========================= */
.mentor-section {
  padding: 60px 80px;
}

/* Title */
.mentor-title {
  color: #081c35;
  font-size: 28px;
  margin-bottom: 20px;
  text-align: left;
}

/* Description */
.mentor-text {
  max-width: 900px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #333;
  text-align: left;
}

/* =========================
   GRID
========================= */
.mentor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
}

/* =========================
   CARD
========================= */
.mentor-card {
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Image */
.mentor-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

/* Name */
.mentor-name {
  margin-top: 8px;
  font-size: 13px;
  color: #081c35;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* =========================
   HOVER EFFECT 🔥
========================= */
.mentor-card:hover img {
  transform: scale(1.05);
}

.mentor-card:hover .mentor-name {
  font-size: 15px; /* slightly bigger */
  font-weight: 700; /* bold */
  color: #1e7f6e; /* highlight color */
}
/* =========================
   BANNER SECTION
========================= */
.banner-section {
  padding: 20px 40px;
}

/* Container */
.banner-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden; /* 🔥 important for rounded image */
}

/* Image */
.banner-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.pkp_site_name {
  display: none;
}
.hero-section {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px;
}

.hero-section iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* REMOVE extra white space only on mobile */
@media (max-width: 768px) {
  .hero-section {
    aspect-ratio: auto;
    height: 320px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 280px;
  }
}
