/* ===== GLOBAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Poppins', sans-serif;
  background: #F8F6F2;
  color: #1A1A1A;
}

/* ===== NAV ===== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #1A1A1A;
  border-bottom: 2px solid #D4A017;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-logo {
  width: 80px;
  cursor: pointer;
  transition: 0.3s;
}

.nav-logo:hover {
  transform: scale(1.05);
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  transition: 0.3s;
}

/* subtle gold underline */
nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: #F4C542;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  color: white;
  font-size: 22px;
}
/* ===== HERO ===== */
.hero-premium {
  padding: 80px 40px;
  background: radial-gradient(circle at top left, #5A3FA0, #1A1A1A);
  color: white;

  display: flex;
  justify-content: center;   /* 🔥 centers entire block horizontally */
  align-items: center;       /* 🔥 centers vertically */
  min-height: 30vh;
  

}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  max-width: 1200px;   /* 🔥 THIS is the key fix */
  gap: 50px;
}

/* TEXT SIDE */
.hero-text {
  flex: 1;
  max-width: 550px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text h1 {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 700;
}

.hero-text p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.6;
  color: #e0e0e0;
}

/* BUTTONS */
.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

/* IMAGE SIDE */
.hero-image {
  flex: 1;                     /* 🔥 balances layout */
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-img {
  width: 280px;
  border-radius: 15px;
  background: white;
  padding: 15px;

  box-shadow: 0 0 25px rgba(244, 197, 66, 0.25);
  transition: 0.3s;
}

.hero-logo-img:hover {
  transform: scale(1.05);
}
.accent {
  color: #F4C542;
}


.btn-primary {
  padding: 12px 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, #F4C542, #8B1E2D);
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: scale(1.05);
}

.btn-outline {
  padding: 12px 22px;
  border-radius: 8px;
  border: 1px solid #F4C542;
  color: #F4C542;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #F4C542;
  color: black;
}

/* IMAGE */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-img {
  width: 280px;
  border-radius: 15px;
  background: white;
  padding: 15px;
  box-shadow: 0 0 25px rgba(244, 197, 66, 0.25);
  transition: 0.3s;
}

.hero-logo-img:hover {
  transform: scale(1.05);
}

/* ===== SECTIONS ===== */
.section {
  padding: 70px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.section.alt {
  background: #f3eee6;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #8B1E2D, #D4A017);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section p {
  max-width: 700px;
  margin: auto;
  line-height: 1.7;
  font-size: 18px;
}

/* ===== GRID ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

/* ===== PREMIUM CARD ===== */
.card {
  padding: 30px;
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.3);

  transition: all 0.35s ease;

  position: relative;
  overflow: hidden;
}

/* glow gradient border */
.card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(135deg, #F4C542, #8B1E2D, #5A3FA0);
  opacity: 0;

  transition: 0.4s ease;
  z-index: 0;
}

/* inner content stays above */
.card * {
  position: relative;
  z-index: 1;
}

/* hover */
.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  color: white;
}

/* glow activates */
.card:hover::before {
  opacity: 1;
}

/* subtle overlay to keep text readable */
.card:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

/* ===== ICON ===== */
.icon {
  font-size: 42px;
  margin-bottom: 15px;

  transition: 0.3s ease;

  color: #5A3FA0;
}

/* gradient icon */
.icon i {
  background: linear-gradient(135deg, #F4C542, #8B1E2D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* icon animation */
.card:hover .icon {
  transform: scale(1.25) rotate(3deg);
}

/* icon turns white on hover */
.card:hover .icon i {
  -webkit-text-fill-color: white;
}
/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 20px;
  background: #1A1A1A;
  color: #F4C542;
}
/* ===== SERVICES PAGE ===== */
.services-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 20px;
}

.services-intro {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 40px;
}

.services-intro p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 18px;
  color: #444;
}

.services-vertical {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.service-block {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 32px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.service-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.14);
}

.service-icon {
  flex-shrink: 0;
  width: 78px;
  height: 78px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F4C542, #8B1E2D, #5A3FA0);
  box-shadow: 0 10px 22px rgba(0,0,0,0.14);
}

.service-icon i {
  font-size: 30px;
  color: white;
}

.service-details {
  flex: 1;
}

.service-details h3 {
  font-size: 28px;
  margin-bottom: 12px;
  color: #1A1A1A;
}

.service-details p {
  margin-bottom: 14px;
  line-height: 1.8;
  color: #444;
  font-size: 16px;
}

.service-details ul {
  padding-left: 20px;
}

.service-details li {
  margin-bottom: 8px;
  line-height: 1.7;
  color: #222;
}

@media (max-width: 768px) {
  .service-block {
    flex-direction: column;
    padding: 24px;
  }

  .service-icon {
    width: 64px;
    height: 64px;
  }

  .service-icon i {
    font-size: 24px;
  }

  .service-details h3 {
    font-size: 24px;
  }
}
/* ===== FEATURED BOOKS ===== */
.featured-books {
  padding: 90px 20px;
  background: #F8F6F2;
}

.featured-books-container {
  max-width: 1180px;
  margin: 0 auto;
}

.featured-books-heading {
  max-width: 820px;
  margin: 0 auto 52px;
  text-align: center;
}

.featured-books-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5A3FA0;
  background: linear-gradient(135deg, rgba(90, 63, 160, 0.10), rgba(90, 63, 160, 0.04));
  border: 1px solid rgba(90, 63, 160, 0.22);
  box-shadow: 0 8px 16px rgba(90, 63, 160, 0.10);
}

.featured-books-heading h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  font-weight: 800;
  background: linear-gradient(135deg, #8B1E2D, #D4A017);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.featured-books-heading p {
  margin: 0 auto;
  max-width: 760px;
  font-size: 1.1rem;
  line-height: 1.75;
  color: #1A1A1A;
}

.featured-books-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 48px;
  align-items: start;
}

.featured-book-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.featured-book-cover-wrap {
  width: 100%;
  max-width: 500px;
  min-height: 320px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F4C542, #8B1E2D, #5A3FA0);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.featured-book-cover {
  display: block;
  width: auto;
  max-width: 240px;
  height: auto;
  max-height: 340px;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.featured-book-content {
  width: 100%;
  max-width: 500px;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.featured-book-content h3 {
  margin: 0 0 16px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.8rem, 2.4vw, 2.3rem);
  line-height: 1.15;
  font-weight: 800;
  color: #1A1A1A;
}

.featured-book-description {
  width: 100%;
  max-width: 470px;
  min-height: 240px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.featured-book-description p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
}

.featured-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 13px 24px;
  min-width: 120px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #F4C542, #8B1E2D);
  box-shadow: 0 10px 20px rgba(139, 30, 45, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.featured-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(139, 30, 45, 0.28);
  opacity: 0.96;
}
/* ===== BOOK COVER LIGHTBOX ===== */
.zoomable-book {
  cursor: zoom-in;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zoomable-book:hover {
  transform: scale(1.03);
  box-shadow: 0 18px 36px rgba(0,0,0,0.22);
}

.book-modal {
  display: none;
  position: fixed;
  z-index: 3000;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  padding: 30px 20px;
  justify-content: center;
  align-items: center;
}

.book-modal-content {
  max-width: 95%;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.book-close {
  position: absolute;
  top: 18px;
  right: 28px;
  color: white;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.book-close:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .book-modal {
    padding: 20px 14px;
  }

  .book-close {
    top: 12px;
    right: 18px;
    font-size: 34px;
  }

  .book-modal-content {
    max-width: 96%;
    max-height: 85vh;
  }
}
/* ===== BOOK COVER LIGHTBOX ===== */
.zoomable-book {
  cursor: zoom-in;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zoomable-book:hover {
  transform: scale(1.03);
  box-shadow: 0 18px 36px rgba(0,0,0,0.22);
}

.book-modal {
  display: none;
  position: fixed;
  z-index: 3000;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  padding: 30px 20px;
  justify-content: center;
  align-items: center;
}

.book-modal-content {
  max-width: 95%;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.book-close {
  position: absolute;
  top: 18px;
  right: 28px;
  color: white;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.book-close:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .book-modal {
    padding: 20px 14px;
  }

  .book-close {
    top: 12px;
    right: 18px;
    font-size: 34px;
  }

  .book-modal-content {
    max-width: 96%;
    max-height: 85vh;
  }
}
/* ===== TABLET ===== */
@media (max-width: 991px) {
  .featured-books {
    padding: 80px 20px;
  }

  .featured-books-grid {
    gap: 36px;
  }

  .featured-book-cover-wrap {
    max-width: 100%;
    min-height: 300px;
  }

  .featured-book-content,
  .featured-book-description {
    max-width: 100%;
  }

  .featured-book-description {
    min-height: 270px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 767px) {
  .featured-books {
    padding: 70px 16px;
  }

  .featured-books-heading {
    margin-bottom: 38px;
  }

  .featured-books-heading h2 {
    font-size: 2.2rem;
  }

  .featured-books-heading p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .featured-books-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .featured-book-card {
    max-width: 100%;
  }

  .featured-book-cover-wrap {
    min-height: auto;
    padding: 22px 18px;
  }

  .featured-book-cover {
    max-width: 210px;
    max-height: none;
  }

  .featured-book-content {
    padding-top: 22px;
  }

  .featured-book-content h3 {
    min-height: auto;
    font-size: 2rem;
    margin-bottom: 14px;
  }

  .featured-book-description {
    min-height: auto;
    max-width: 100%;
  }

  .featured-book-description p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .featured-book-btn {
    margin-top: 22px;
  }
}
/* ===== CONTACT PAGE ===== */
.contact-card {
  max-width: 650px;
  margin: 30px auto 0;
  text-align: center;
  cursor: default;
}

.contact-card:hover {
  transform: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  color: inherit;
}

.contact-card:hover::before {
  opacity: 0;
}

.contact-card:hover::after {
  display: none;
}

.contact-card:hover .icon {
  transform: none;
}

.contact-card:hover .icon i {
  -webkit-text-fill-color: transparent;
}

.contact-email {
  margin-top: 16px;
}

.contact-email a {
  color: #8B1E2D;
  font-weight: 700;
  font-size: clamp(1rem, 4vw, 1.5rem);
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: break-word;
}
@media (max-width: 768px) {
  .contact-email a {
    font-size: 1.1rem;
  }
}
.contact-email a:hover {
  text-decoration: underline;
}
/* ===== RESOURCES PAGE ===== */
.coming-soon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.coming-soon-card {
  max-width: 760px;
  width: 100%;
  padding: 40px 30px;
  border-radius: 22px;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0,0,0,0.05);
}

.coming-soon-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F4C542, #8B1E2D, #5A3FA0);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.coming-soon-icon i {
  font-size: 34px;
  color: white;
}

.coming-soon-card h2 {
  margin-bottom: 18px;
}

.coming-soon-card p {
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
  color: #444;
}

.resource-preview {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 28px 0 22px;
}

.resource-pill {
  padding: 10px 16px;
  border-radius: 999px;
  background: #f3eee6;
  color: #5A3FA0;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(90, 63, 160, 0.12);
}

.coming-soon-note {
  font-size: 0.98rem;
}

@media (max-width: 768px) {
  .coming-soon-card {
    padding: 30px 20px;
  }

  .coming-soon-icon {
    width: 72px;
    height: 72px;
  }

  .coming-soon-icon i {
    font-size: 28px;
  }
}
/* ===== FOUNDER SECTION ===== */
.founder-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

.founder-image img {
  width: 260px;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(0,0,0,0.2);
}

.founder-text {
  max-width: 500px;
  text-align: left;
}

.founder-text h3 {
  margin-top: 10px;
  color: #5A3FA0;
}
/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .hero-content {
    flex-direction: column;
    text-align: center;
    min-height: auto;
  }

  .hero-text {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  nav {
    display: none;
    flex-direction: column;
    background: #1A1A1A;
    position: absolute;
    top: 70px;
    right: 0;
    width: 220px;
    padding: 15px;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
/* ===== PROGRAMS SHOWCASE ===== */
.programs-showcase {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.program-feature {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
}

.program-image {
  flex: 0 0 320px;
}

.program-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 28px rgba(0,0,0,0.14);
}

.program-info {
  flex: 1;
  text-align: left;
}

.program-info h3 {
  font-size: 30px;
  margin-bottom: 14px;
  color: #1A1A1A;
}

.program-info p {
  margin-bottom: 12px;
  line-height: 1.8;
  color: #333;
}

.program-meta {
  font-size: 15px;
  color: #5A3FA0;
  margin-bottom: 8px;
}
/* ===== FLYER LIGHTBOX ===== */
.zoomable-flyer {
  cursor: zoom-in;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zoomable-flyer:hover {
  transform: scale(1.02);
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
}

.flyer-modal {
  display: none;
  position: fixed;
  z-index: 3000;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  padding: 30px 20px;
  justify-content: center;
  align-items: center;
}

.flyer-modal-content {
  max-width: 95%;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.flyer-close {
  position: absolute;
  top: 18px;
  right: 28px;
  color: white;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.flyer-close:hover {
  opacity: 0.8;
}

/* ===== BOOKS SHOWCASE ===== */
.books-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.book-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
}

.book-card img {
  width: 100%;
  max-width: 260px;
  margin: 0 auto 20px;
  display: block;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.16);
}

.book-card h3 {
  font-size: 28px;
  margin-bottom: 8px;
  color: #1A1A1A;
}

.book-subtitle {
  color: #8B1E2D;
  font-weight: 600;
  margin-bottom: 14px;
}

.book-card p {
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
}

.book-card .btn-primary,
.book-card .btn-outline {
  display: inline-block;
  margin-top: 8px;
}
/* ===== SCROLLABLE GALLERY ===== */
.gallery-scroll-wrap {
  max-width: 1200px;
  margin: 40px auto 0;
  overflow: hidden;
}

.gallery-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 6px 18px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.gallery-scroll::-webkit-scrollbar {
  height: 10px;
}

.gallery-scroll::-webkit-scrollbar-track {
  background: #e9e3d8;
  border-radius: 999px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #F4C542, #8B1E2D, #5A3FA0);
  border-radius: 999px;
}

.gallery-scroll-item {
  flex: 0 0 320px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
  scroll-snap-align: start;
}

.gallery-scroll-item img {
  width: 100%;
  height: 440px;
  object-fit: contain;
  background: #fff;
  display: block;
}

.zoomable-gallery {
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.zoomable-gallery:hover {
  transform: scale(1.02);
}

.gallery-placeholder {
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
}

.gallery-placeholder-content i {
  font-size: 42px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #F4C542, #8B1E2D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gallery-placeholder-content h3 {
  margin-bottom: 12px;
  font-size: 24px;
  color: #1A1A1A;
}

.gallery-placeholder-content p {
  color: #444;
  line-height: 1.7;
}

/* ===== GALLERY LIGHTBOX ===== */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 3000;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  padding: 30px 20px;
  justify-content: center;
  align-items: center;
}

.gallery-modal-content {
  max-width: 95%;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.gallery-close {
  position: absolute;
  top: 18px;
  right: 28px;
  color: white;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.gallery-close:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .gallery-scroll-item {
    flex: 0 0 85%;
  }

  .gallery-scroll-item img {
    height: 360px;
  }

  .gallery-placeholder {
    min-height: 360px;
  }
}
/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .program-feature {
    flex-direction: column;
    padding: 20px;
  }

  .program-image {
    flex: auto;
    width: 100%;
  }

  .program-info h3 {
    font-size: 24px;
  }

  .book-card {
    padding: 22px;
  }
}

