/*============ Header ============*/
/* Header Base */
  /* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

/* HEADER */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: #96505ce0;
  z-index: 1000;
  transition: top 0.4s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* NAV */
nav {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  font-size: 2.4rem;
  font-weight: bold;
  color: #813c78;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

/* MAIN MENU */
nav ul {
  list-style: none;
  display: flex;
  align-items: center;
}

nav ul li {
  position: relative;
}

nav ul li a {
  display: block;
  padding: 0.7rem 1rem;
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #8b3858;
}

/* DROPDOWN MENU */
.sub-menu-1 {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #96505ce0;
  min-width: 180px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  overflow: hidden;
  z-index: 999;
}

.sub-menu-1 ul {
  flex-direction: column;
}

.sub-menu-1 ul li a {
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  white-space: nowrap;
}

/* SHOW DROPDOWN ON HOVER (DESKTOP) */
nav ul li:hover .sub-menu-1 {
  display: block;
}

/* MOBILE MENU TOGGLE (EXPECTED ELEMENT) */
#menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  nav {
    flex-wrap: wrap;
  }

  #menu-toggle {
    display: block;
  }

  nav ul {
    width: 100%;
    flex-direction: column;
    display: none;
    background: #ffffff;
    margin-top: 1rem;
    border-top: 1px solid #ddd;
  }

  nav ul.open {
    display: flex;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    width: 100%;
    padding: 1rem;
    border-bottom: 1px solid #eee;
  }

  /* MOBILE DROPDOWN */
  .sub-menu-1 {
    position: static;
    box-shadow: none;
    border-radius: 0;
    display: none;
  }

  nav ul li:hover .sub-menu-1 {
    display: none;
  }

  nav ul li.open .sub-menu-1 {
    display: block;
  }

  .sub-menu-1 ul li a {
    padding-left: 2rem;
    background: #f9f9f9;
  }
}

/* PAGE OFFSET FOR FIXED HEADER */
body {
  padding-top: 90px;
}

.hero-image {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
}

/* Typography */
.hero-overlay h1 {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-overlay p {
  font-size: clamp(1rem, 3.5vw, 1.4rem);
  margin-bottom: 1.8rem;
  max-width: 600px;
}

/* Button */
.hero-btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  color: #fff;
  background: #cc00a0;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background: #8b3858;
}

/* SECTION STYLING */
.first-content {
  min-height: 70vh;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1.8rem;

  /* Soft gradient background */
  background: linear-gradient(
    135deg,
    rgba(240, 248, 255, 0.9),
    rgba(255, 255, 255, 1)
  );
  border-radius: 20px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  justify-content: center;
  align-items: center;
  text-align: center;

}

p {
  max-width: 700px;
  font-size: 1.1rem;
  line-height: 1.6;
  
}
/* MOBILE */
@media (max-width: 768px) {
  .first-content {
    padding: 3rem 1.2rem;
    border-radius: 14px;
  }
}

/*************************************************************************about*************************************************************************************/

/* Donate Page */
.donate-about {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.donate-about h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
}

.donate-about p {
  max-width: 700px;
  margin: auto;
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

/* Vision & Mission */
.vision-mission {
  background: #f9f9f9;
  padding: 80px 20px;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.vision-card {
  background: #ffffff;
  padding: 40px 25px;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.vision-card i {
  font-size: 2.5rem;
  color: #b28b2e;
  margin-bottom: 15px;
}

.vision-card h3 {
  margin-bottom: 10px;
}

.vision-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Donation Section */
.donation-section {
  padding: 90px 20px;
  background: #ffffff;
  text-align: center;
}

.donation-box {
  max-width: 900px;
  margin: auto;
}

.donation-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.donation-card {
  background: #f9f9f9;
  padding: 30px 20px;
  border-radius: 14px;
}

.donation-card i {
  font-size: 2rem;
  color: #b28b2e;
  margin-bottom: 15px;
}

.donate-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #b28b2e;
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
}

.donate-btn:hover {
  background: #9a7726;
}

/* Founders Section */
.founders-section {
  padding: 100px 20px;
  background: #f4f4f4;
}

.founders-layout {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 40px;
  align-items: center;
}

/* Text */
.founders-text h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.founders-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  max-width: 350px;
}

/* Grid */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */
.founder-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* Image */
.founder-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.founder-card:hover img {
  filter: grayscale(0%);
}

/* Name */
.founder-card h4 {
  margin: 15px 0 5px;
  font-size: 1.1rem;
  color: #222;
}

/* Role */
.founder-card span {
  display: block;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #777;
}

/* Tablet */
@media (max-width: 1024px) {
  .founders-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founders-text p {
    margin: auto;
  }

  .founders-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .founders-grid {
    grid-template-columns: 1fr;
  }

  .founder-card img {
    height: 260px;
  }
}

/************************************************************************** our work*********************************************************************/
/* OUR WORK PAGE */
.our-work {
  padding: 80px 20px;
  background: #ffffff;
}

.work-container {
  max-width: 900px;
  margin: 0 auto;
}

.work-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.work-divider {
  width: 60px;
  height: 3px;
  background: #b28b2e;
  border: none;
  margin: 20px auto 40px;
}

.work-intro {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: #333;
}

.work-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 50px;
}

/* Sections */
.work-section {
  margin-bottom: 60px;
}

.work-section h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #222;
}

.work-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

.work-section ul {
  padding-left: 20px;
}

.work-section ul li {
  margin-bottom: 10px;
  color: #444;
}

/* CTA Box */
.work-cta {
  margin-top: 80px;
  background: #2f1c6a;
  padding: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.work-cta h3 {
  color: #ffffff;
  font-size: 1.4rem;
}

.work-btn {
  background: #ffffff;
  color: #2f1c6a;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.work-btn:hover {
  background: #f1f1f1;
}

/* Mobile */
@media (max-width: 600px) {
  .work-title {
    font-size: 2rem;
  }

  .work-cta {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}


/***************************************************************************8 blog page******************************************************************/

/***********************
 BLOG PAGE – SAFE ADDON
 Does NOT override main CSS
***********************/

/* PAGE HEADER */
.page-header {
  background: linear-gradient(135deg, #96505ce0, #813c78);
  padding: 4rem 1.5rem;
  text-align: center;
  color: #fff;
}

.page-header-content h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.page-header-content p {
  font-size: 1rem;
}

.page-header-content a {
  color: #fff;
  text-decoration: underline;
}

/* BLOG HEADER */
.blog-header {
  text-align: center;
  padding: 4rem 1.5rem 2rem;
}

.blog-header h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.blog-header .verse {
  font-style: italic;
  color: #666;
  max-width: 700px;
  margin: auto;
}

/* CATEGORY FILTERS */
.categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 2rem 1.5rem;
}

.category {
  border: 1px solid #813c78;
  background: transparent;
  color: #813c78;
  padding: 0.6rem 1.4rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category:hover,
.category.active {
  background: #813c78;
  color: #fff;
}

/* BLOG GRID */
.blog-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: #fff;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
}

.blog-card h3 {
  margin-bottom: 0.8rem;
}

.blog-card p {
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.blog-card a {
  font-weight: 600;
  color: #813c78;
  text-decoration: none;
}

.blog-card a:hover {
  text-decoration: underline;
}

/* FADE IN */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}



/***************************************************************************************************************footer**************************************************************************************/
/* FOOTER BASE */
.footer {
  background: #000000; /* matches purple navbar */
  color: #ffffff;
  padding: 4rem 1.5rem 2rem;
  font-family: Arial, sans-serif;
}

/* CONTAINER */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

/* COLUMNS */
.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.6rem;
}

.footer-column ul li a {
  color: #e0dbf5;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

/* TEXT */
.footer-column p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e0dbf5;
}

/* NEWSLETTER */
.newsletter {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0;
}

.newsletter input {
  flex: 1;
  padding: 0.6rem;
  border-radius: 4px;
  border: none;
  outline: none;
}

.newsletter button {
  padding: 0.6rem 1rem;
  background: #ffffff;
  color: #3b2a75;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

.newsletter button:hover {
  opacity: 0.9;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.social-icons a {
  font-size: 1.4rem;
  text-decoration: none;
  color: #ffffff;
}

/* QUOTE BUTTON */
.quote-button {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background: #ffffff;
  color: #3b2a75;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
}

.quote-button:hover {
  background: #eae6ff;
}

/* FOOTER BOTTOM */
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 0.9rem;
  color: #d6cff0;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
  .footer {
    padding: 3rem 1.2rem;
  }

  .newsletter {
    flex-direction: column;
  }
}

.social-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* BASE ICON STYLE */
.social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1effa;
  color: #3b2a75;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* HOVER EFFECT */
.social-icons a:hover {
  transform: translateY(-4px);
  color: #fff;
}

/* BRAND COLORS */
.social-icons a.facebook:hover {
  background: #1877f2;
}

.social-icons a.instagram:hover {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.social-icons a.tiktok:hover {
  background: #000000;
}

/* MOBILE */
@media (max-width: 768px) {
  .social-icons {
    gap: 0.8rem;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/************************************************************************************************************************************Donation page*******************************************************************************/

/*********************************
 DONATE PAGE – PROFESSIONAL POLISH
*********************************/

/* DONATE SECTION */
.donate-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
  text-align: center;
}

/* INTRO */
.donate-intro h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #3b2a75;
}

.donate-intro p {
  max-width: 720px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

/* BUTTON ROW */
.donation-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  margin: 2.5rem 0 3.5rem;
  flex-wrap: wrap;
}

/* PAYFAST FORM */
.donation-row form {
  display: flex;
  justify-content: center;
}

/* DONATE BUTTONS */
.donate-btn {
  min-width: 260px;
  padding: 1rem 2.2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  letter-spacing: 0.3px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.donate-btn.dark {
  background: linear-gradient(135deg, #2f2f2f, #1e1e1e);
}

.donate-btn.purple {
  background: linear-gradient(135deg, #6f4bc2, #3b2a75);
}

/* HOVER EFFECT */
.donate-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

/* LOGOS */
.donation-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin-top: 2rem;
  opacity: 0.9;
}

.donation-logos img {
  max-width: 160px;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.donation-logos img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* NOTE */
.donate-note {
  background: #f6f4fb;
  padding: 2rem 1.5rem;
  margin-top: 4rem;
  border-radius: 14px;
  text-align: center;
}

.donate-note p {
  font-size: 1rem;
  color: #555;
}

/* MODAL POLISH */
.modal-content {
  text-align: left;
  animation: pop 0.3s ease;
}

@keyframes pop {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .donate-intro h2 {
    font-size: 1.8rem;
  }

  .donation-row {
    gap: 1.5rem;
  }

  .donate-btn {
    width: 100%;
    min-width: unset;
  }

  .donation-logos {
    gap: 2rem;
    flex-wrap: wrap;
  }
}

/* BLUR BACKDROP */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* MODAL CARD */
.modal-content {
  background: #ffffff;
  padding: 2.5rem 3rem;
  max-width: 480px;
  width: 90%;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  position: relative;
  animation: scaleIn 0.35s ease;
}

/* CLOSE BUTTON */
.modal .close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 1.6rem;
  cursor: pointer;
  color: #666;
}

.modal .close:hover {
  color: #000;
}

/* MODAL TEXT */
.modal-content h3 {
  margin-bottom: 1.5rem;
  color: #3b2a75;
  text-align: center;
}

.modal-content p {
  margin: 0.6rem 0;
  font-size: 0.95rem;
  color: #444;
}

.modal-content small {
  display: block;
  margin-top: 1.5rem;
  text-align: center;
  color: #666;
  font-size: 0.85rem;
}

/* ANIMATION */
@keyframes scaleIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/*********************************
 EFT MODAL – CENTER + BLUR
*********************************/

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #ffffff;
  padding: 2.5rem 3rem;
  max-width: 480px;
  width: 90%;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  position: relative;
  animation: scaleIn 0.35s ease;
}

.modal .close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 1.6rem;
  cursor: pointer;
  color: #666;
}

.modal .close:hover {
  color: #000;
}

.modal-content h3 {
  margin-bottom: 1.5rem;
  color: #3b2a75;
  text-align: center;
}

.modal-content p {
  margin: 0.6rem 0;
  font-size: 0.95rem;
  color: #444;
}

.modal-content small {
  display: block;
  margin-top: 1.5rem;
  text-align: center;
  color: #666;
  font-size: 0.85rem;
}

@keyframes scaleIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal {
  display: none; /* 👈 this is critical */
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}


/**************************************************************************************************************************contact page***********************************************************************************/
/* HEADER */
.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-header h1 {
  font-size: 2.5rem;
  color: #3b2a75;
}

.contact-header p {
  font-size: 1.1rem;
  color: #666;
}

/* FORM */
.contact-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1.5rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.contact-form button {
  width: 100%;
  padding: 0.9rem;
  background: #3b2a75;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

.contact-form button:hover {
  opacity: 0.9;
}

/* INFO */
.contact-info {
  padding: 2rem;
}

.contact-info h3 {
  margin-bottom: 1rem;
  color: #3b2a75;
}

.contact-info p {
  margin-bottom: 0.8rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

/********************************************************************************certificate******************************************************************************/

/* Certificates Coming Soon Section */
.certificates-coming {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.certificates-coming .container {
  max-width: 800px;
  margin: 0 auto;
}

.certificates-coming h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #333;
}

.certificates-coming p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Coming Soon Card */
.coming-soon-box {
  margin-top: 40px;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Icon Styling */
.coming-soon-box i {
  font-size: 3rem;
  color: #b28b2e; /* gold accent */
}

/* Text inside card */
.coming-soon-box p {
  font-size: 1rem;
  color: #444;
  max-width: 600px;
}

/* Fade-in animation (if not already defined) */
.fade-in {
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .certificates-coming h2 {
    font-size: 1.8rem;
  }

  .coming-soon-box {
    padding: 30px 20px;
  }
}

/***********************************************************programmes*********************************/

/* Programmes Section */
.programmes-section {
  padding: 90px 20px;
  background: #ffffff;
  text-align: center;
}

.section-title {
  font-size: 2.4rem;
  color: #333;
  margin-bottom: 15px;
}

.section-intro {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

/* Grid */
.programmes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Card */
.programme-card {
  background: #f9f9f9;
  padding: 40px 25px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.programme-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Icon */
.programme-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: #b28b2e;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

/* Card Text */
.programme-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #222;
}

.programme-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Button */
.programme-btn {
  display: inline-block;
  padding: 10px 22px;
  background: #b28b2e;
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.programme-btn:hover {
  background: #9a7726;
}

/* Mobile */
@media (max-width: 600px) {
  .section-title {
    font-size: 2rem;
  }
}
