/**
 * WEBSITE: https://themefisher.com
 * TWITTER: https://twitter.com/themefisher
 * FACEBOOK: https://www.facebook.com/themefisher
 * GITHUB: https://github.com/themefisher/
 */

/* INAfrica brand colors: green + yellow (from the logo) plus sky-blue as an equal third */
:root {
  --brand-green: #2fb44b;
  --brand-yellow: #ede32b;
  --brand-blue: #29abe2;
}

/*  typography */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@font-face {
  font-family: "futura-bold";
  src: url("../fonts/Futura-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  color: #5c5c77;
}

p, .paragraph {
  font-weight: 400;
  color: #5c5c77;
  font-size: 15px;
  line-height: 1.9;
  font-family: "Poppins", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  color: #1e1e4b;
  font-family: "futura-bold";
  font-weight: 700;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 60px;
}
@media (max-width: 575px) {
  h1, .h1 {
    font-size: 45px;
  }
}

h2, .h2 {
  font-size: 40px;
}
@media (max-width: 575px) {
  h2, .h2 {
    font-size: 30px;
  }
}

h3, .h3 {
  font-size: 25px;
}
@media (max-width: 575px) {
  h3, .h3 {
    font-size: 20px;
  }
}

h4, .h4 {
  font-size: 20px;
}
@media (max-width: 575px) {
  h4, .h4 {
    font-size: 18px;
  }
}

h5, .h5 {
  font-size: 18px;
}
@media (max-width: 575px) {
  h5, .h5 {
    font-size: 16px;
  }
}

h6, .h6 {
  font-size: 16px;
}
@media (max-width: 575px) {
  h6, .h6 {
    font-size: 14px;
  }
}

/* Button style */
.btn {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  padding: 15px 40px;
  border-radius: 0;
  font-weight: 500;
  border: 0;
  position: relative;
  z-index: 1;
  transition: 0.2s ease;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  position: absolute;
  content: "";
  height: 80%;
  width: 100%;
  left: 0;
  bottom: 10%;
  z-index: -1;
  transition: transform 0.2s ease-in-out;
  transform-origin: top;
  transform: scaleY(0);
}
.btn:active, .btn:hover, .btn.focus, .btn:focus, .btn.active {
  outline: 0;
  box-shadow: none !important;
}
.btn:active::before, .btn:hover::before, .btn.focus::before, .btn:focus::before, .btn.active::before {
  transform: scaleY(1);
  transform-origin: bottom;
}

.btn-sm {
  font-size: 14px;
  padding: 10px 35px;
}

.btn-xs {
  font-size: 12px;
  padding: 5px 15px;
}

.btn-primary {
  color: #fff;
  background-color: #ffbc3b;
}
.btn-primary::before {
  background-color: #fff;
}
.btn-primary:active, .btn-primary:hover, .btn-primary.focus, .btn-primary:focus, .btn-primary.active {
  color: #ffbc3b !important;
  background-color: #ffab08 !important;
  border-color: #ffab08 !important;
}

.btn-outline-primary {
  color: #ffbc3b;
  background-color: transparent;
  border: 1px solid #ffbc3b;
}
.btn-outline-primary::before {
  background-color: #fff;
}
.btn-outline-primary:active, .btn-outline-primary:hover, .btn-outline-primary.focus, .btn-outline-primary:focus, .btn-outline-primary.active {
  color: #ffbc3b !important;
  background-color: #ffbc3b !important;
  border-color: #ffbc3b !important;
}

.btn-light {
  color: #ffbc3b;
  background-color: #fff;
  border: 1px solid #fff;
}
.btn-light::before {
  background-color: #ffbc3b;
}
.btn-light:active, .btn-light:hover, .btn-light.focus, .btn-light:focus, .btn-light.active {
  color: #fff !important;
  background-color: #fff !important;
  border: 1px solid #fff !important;
}

body {
  background-color: #fff;
  overflow-x: hidden;
}

::-moz-selection {
  background: var(--brand-blue);
  color: #fff;
}

::selection {
  background: var(--brand-blue);
  color: #fff;
}

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #FFDC11;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

ol,
ul {
  list-style-type: none;
  margin: 0px;
}

img {
  vertical-align: middle;
  border: 0;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a,
button,
select {
  cursor: pointer;
  transition: 0.2s ease;
}
a:focus,
button:focus,
select:focus {
  outline: 0;
}

a:hover {
  color: var(--brand-blue);
}

a.text-primary:hover {
  color: #ffbc3b !important;
}

a.text-light:hover {
  color: #ffbc3b !important;
}

h4 {
  transition: 0.2s ease;
}

a h4:hover {
  color: #ffbc3b;
}

.slick-slide {
  outline: 0;
}

.section {
  padding-top: 90px;
  padding-bottom: 90px;
}
.section-sm {
  padding-top: 40px;
  padding-bottom: 40px;
}
.section-title {
  margin-bottom: 30px;
}

.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.border-primary {
  border-color: #ededf1 !important;
}

/* overlay */
.overlay {
  position: relative;
}
.overlay::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #1a1a37;
  opacity: 0.8;
}

.outline-0 {
  outline: 0 !important;
}

.d-unset {
  display: unset !important;
}

.bg-primary {
  background: #ffbc3b !important;
}

.bg-secondary {
  background: #1a1a37 !important;
}

.bg-gray {
  background: #f8f8f8;
}

.text-primary {
  color: #ffbc3b !important;
}

.text-color {
  color: #5c5c77;
}

.text-light {
  color: #8585a4 !important;
}

.text-lighten {
  color: #d6d6e0 !important;
}

.text-muted {
  color: #b5b5b7 !important;
}

.text-dark {
  color: #1e1e4b !important;
}

.font-secondary {
  font-family: "futura-bold";
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.pl-150 {
  padding-left: 150px;
}

.zindex-1 {
  z-index: 1;
}

@media (max-width: 991px) {
  .overflow-md-hidden {
    overflow: hidden;
  }
}

/* Below 992px the top-header's 3 col-lg-4 columns (WhatsApp / animated
   text / social icons) stack into 3 rows instead of 1, so the fixed
   header is taller than the desktop 180px offset accounts for. */
@media (max-width: 991px) {
  .below-fixed-header {
    padding-top: 280px;
  }
}
@media (max-width: 575px) {
  .below-fixed-header {
    padding-top: 320px;
  }
}

.vertical-align-middle {
  vertical-align: middle;
}

.icon-md {
  font-size: 36px;
}

/* page title */
.page-title-section {
  padding: 200px 0 80px;
  background-image: linear-gradient(120deg, var(--brand-green) 0%, var(--brand-blue) 100%) !important;
}
.page-title-section.overlay::before {
  background: rgba(0, 0, 0, 0.25);
}

.custom-breadcrumb li.nasted {
  position: relative;
  padding-left: 25px;
}
.custom-breadcrumb li.nasted::before {
  position: absolute;
  font-family: "themify";
  content: "\e649";
  font-size: 20px;
  top: 50%;
  left: -5px;
  color: #fff;
  transform: translateY(-50%);
}

/* /page title */
.list-styled {
  padding-left: 25px;
}
.list-styled li {
  position: relative;
  margin-bottom: 15px;
}
.list-styled li::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #ffbc3b;
  left: -25px;
  top: 5px;
}
/* ---------------- Header & Navigation ---------------- */
header .top-header {
  font-size: 16px;
  font-weight: 500;
  background: #f8f9fa;
  padding: 8px 0;
  max-height: 200px; /* generous cap so real content never clips; only used to animate to 0 */
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
}
/* Below 992px the WhatsApp / ticker / social-icons columns stack into 3
   rows instead of 1, so the 200px cap sized for desktop clips them. Same
   content, same layout — just enough room for it to fully fit. */
@media (max-width: 991px) {
  header .top-header {
    max-height: 260px;
  }
}
@media (max-width: 575px) {
  header .top-header {
    max-height: 300px;
  }
}
header .top-header.hide {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}
header .top-header a {
  color: #2fb44b !important;
  margin-right: 15px;
  font-weight: 500;
}
header .top-header a:hover {
  color: #ede32b !important;
  text-decoration: underline;
}

/* Right-side icon/Donate/Staff row: always stays on a single line */
header .top-header .top-header-icons {
  white-space: nowrap;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
header .top-header .top-header-icons::-webkit-scrollbar {
  display: none;
}
header .top-header .top-header-icons .list-inline-item {
  margin: 0;
}
header .top-header .top-header-icons a {
  margin-right: 8px;
  padding: 4px 2px;
  font-size: 14px;
}
header .top-header .top-header-icons .list-inline-item:last-child a {
  margin-right: 0;
}

/* Clears the fixed header for pages whose first section isn't already
   offset by .hero-section / .page-title-section padding. */
.below-fixed-header {
  padding-top: 180px;
}

/* Sponsored advert card (homepage + article sidebar) */
.advert-card-wrap {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 10px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  background: #fff;
  box-sizing: border-box;
}
.advert-card-wrap .advert-card img {
  margin: 0 auto;
}

/* Post body content: any image dropped into Summernote fits the screen and
   centers automatically, no manual resizing needed. */
.content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
}
.content figure {
  max-width: 100%;
  margin: 20px auto;
  text-align: center;
}
.content figure img {
  margin: 0 auto 8px auto;
}
.content figcaption {
  font-size: 13px;
  font-style: italic;
  color: #98a6ad;
}

/* Featured-image placeholder when a post has no image */
.post-image-placeholder {
  background: #f8f9fa;
  border: 1px dashed rgba(0,0,0,0.15);
  border-radius: 6px;
  padding: 40px 20px;
  color: #98a6ad;
}
.post-image-placeholder i {
  font-size: 32px;
  display: block;
  margin-bottom: 8px;
}
.advert-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #98a6ad;
  margin-bottom: 6px;
}
.advert-title {
  font-size: 13px;
  font-weight: 500;
  color: #5c5c77;
  margin-top: 8px;
}

/* Main Navigation */
.navigation {
  background: #ede32b; /* consistent brand yellow */
  transition: background 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  color: #2fb44b !important;
}

.navbar-brand img {
  max-height: 90px;
  margin-right: 8px;
  border-radius: 6px;
}

/* Navbar items */
#mainNav .navbar-nav {
  display: flex !important;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
}

@media (min-width: 992px) {
  #mainNav .navbar-nav {
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
  }

  #mainNav .nav-item {
    flex-shrink: 1;
    min-width: 0;
  }

  /* Open Category/Region dropdowns on hover instead of requiring a click */
  #mainNav .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

#mainNav .nav-link {
  font-weight: 600;
  color: #2fb44b !important;
  padding: 12px 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease, background 0.3s ease;
}

#mainNav .nav-link:hover,
#mainNav .nav-item.active .nav-link {
  color: #fff !important;
  background: #2fb44b;
  border-radius: 4px;
}

/* Sub Navigation */
#subNav {
  display: inline-block;       /* shrink to fit links */
  background: #1a1a37;         /* only behind links */
  border-top: 2px solid var(--brand-blue);
  padding: 6px 12px;           /* spacing around links */
  margin: 0;                   /* attach directly to main nav */
  float: right;                /* push subnav to right end */
}

#subNav .navbar-nav {
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

#subNav .nav-item {
  list-style: none;
}

#subNav .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-blue);
  padding: 6px 12px;
  white-space: nowrap;
  transition: color 0.3s ease;
}

#subNav .nav-link:hover {
  color: var(--brand-yellow);
  text-decoration: underline;
}




/* Mobile adjustments: keep the same brand yellow + green nav colors as
   desktop (#mainNav .nav-link above), just adjust spacing for touch.
   Sub-nav stays a single row and scrolls horizontally instead of
   stacking vertically, which used to inflate the header's real height. */
@media (max-width: 991px) {
  #mainNav .nav-link {
    padding: 10px 12px;
  }

  #subNav {
    float: none;
    display: block;
    width: 100%;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  #subNav::-webkit-scrollbar {
    display: none;
  }

  #subNav .navbar-nav {
    flex-direction: row;
    flex-wrap: nowrap;
    white-space: nowrap;
    justify-content: flex-start;
    text-align: left;
    gap: 0.75rem;
  }
}

/* Animated header text */
#animated-text {
  white-space: nowrap;
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
  color: red;
}

#brandText {
  border-right: 2px solid #2fb44b; /* blinking cursor effect */
  white-space: nowrap;
  overflow: hidden;
}
@keyframes blinkCursor {
  0%, 49% { border-color: #2fb44b; }
  50%, 100% { border-color: transparent; }
}
#brandText {
  animation: blinkCursor 0.8s steps(1) infinite;
}


/* ---------------- Newsletter ---------------- */
.newsletter {
  max-width: 600px;
  margin: 0 auto -10px auto;
}
.newsletter-form {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
}
.newsletter-form .form-control {
  height: 45px;
  background: #fff;
  border-radius: 4px 0 0 4px;
  border: none;
  font-size: 14px;
  padding-left: 15px;
}
.newsletter-form .form-control:focus {
  border-color: #ffbc3b;
  box-shadow: none;
}
.newsletter-form .btn {
  height: 45px;
  border: none;
  font-size: 14px;
  border-radius: 0 4px 4px 0;
  padding: 0 20px;
}

/* ---------------- Footer ---------------- */
.bg-footer {
  background-color: var(--brand-blue);
}
.footer {
  border-color: #494a43 !important;
  padding: 22px 0;
}
.footer h6 {
  font-weight: 600;
  margin-bottom: 8px;
}
.footer a {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  letter-spacing: 0.3px;
  line-height: 1.8;
  transition: color 0.25s ease, text-decoration 0.25s ease;
}
.footer a:hover {
  color: #ffbc3b;
  text-decoration: underline;
  font-weight: 500;
}

/* Footer Logo */
.logo-footer {
  background: linear-gradient(135deg, var(--brand-yellow), var(--brand-green));
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.logo-footer:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.footer-logo {
  max-height: 60px;
  border-radius: 60%;
}

/* Footer contact */
.footer-contact li {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.footer-contact a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-contact a:hover {
  color: #fff;
  text-decoration: underline;
}


  .hero-section.overlay {
  position: relative;
  background-image: linear-gradient(120deg, var(--brand-green) 0%, var(--brand-blue) 100%);
  color: white;
}

.hero-section.overlay::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26, 26, 55, 0.1);
  z-index: 0;
}

/* The Africa map: a real <img>, never cropped, always shows the full picture */
.hero-map-img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 750px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.25);
  position: relative;
  z-index: 1;
}

/* Quotes (left) and Recent Updates (right) sit flush against the edges, no gutter */
.hero-section .row.align-items-center > .col-md-3:first-child {
  padding-left: 0;
  padding-right: 0;
}
.hero-section .row.align-items-center > .col-md-3:last-child {
  padding-left: 0;
  padding-right: 0;
}

/* Recent Updates slider: cover image + title, cycling one at a time */
.recent-updates-slider .hero-slider-item {
  text-align: center;
}
.recent-update-cover {
  width: 100%;
  max-width: 320px;
  height: 200px;
  object-fit: cover;
}

.hero-section > .container,
.hero-section > .container .row > div,
.hero-section .container {
  position: relative;
  z-index: 1; /* above overlay */
}

.hero-section .container > h1 {
  color: white !important;
}

/* "Quotes of The Day:" heading stays on one line even in the narrower column */
.hero-section .col-md-3 > h1 {
  white-space: nowrap;
  font-size: 22px;
}
@media (max-width: 767px) {
  .hero-section .col-md-3 > h1 {
    white-space: normal;
    font-size: 36px;
  }
}

.hero-section h1,
.hero-section p,
.hero-section .hero-slider-item {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

/* Quote styling: bold, italic, white with quotation marks */
.hero-slider-item p {
  font-weight: bold;
  font-style: italic;
  color: white !important;
  font-size: 1.1rem;
  line-height: 1.5;
  position: relative;
}

/* Use standard quotation marks " " */
.hero-slider-item p::before {
  content: '"';
  font-size: 1.6rem;
  margin-right: 0.2em;
}

.hero-slider-item p::after {
  content: '"';
  font-size: 1.6rem;
  margin-left: 0.2em;
}

/* Hero Section Padding */
.hero-section {
  padding: 170px 0 90px;
}

@media (max-width: 991px) {
  .hero-section {
    padding: 170px 0 60px;
  }
}

/* Arrows for hero slider */
.hero-slider .prevArrow,
.hero-slider .nextArrow {
  position: absolute;
  bottom: -123px;
  z-index: 9;
  padding: 15px;
  color: rgba(255, 255, 255, 0.5);
  border: 0;
  font-size: 30px;
}

.hero-slider .prevArrow:focus,
.hero-slider .nextArrow:focus {
  outline: 0;
}

.hero-slider .prevArrow:hover,
.hero-slider .nextArrow:hover {
  color: #ede32b;
}

.hero-slider .prevArrow {
  right: 60px;
}

.hero-slider .nextArrow {
  right: 0;
}

/* On mobile, let touch swipe (already enabled by Slick's default swipe:true)
   drive the slider instead of the arrow buttons cluttering the layout. */
@media (max-width: 767px) {
  .hero-slider .prevArrow,
  .hero-slider .nextArrow {
    display: none;
  }
}

/* Dots for hero slider */
.hero-slider .slick-dots {
  position: absolute;
  left: 0;
  bottom: -100px;
  padding-left: 0;
}

.hero-slider .slick-dots li {
  display: inline-block;
  margin: 0 6px;
}

.hero-slider .slick-dots li.slick-active button {
  background: #ede32b;
}

.hero-slider .slick-dots li button {
  color: transparent;
  padding: 0;
  overflow: hidden;
  height: 10px;
  width: 10px;
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  outline: 0;
}
.hero-section h1 {
    color: #fff!important; /* yellow */
  }

/* banner feature */
.feature-icon {
  font-size: 50px;
  color: #ede32b;
  display: inline-block;
}

.feature-blocks {
  margin-top: -100px;
  padding-left: 70px;
  padding-top: 80px;
  padding-right: 30%;
}
@media (max-width: 1400px) {
  .feature-blocks {
    padding-right: 10%;
  }
}
@media (max-width: 1200px) {
  .feature-blocks {
    padding-right: 50px;
    padding-left: 50px;
    padding-top: 50px;
  }
  .feature-blocks h3 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .feature-blocks {
    margin-top: 60px;
    padding: 50px;
  }
  .feature-blocks h3 {
    font-size: 25px;
  }
}

/* /banner feature */
/* course */
.card-btn {
  font-size: 12px;
  padding: 5px 10px;
}

.flex-basis-33 {
  flex-basis: 33.3333%;
}

.hover-shadow {
  transition: 0.3s ease;
}
.hover-shadow:hover {
  box-shadow: 0px 4px 25px 0px rgba(27, 39, 71, 0.15);
}

/* Professional card styling — border + soft shadow on every content card site-wide */
.card {
  border: 1px solid #ededf1;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(27, 39, 71, 0.08);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(27, 39, 71, 0.14);
}
.alert {
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(27, 39, 71, 0.06);
}

/* /course */
/* success story */
.success-video {
  min-height: 300px;
}
.success-video .play-btn {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .success-video .play-btn {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.play-btn {
  display: inline-block;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background: #ffbc3b;
  color: #fff;
  font-size: 20px;
  text-align: center;
}
.play-btn i {
  line-height: 80px;
}
.play-btn::before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -2;
  transition: 0.3s ease;
  transition-delay: 0.2s;
}
.play-btn::after {
  position: absolute;
  content: "";
  height: 80%;
  width: 80%;
  transform: translate(-50%, -50%);
  background: #ffbc3b;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -1;
  transition: 0.3s ease;
}
.play-btn:hover::before {
  height: 80%;
  width: 80%;
  transition-delay: 0s;
}
.play-btn:hover::after {
  height: 0;
  width: 0;
  transition: 0s ease;
}

/* /success story */
/* events */
.card-date {
  position: absolute;
  background: #ffbc3b;
  font-family: "futura-bold";
  text-align: center;
  padding: 10px;
  color: #fff;
  top: 0;
  left: 0;
  
}
.card-date span {
  font-size: 40px;
}

/* /events */
/* teacher */
.teacher-info {
  width: 70%;
  bottom: 0;
  right: 0;
}


/* ---------------- Misc (keep from your theme) ---------------- */
.filter-controls li {
  cursor: pointer;
  transition: 0.1s ease;
}
.filter-controls li.active {
  font-weight: 600;
  color: #ffbc3b;
}
.filter-controls li:hover {
  color: #ffbc3b;
}

/* ---------------- About page ---------------- */
.about-page p {
  color: #000;
  text-align: justify;
}
.about-page .card {
  border: 1px solid #d8d8d8;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

/* ---------------- Post share buttons & follow-us icons ----------------
   No custom spacing existed before; default inline-block Bootstrap
   buttons could butt up against each other / wrap awkwardly on narrow
   phone screens. Flex + wrap + gap keeps them evenly spaced at any width. */
.social-share-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.social-share-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
