/* Base Reset */
html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100vw;
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #ffffff;
  color: white;
}
body {
  padding-top: 0; /* reset */
}

/* Top Header Bar */
.header-top {
  background-color: #1b6342;
  padding: 12px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  color: white;
}

.header-top .container-fluid {
  padding: 0 7%;
}
.follow-us {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
  font-size: 14px;
  padding-left: 20px;   /* adjust this value until it lines up */
}


.follow-us span {
  color: white;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.social-icon:hover {
  background-color: #00a109;
  color: #094411;
  transform: translateY(-2px);
}

.contact-info {
  display: flex;
  gap: 25px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}

.contact-info span {
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info i {
  font-size: 16px;
}

/* Navbar */
.navbar-nav .nav-link {
  color: #000703 !important;
  padding: 0 15px;
  font-weight: 900;
  font-size: 15px;
  background-color: transparent !important;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-item {
  margin-left: 0.6rem;
  margin-right: 0.6rem;
}

.navbar-nav .nav-link:hover {
  color: #ffd500!important;
  background-color: transparent !important;
}

.reflection-btn {
  background-color: #2d6a4f;
  color: #ffd60a !important;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: 0.3s;
}

.reflection-btn:hover {
  background-color: #40916c;
  color: #ffd60a !important;
  box-shadow: 0 4px 12px rgba(64, 145, 108, 0.3);
}

.navbar {
  position: fixed;
  top: 44px;
  left: 0;
  width: 100%;
  z-index: 1020;
  background-color: #ffffff !important;
  padding: 0.8rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar .container-fluid {
  padding: 0 7%;
}

/* Dropdown Menu Styles */
.navbar-nav .dropdown-menu {
  background-color: #2d6a4f;
  border: none;
  border-radius: 8px;
  padding: 12px 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.25s ease-in-out;
  z-index: 1030;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar-nav .dropdown-item {
  color: #f0f5f0;
  padding: 12px 20px;
  transition: all 0.3s ease;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-nav .dropdown-item:hover {
  background-color: #40916c;
  color: #ffd60a;
  padding-left: 28px;
}

.navbar-nav .dropdown-item i {
  font-size: 14px;
  transition: all 0.3s ease;
}

.navbar-nav .dropdown-item:hover i {
  color: #ffb703;
}

.navbar-nav .dropdown-toggle::after {
  border: solid #0a2818;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  margin-left: 6px;
  transform: rotate(45deg);
  transition: all 0.3s ease;
  color: #ffd60a;
  transition: all 0.3s ease;
}

.navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
  border-color: #ffb703;
  transform: rotate(-135deg);
}

.navbar-nav .dropdown-toggle:hover::after {
  border-color: #ffb703;
}

.navbar-nav .dropdown-toggle:hover {
  color: #ffb703 !important;
}


/* Standard Bootstrap Hamburger Toggle */
.navbar-toggler {
  border: none;
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  cursor: pointer;
}

.navbar-toggler:focus {
  text-decoration: none;
  opacity: 0.75;
  box-shadow: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: -0.125em;
  border-top: 0.25em solid #000;
  border-bottom: 0.25em solid #000;
  box-shadow: 0 0.5em 0 0 #000;
} 
@media (max-width: 768px) {
  .navbar-nav {
    text-align: left;
    align-items: flex-start;
    background-color: #ffffff;
    padding: 10px 0;
    margin-top: 10px;
    border-top: 1px solid #e0e0e0;
  }
  .navbar-nav .nav-item {
    width: 100%;
    margin: 0;
  }
  .navbar-nav .nav-link {
    display: block;
    width: 100%;
    padding: 12px 20px;
    color: #000703 !important;
    border-bottom: 1px solid #f0f0f0;
  }
  .navbar-nav .nav-link:hover {
    background-color: #f5f5f5;
  }
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    z-index: 1025;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  .navbar-collapse.show {
    padding: 0;
  }
  .navbar-nav .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    background-color: #f9f9f9;
    border-radius: 0;
    margin-top: 0;
  }
  .navbar-nav .dropdown-item {
    padding: 10px 30px;
    color: #000703 !important;
  }
  .navbar-nav .dropdown-item:hover {
    background-color: #f0f0f0;
    color: #000703 !important;
  }
  body {
    padding-top: 44px;
  }
}

/* Hide the top header bar on mobile */
@media (max-width: 768px) {
  .header-top {
    display: none;
  }
}
@media (min-width: 769px) {
  body {
    padding-top: 120px; /* header-top + navbar height on desktop */
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 70px; /* only navbar height on mobile */
  }
}

/* Keep navbar fixed at the top */
.navbar {
  position: fixed;      /* stick to top */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;        /* higher than page content */
}

/* Add spacing so page content doesn't hide under navbar */
body {
  padding-top: 70px;    /* adjust to your navbar height */
}
.navbar-toggler {
  border: none;
  background: transparent;
  padding: 0.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px; /* tighter spacing */
}

.toggler-bar {
  display: block;
  width: 22px;          /* slightly smaller width */
  height: 2px;          /* thinner bars */
  background-color: #333; /* change to #fff if navbar is dark */
  transition: all 0.3s ease;
}

/* Animate into X when expanded */
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -3px);
}


/* Hide the top header bar on mobile, show on desktop */
@media (max-width: 768px) {
  .header-top {
    display: none;   /* hidden on phones/tablets */
  }
  .navbar {
    top: 0;          /* navbar moves to very top when header is hidden */
  }
  body {
    padding-top: 70px; /* only navbar height on mobile */
  }
}

@media (min-width: 769px) {
  .header-top {
    display: block;  /* visible on desktop */
  }
  .navbar {
    top: 44px;       /* sits below header-top on desktop */
  }
  body {
    padding-top: 120px; /* header-top + navbar height */
  }
}

/* ================= HERO SECTION ================= */
/* ================= HERO FULLSCREEN ================= */
/* Base style for all SAMS slides */
.sams-first, .sams-second, .sams-third, .sams-fourth {
  position: relative;
  width: 100%;
  height: 100vh;       /* full viewport height */
  overflow: hidden;
}

/* Remove underline from carousel buttons */
.sams-first-btn,
.sams-second-btn,
.sams-third-btn,
.sams-fourth-btn {
  text-decoration: none;   /* removes underline */
}

.sams-first-btn:hover,
.sams-second-btn:hover,
.sams-third-btn:hover,
.sams-fourth-btn:hover {
  text-decoration: none;   /* keep underline off on hover too */
}

/* Images */
.sams-first-img, .sams-second-img, .sams-third-img, .sams-fourth-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradient overlay for contrast */
.sams-first::after,
.sams-second::after,
.sams-third::after,
.sams-fourth::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7) 30%,   /* strong dark on left */
    rgba(0, 0, 0, 0.3) 60%,   /* fade in middle */
    rgba(0, 0, 0, 0) 100%     /* transparent on right */
  );
  z-index: 1;
}

/* Content */
.sams-first-content, .sams-second-content, .sams-third-content, .sams-fourth-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 600px;
  z-index: 2; /* above overlay */
}

.sams-first-content h1,
.sams-second-content h1,
.sams-third-content h1,
.sams-fourth-content h1 {
  font-size: 3rem;
  font-weight: 900;
}

.sams-first-content p,
.sams-second-content p,
.sams-third-content p,
.sams-fourth-content p {
  font-size: 1.3rem;
  margin-top: 10px;
}

.sams-first-btn, .sams-second-btn, .sams-third-btn, .sams-fourth-btn {
  background-color: #1b6342; /* Seminary green */
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  margin-top: 20px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.sams-first-btn:hover,
.sams-second-btn:hover,
.sams-third-btn:hover,
.sams-fourth-btn:hover {
  background-color: #145233;
}

/* Responsive */
@media (max-width: 768px) {
  .sams-first-content h1,
  .sams-second-content h1,
  .sams-third-content h1,
  .sams-fourth-content h1 { font-size: 2rem; }

  .sams-first-content p,
  .sams-second-content p,
  .sams-third-content p,
  .sams-fourth-content p { font-size: 1rem; }
}

 @keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate(-30px, -50%); /* X shift + keep Y centering */
  }
  to {
    opacity: 1;
    transform: translate(0, -50%);     /* back to centered */
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
    transform: translate(0, -50%);
  }
  to {
    opacity: 0;
    transform: translate(-30px, -50%);
  }
}

/* Apply animation when carousel item is active */
.carousel-item.active .sams-first-content,
.carousel-item.active .sams-second-content,
.carousel-item.active .sams-third-content,
.carousel-item.active .sams-fourth-content {
  animation: fadeInLeft 1.5s ease forwards;
}

/* When carousel item is leaving */
.carousel-item:not(.active) .sams-first-content,
.carousel-item:not(.active) .sams-second-content,
.carousel-item:not(.active) .sams-third-content,
.carousel-item:not(.active) .sams-fourth-content {
  animation: fadeOutLeft 0.8s ease forwards;
}

/* Desktop: keep arrows outside the text area */
.carousel-control-prev {
  left: -60px;
}
.carousel-control-next {
  right: -60px;
}

/* Mobile: move controls below indicators */
@media (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
    position: static;       /* remove absolute positioning */
    display: inline-block;
    margin: 0 8px;
  }

  .carousel-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }

  .carousel-indicators {
    order: 1;
    margin-bottom: 8px;
  }

  .carousel-controls {
    order: 2;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-size: 1.5rem 1.5rem; /* smaller icons for mobile */
  }
}


/* Admissions Hero */
.admissions-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}
.admissions-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
}
.admissions-hero-content {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-width: 700px;
  text-align: center;
  color: #fff;
}
.admissions-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(27, 99, 66, 0.9) 0%,
    rgba(0, 33, 71, 0.85) 100%);
  z-index: 1;
}
.admissions-hero-title {
  font-size: 48px;
  font-weight: 900;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.admissions-hero-subtext {
  font-size: 18px;
  margin-bottom: 25px;
  color: #f1f1f1;
}
.admissions-hero-btn {
  background: #fff;
  color: #002147;
  border-radius: 25px;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.3s ease;
}
.admissions-hero-btn:hover {
  background: #1b6342;
  color: #fff;
  transform: translateY(-2px);
}

/* Admissions Intro */
.admissions-intro {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
}
.admissions-intro-text h2 {
  color: #00472c;
}
.admissions-intro-text p {
  font-size: 1rem;
  line-height: 1.6;
}
.admissions-intro-text .lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: #1b6342;
}/* Sidebar Styling */
.sidebar {
  background-color: #f9f9f9;       /* soft background */
  border-radius: 12px;             /* rounded corners */
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* subtle shadow */
}

.sidebar h2 {
  font-size: 1.4rem;
  font-weight: 700;                /* stronger heading weight */
  color: #1b6342;                  /* seminary green */
  margin-bottom: 15px;
  border-bottom: 2px solid #1b6342; /* accent underline */
  padding-bottom: 5px;
}

.sidebar ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.sidebar ul li {
  margin-bottom: 10px;
}

.sidebar ul li a {
  text-decoration: none;
  color: #003319;                  /* deep green text */
  font-weight: 500;
  transition: color 0.3s ease;
}

.sidebar ul li a:hover {
  color: #1b6342;                  /* highlight on hover */
}

.main-container{
margin-bottom: 60px;
}

.sams-footer{
margin-top: 40px;
}

/* Responsive Sidebar */
@media (max-width: 768px) {
  .sidebar {
    margin: 20px auto;             /* center block on mobile */
    max-width: 95%;                /* fit nicely on screen */
    text-align: left;              /* keep text left-aligned */
  }

  .sidebar h2 {
    font-size: 1.2rem;             /* smaller headings */
    text-align: center;            /* center headings for balance */
  }

  .sidebar ul li a {
    font-size: 0.95rem;            /* slightly smaller links */
    display: block;                /* stack links neatly */
    padding: 8px 0;                /* spacing for touch targets */
  }
}

@media (max-width: 576px) {
  .sidebar h2 {
    font-size: 1rem;               /* compact heading size */
  }

  .sidebar ul li a {
    font-size: 0.9rem;             /* comfortable mobile size */
  }
}
 /* Sidebar Accordion Styling */
.sidebar .accordion-button {
  background-color: #f1f1f1;
  color: #003319;
  font-weight: 600;
  border: none;
  box-shadow: none;
}

.sidebar .accordion-button:not(.collapsed) {
  background-color: #1b6342; /* seminary green when open */
  color: #fff;
}

.sidebar .accordion-body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
  border-left: 3px solid #1b6342;
  padding: 15px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .sidebar {
    max-width: 95%;
    margin: 20px auto;
  }
  .sidebar .accordion-button {
    font-size: 0.95rem;
    padding: 10px;
  }
  .sidebar .accordion-body {
    font-size: 0.9rem;
  }
}


/* Responsive tweaks */
@media (max-width: 768px) {
  .admissions-hero { height: 55vh; }
  .admissions-hero-content { top: 70%; max-width: 90%; }
  .admissions-hero-title { font-size: 32px; }
  .admissions-hero-subtext { font-size: 16px; }
}
@media (max-width: 576px) {
  .admissions-hero { height: 45vh; }
  .admissions-hero-content { top: 75%; }
  .admissions-hero-title { font-size: 24px; }
  .admissions-hero-subtext { font-size: 14px; }
}

/* Clean Tiny Blue Circular Indicators */
.carousel-indicators {
  bottom: 35px;
}

.carousel-indicators [data-bs-target] {
  width: 8px !important;
  height: 8px !important;
  flex: none !important;  /* prevents horizontal bars */
  border-radius: 50%;
  background-color: rgba(255,255,255,0.4);
  border: none;
  margin: 0 4px;
  transition: 0.25s ease;
}

.carousel-indicators .active {
  background-color: #0d6efd !important; /* blue active circle */
  transform: scale(1.4);
}

/* Reflection button: no underline and yellow outline only */
a.reflection-btn,
a.reflection-btn:link,
a.reflection-btn:visited {
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 6px 14px;
  background: #ffffff;
  color:  #d8aa14 !important;
  font-weight: 600;
  border: none;

  transition: background .18s ease, outline-color .18s ease, transform .18s ease;
}

a.reflection-btn:hover,
a.reflection-btn:focus {

  outline-color: #ffd75a;       /* lighter yellow on hover/focus */
  color: #0e3b20 !important;
  transform: translateY(-1px);
}

/* Use an actual <img> inside the hero to avoid excessive CSS upscaling blur.
   object-fit gives the same full-bleed look but preserves browser image scaling. */
.hero { position: relative; overflow: hidden; }
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  image-rendering: auto;
  transform: none;
  filter: none;
  will-change: auto;
  z-index: 1;
  max-width: none;
  background-color: #f8f8f8;
}

/* ensure overlays and text remain above the image */
.hero::before { z-index: 2; }
.hero-content { z-index: 5; }
/* ------------------ PRELOADER ------------------ */
#preloader {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: #0e3b20; display: flex; align-items: center; justify-content: center;
  z-index: 9999;
}
.loader { display: flex; gap: 10px; }
.loader span {
  width: 15px; height: 15px; background: #16a34a; border-radius: 50%;
  animation: bounce 0.6s infinite alternate;
}
.loader span:nth-child(2) { animation-delay: 0.2s; }
.loader span:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce { to { transform: translateY(-20px); opacity: 0.6; } }



/* ================= HERO SECTION ================= */
.sams-hero-wrap {
  background: #f9f9f9; /* light neutral background */
  padding: 80px 5%;
  position: relative;
}

.sams-hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Text block */
.sams-hero-text {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sams-welcome-title {
  font-size: 2.0rem;
  font-weight: 900;
  margin-bottom: 15px;
  color: #1b6342; /* seminary green */
}

.sams-welcome-slogan {
  font-size: 1.4rem;
  font-weight: 600;
  color: rgb(250, 164, 26); /* golden accent */
  margin-bottom: 20px;
}

.sams-accent-line {
  width: 80px;
  height: 4px;
  background-color: rgb(250, 164, 26);
  margin-bottom: 20px;
}
.sams-hero-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #333;
  text-align: justify;   /* justify text on desktop */
}

/* Images container */
.sams-hero-images {
  flex: 1 1 45%;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Top image */
.sams-img-top {
  width: 70%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  animation: floatUpDown 6s ease-in-out infinite;
}

/* Bottom image */
.sams-img-bottom {
  width: 70%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  position: absolute;
  bottom: 0;
  right: 15%;
  z-index: 1;
  animation: floatDownUp 6s ease-in-out infinite;
}

/* Overlay icons */
.sams-media-icons {
  position: absolute;
  bottom: 10%;
  right: 10%;
  display: flex;
  gap: 12px;
  font-size: 1.5rem;
  color: rgb(250, 164, 26);
}

/* Animations */
@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes floatDownUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(15px); }
}

/* ================= RESPONSIVE ================= */



/* Tablet */
@media (max-width: 992px) {
  .sams-welcome-title { font-size: 2.2rem; }
  .sams-welcome-slogan { font-size: 1.2rem; }
  .sams-hero-desc { font-size: 1rem; }
  .sams-img-top, .sams-img-bottom { width: 60%; }
}

/* Mobile (with overlap + float preserved) */
@media (max-width: 768px) {
  .sams-hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .sams-hero-text {
    flex: 1 1 100%;
    align-items: center;
    margin-bottom: 30px;
  }

  .sams-hero-images {
    flex: 1 1 100%;
    min-height: 300px;       /* smaller height */
    position: relative;      /* keep absolute children */
    justify-content: center;
  }

  .sams-img-top,
  .sams-img-bottom {
    width: 85%;              /* shrink images */
    max-width: 100%;
    height: auto;
    position: absolute;      /* keep overlay */
    border-radius: 10px;
  }

  .sams-img-top {
    top: 0;
    right: 5%;
    animation: floatUpDown 6s ease-in-out infinite;
  }

  .sams-img-bottom {
    bottom: 0;
    left: 5%;
    animation: floatDownUp 6s ease-in-out infinite;
  }

  .sams-media-icons {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    font-size: 1.2rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .sams-welcome-title { font-size: 1.8rem; }
  .sams-welcome-slogan { font-size: 1rem; }
  .sams-hero-desc {
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .sams-hero-wrap { padding: 50px 8%; }
}


/* ================= SEARCH BAR ================= */
.sermon-search-wrap {
  background: #fff;
  padding: 40px 6%;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  margin-bottom: 60px;
}

.sermon-search-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sermon-input {
  flex: 1;
  background: #f3f3f3;
  padding: 18px 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sermon-input input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
}

.date-btn {
  background: #f26f3b;
  color: #fff;
  border: none;
  padding: 18px 40px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}


/* ================= SERMON GRID ================= */
.sermon-grid {
  padding: 0 6% 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* ================= SERMON CARD ================= */
.sermon-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.sermon-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.sermon-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Play icon */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 55px;
  height: 55px;
  background: #f26f3b;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
}

/* Video Controls bottom left */
.media-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #000;
  color: #fff;
  width: 90px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  font-size: 14px;
}

/* ================= SERMON TEXT ================= */
.sermon-text {
  padding: 25px;
}

.sermon-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0b3052;
  margin-bottom: 15px;
}

.sermon-author {
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sermon-author span {
  color: #f26f3b;
  font-weight: 600;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .sermon-grid {
    grid-template-columns: 1fr;
  }

  .sermon-search-box {
    flex-direction: column;
  }

  .date-btn {
    width: 100%;
    justify-content: center;
  }
}
 


/* Section background: keep light, but not tinted */
.seminary-features {
  padding: 100px 0;
  background: #ffffff; /* pure white background */
}

.seminary-features .section-title h2 {
  font-size: 2.0rem;
  font-weight: 900;
  color: #1b6342;             /* solid dark text */
  letter-spacing: 1px;
  text-transform: none;     /* prevent uppercase */
}

.seminary-features .section-title p {
  color: #555;              /* softer gray */
  font-size: 17px;
  margin-top: 10px;
  text-transform: none;     /* ensure lowercase stays lowercase */
}


/* Feature cards: pure white, sharp contrast */
.feature-box {
  position: relative;
  background: #ffffff;  /* solid white */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08); /* subtle shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

/* Remove gradient overlay */
.feature-box::before {
  display: none;
}

.feature-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #eee; /* clean separation */
}

.feature-content {
  padding: 24px;
  text-align: center;
}

.feature-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2d6a4f; /* seminary green accent */
  margin-bottom: 10px;
}

.feature-content p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

 /* ================= STATS SECTION ================= */
.stats-section {
  padding: 80px 0;
  position: relative;
  width: 100%;
  background: url('images/vocation image.avif') center center / cover no-repeat;
  background-attachment: fixed;
  text-align: center;
  color: #ffffff;
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4); /* overlay for readability */
  z-index: 1;
}

.stats-section .container {
  position: relative;
  z-index: 2;
}

.stat-box {
  background: none;
  border: none;
  box-shadow: none;
  padding: 20px;
}

.stat-box i {
  font-size: 36px;
  color: #2d6a4f; /* seminary green icons */
  margin-bottom: 12px;
  display: block;
}

.stat-box h2 {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff; /* white numbers */
  margin-bottom: 6px;
}

.stat-box p {
  font-size: 15px;
  color: #f0f0f0; /* softer white labels */
  margin: 0;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .stats-section {
    background-attachment: scroll;
    padding: 60px 20px;
  }

  .stat-box h2 {
    font-size: 32px;
  }
}




.vocation-section {
  padding: 80px 0;  /* add or increase vertical padding */
  margin-bottom: 80px;  /* add space before footer */
  position: relative;
  width: 100vw;
  height: 70vh;
  margin-left: calc(-50vw + 50%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 100%), 
                    url('images/vocation\ image.avif');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center; 
  justify-content: flex-start;
  padding: 0;
  overflow: hidden;
}

.vocation-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(87, 86, 86, 0.85) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.1) 80%);
  z-index: 1;
}

.vocation-inner {
  position: relative;
  z-index: 2;
  padding: 0rem;
  max-width: 600px;
  margin-left: 8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vocation-text h1 {
  font-family: 'Montserrat', sans-serif;
  color: #ffb703;
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
  text-align: left;   /* align text left */
}

.vocation-text p {
  color: #f0f0f0;
  font-size: 1.125rem;
  line-height: 1.6;
  text-align: justify;
}
.vocation-text .btn {
  background-color: transparent;   /* no fill */
  color: #ffb703;                 /* text color matches border */
  border: 0.5px solid #c7d326;       /* thin outline */
 
  border-radius: 15px;
  font-weight: bold;
  cursor: pointer;
  width: fit-content;
  transition: all 0.3s ease;
}

.vocation-text .btn:hover {
  background-color: #e7e8e9;       /* fill on hover */
  color: rgb(2, 99, 39);                    /* invert text color */
}


/* Fade-in animation */
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(30px);
}

.fade-in-on-scroll.visible {
  animation: fadeIn 2s ease-in-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: none;
  }
}


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




  .vocation-section {
    height: auto;
    padding: 3rem 1.5rem;
    background-attachment: scroll;
  }

  .vocation-inner {
    margin-left: 0;
    padding: 1.5rem;
    max-width: 100%;
  }

  .vocation-text h1 {
    font-size: 1.0rem;
    text-align: center;
  }

  .vocation-text p {
    text-align: center;
  }

  .vocation-text .btn {
    margin: 0 auto;
  }
}




/* SECTION BASE */
.formation-live-section {
  padding: 5rem 15px;
  background: #fff;
  color: #333;
}

.formation-live-wrap {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

/* LEFT TEXT */
.formation-live-text {
  display: flex;
  gap: 1.2rem;
}

.live-vertical-line {
  width: 3px;
  height: 120px;
  background: linear-gradient(to bottom, #2d6a4f, transparent);
}

.formation-live-text h2 {
  font-size: 1.8rem;
  color: #2d6a4f;
  margin-bottom: 1rem;

}

.formation-live-text p {
  line-height: 1.6;
  color: #555;
  font-size: 1rem;
  text-align: justify;
}

/* ORBIT DASHBOARD */
.live-orbit {
  position: relative;
  width: 320px;   /* larger orbit container */
  height: 320px;
  margin: auto;
  border-radius: 50%;
}

/* HOLY SPIRIT CORE */
.holy-core {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 100px;   /* larger core */
  height: 100px;
  background: radial-gradient(circle, #ffd700, #ff9800);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: bold;
  color: #000;
  text-align: center;
  z-index: 5;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
  animation: pulse 2s infinite alternate;
  font-size: 1rem;
}

@keyframes pulse {
  from { box-shadow: 0 0 10px rgba(255, 215, 0, 0.6); }
  to   { box-shadow: 0 0 25px rgba(255, 215, 0, 0.9); }
}

/* ENERGY RING */
.energy-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(0,0,0,0.2);
  animation: spin 20s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ORBIT NODES */
.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;    /* larger nodes */
  height: 80px;
  margin: -40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  font-size: 0.9rem;
  animation: orbit 14s linear infinite;
}

/* Shared orbit animation — nodes circle around the core */
@keyframes orbit {
  from { transform: rotate(0deg) translate(120px) rotate(0deg); }
  to   { transform: rotate(360deg) translate(120px) rotate(-360deg); }
}

/* Each orbit node spaced by delay */
.human-orbit { background: #17a2b8; animation-delay: 0s; }
.academic-orbit { background: #28a745; animation-delay: -3.5s; }
.spiritual-orbit { background: #6f42c1; animation-delay: -7s; }
.pastoral-orbit { background: #fd7e14; animation-delay: -10.5s; }

/* CLOUD GLOWS */
.orb-cloud {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.15;
}

.c1 {
  width: 140px;
  height: 140px;
  background: #0d6efd;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.c2 {
  width: 160px;
  height: 160px;
  background: #ffc107;
  bottom: -25px;
  left: 10%;
}
.c3 {
  width: 120px;
  height: 120px;
  background: #28a745;
  right: -25px;
  top: 35%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .formation-live-wrap {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .formation-live-text {
    justify-content: center;
  }

  .live-vertical-line {
    display: none;
  }

  .live-orbit {
    width: 240px;   /* smaller orbit container for mobile */
    height: 240px;
  }

  .holy-core {
    width: 80px;
    height: 80px;
    font-size: 0.85rem;
  }

  .orbit {
    width: 60px;
    height: 60px;
    font-size: 0.8rem;
    animation-duration: 16s; /* slower on mobile */
  }

  @keyframes orbit {
    from { transform: rotate(0deg) translate(90px) rotate(0deg); }
    to   { transform: rotate(360deg) translate(90px) rotate(-360deg); }
  }
}


PRAYER SECTION CSS
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Georgia", serif;
}

.prayer-donate-section {
  display: flex;
  width: 100%;
  min-height: 520px;
}

/* BOTH SIDES */
.prayer-box,
.donate-box {
  position: relative;
  flex: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BACKGROUND IMAGES */
.prayer-box {
  background-image: url("images/sams\ image\ 10.jpg"); /* replace with your image */
}

.donate-box {
  background-image: url("images/vocation\ image.avif"); /* replace with your image */
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.content {
  position: relative;
  max-width: 420px;
  text-align: center;
  color: #fff;
  padding: 40px 20px;
}

.small-title {
  display: block;
  color: #f36b2f;
  font-size: 16px;
  margin-bottom: 8px;
}

.content h2 {
  font-size: 46px;
  margin-bottom: 20px;
}

.content p {
  font-size: 16px;
  color: #ddd;
  line-height: 1.7;
  margin-bottom: 30px;
}

.content h3 {
  font-size: 46px;
  margin-bottom: 25px;
}

/* BUTTON */
.btn-orange {
  display: inline-block;
  background: #f36b2f;
  color: #fff;
  padding: 14px 34px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 2px;
  transition: 0.3s ease;
}

.btn-orange:hover {
  background: #ff824e;
}

/* PROGRESS */
.progress-wrap {
  margin-bottom: 30px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #999;
  border-radius: 50px;
  overflow: hidden;
}

.progress-fill {
  width: 60%;
  height: 100%;
  background: #f36b2f;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 14px;
  color: #fff;
}

/* MOBILE */
@media (max-width: 900px) {
  .prayer-donate-section {
    flex-direction: column;
  }
}


/* ================= ALUMNI & IMPACT (BRIGHT WHITE UI) ================= */
.alumni-impact {
  padding: 120px 0;
  margin-top: 80px;  /* add space before alumni section */
  background: linear-gradient(180deg, #ffffff, #f4fffa);
  color: #0b0b0b;
  position: relative;
  overflow: hidden;
}

/* ===== SECTION TITLE ===== */
.impact-title h2 {
  font-size: 44px;
  font-weight: 900;
  background: linear-gradient(90deg, #ffd400, #2fdc8f);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.impact-title p {
  margin-top: 14px;
  color: #333;
  font-size: 17px;
}

/* ===== IMPACT NUMBERS GRID ===== */
.impact-stats-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

/* ===== BRIGHT DATA CARD ===== */
.impact-stat {
  background: #ffffff;
  border-radius: 26px;
  padding: 60px 25px 50px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  position: relative;
  transition: 0.35s ease;
  overflow: hidden;
  border: 1px solid #eaf7f0;
}

/* TOP DATA LINE */
.impact-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background: linear-gradient(90deg, #ffd400, #2fdc8f);
}

/* FLOW ANIMATION */
.impact-stat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(47, 220, 143, 0.25),
    transparent
  );
  transform: translateX(-100%);
  transition: 0.6s ease;
}

.impact-stat:hover::after {
  transform: translateX(100%);
}

.impact-stat:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 35px 70px rgba(0,0,0,0.14);
}

/* BIG NUMBER */
.impact-stat h3 {
  font-size: 60px;
  font-weight: 900;
  color: #0b0b0b;
  margin-bottom: 10px;
}

/* LABEL */
.impact-stat p {
  margin-top: 6px;
  letter-spacing: 2px;
  color: #444;
  font-size: 13px;
  text-transform: uppercase;
}
 
/* ===== CTA BUTTON ===== */
.impact-btn-wrap {
  margin-top: 90px;
  text-align: center;
}

.impact-btn {
  padding: 18px 55px;
  background: linear-gradient(90deg, #ffd400, #2fdc8f);
  color: #0b0b0b;
  font-weight: 900;
  letter-spacing: 2px;
  border-radius: 60px;
  text-decoration: none;
  transition: 0.4s ease;
  display: inline-block;
  box-shadow: 0 20px 50px rgba(47,220,143,0.35);
}

.impact-btn:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 30px 80px rgba(47,220,143,0.5);
}

/* ===== MOBILE ===== */
@media (max-width: 992px) {
  .impact-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-story-wrap {
    grid-template-columns: 1fr;
  }

  .impact-title h2 {
    font-size: 34px;
  }
}
/* ===== SUCCESS STORIES GRID ===== */
.impact-story-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* three boxes in a single row */
  gap: 30px; /* slightly smaller gap for compact look */
  margin-top: 60px; /* adjust top margin */
}

/* ===== IMAGE-TOP STORY CARD ===== */
.impact-story {
  background: #ffffff;
  border-radius: 20px; /* slightly smaller radius for tighter look */
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: 0.35s ease;
  border: 1px solid #e8f6f0;
  display: flex;
  flex-direction: column;
}

/* ===== STORY IMAGE ===== */
.impact-story img {
  width: 100%;
  height: 220px; /* smaller height */
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

/* ===== STORY TEXT AREA ===== */
.impact-story-content {
  padding: 25px 30px 30px; /* reduced padding */
  background: #ffffff;
}

/* ===== STORY TITLE ===== */
.impact-story-content h4 {
  font-size: 20px; /* slightly smaller font */
  font-weight: 900;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ffd400, #2fdc8f);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== STORY TEXT ===== */
.impact-story-content p {
  font-size: 14px; /* smaller font */
  line-height: 1.6;
  color: #333;
}

/* ===== HOVER EFFECT ===== */
.impact-story:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 28px 70px rgba(0,0,0,0.14);
}

.impact-story:hover img {
  transform: scale(1.05);
}

/* Ordination date style */
.impact-story-content .ordination-date {
  font-size: 14px;
  font-weight: 700;
  color: #2fdc8f; /* vibrant green */
  margin: 5px 0 15px; /* spacing below heading */
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Story title */
.impact-story-content h4 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 5px;
  color: #0b0b0b;
}
.alumni-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 40px;
}

.impact-story-wrap {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease-in-out;
}

.impact-story {
  flex: 0 0 280px;
  max-width: 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.impact-story img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.impact-story-content {
  padding: 15px;
}

/* Alumni arrows only */
.alumni-carousel .alumni-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 12px;
  cursor: pointer;
  z-index: 50; /* ensures arrows are visible above cards */
  border-radius: 50%;
}

.alumni-carousel .alumni-arrow.prev { left: -50px; }
.alumni-carousel .alumni-arrow.next { right: -50px; }

@media (max-width: 768px) {
  .impact-story {
    flex: 0 0 85%;
    max-width: 85%;
  }
  .impact-story img { height: 140px; }
  .alumni-carousel .alumni-arrow.prev { left: -30px; }
  .alumni-carousel .alumni-arrow.next { right: -30px; }
}



/* ================= SAMS FOOTER (exact replica) ================= */
/* Default: desktop view */
.sams-footer-desc {
  text-align: justify;
}

/* Mobile view: center text */
@media (max-width: 700px) {
  .sams-footer-desc {
    text-align: center;
  }
}

.sams-footer {
  position: relative;
  color: #ddd;
  background: #0b0b0b;
  overflow: hidden;
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial;
}

/* background image + subtle dark overlay to match screenshot */
.sams-footer-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/sams\ image\ 6.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.28; /* subtle darkened background */
  filter: brightness(0.25) contrast(0.85);
  z-index: 1;
}

/* main inner container */
.sams-footer-inner {
  position: relative;
  z-index: 2; /* above bg */
  display: grid;
  grid-template-columns: 1fr 0.9fr 1fr 0.9fr;
  gap: 40px;
  padding: 80px 7%;  /* match navbar .container-fluid padding */
  align-items: start;
  max-width: 1450px;
  margin: 0 auto;
}

/* columns */
/* BRAND column */
.sams-footer-brand .sams-footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.sams-logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f26c3a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.sams-logo-title {
  font-weight: 800;
  color: #fff;
  font-size: 22px;
  letter-spacing: -0.5px;
}

.sams-logo-sup {
  font-size: 12px;
  vertical-align: super;
  color: #f26c3a;
  margin-left: 4px;
}

.sams-logo-sub {
  font-size: 12px;
  color: #c7c7c7;
}

/* description */
.sams-footer-desc {
  color: #bdbdbd;
  max-width: 360px;
  margin-bottom: 18px;
  line-height: 1.7;
}

/* socials */
.sams-footer-socials {
  display: flex;
  gap: 12px;
}

.sams-social {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all .18s ease;
  font-size: 16px;
}

.sams-social:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.12);
}




/* FOOTER HEADINGS */
.sams-footer-heading {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.6px;
}

/* links list */
.sams-footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sams-footer-links li {
  margin: 10px 0;
}

.sams-footer-links a {
  color: #d1d1d1;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}

.sams-footer-links a::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f26c3a;
  font-size: 12px;
  top: 0;
  line-height: 1;
}

/* latest news items */
.sams-latest-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.05);
}

.sams-latest-thumb {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.03);
}

.sams-latest-meta .sams-latest-title {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.sams-latest-date {
  font-size: 12px;
  color: #f26c3a;
  margin-top: 6px;
}

/* instagram grid */
.sams-ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 6px;
}

.sams-ig-grid img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  display: block;
  border-radius: 3px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

/* bottom copyright bar */
.sams-footer-bottom {
  background: rgba(0,0,0,0.75);
  border-top: 1px solid rgba(255,255,255,0.02);
  margin-top: 18px;
}

.sams-footer-bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 7%;  /* match navbar padding */
  gap: 12px;
  color: #ccc;
  font-size: 14px;
  max-width: 1450px;
  margin: 0 auto;
}

/* small anchor style */
.sams-footer-bottom-inner a {
  color: #f26c3a;
  text-decoration: none;
  font-weight: 700;
}

/* responsive adjustments */
@media (max-width: 1100px) {
  .sams-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .sams-footer-col { margin-bottom: 12px; }
}

@media (max-width: 700px) {
  .sams-footer-inner {
    grid-template-columns: 1fr;
    padding: 40px 0;
  }
  .sams-footer-desc { max-width: 100%; }
  .sams-ig-grid img { height: 64px; }
  .sams-footer-bottom-inner { flex-direction: column; gap: 6px; padding: 20px 0; text-align: center; }
}

:root{
  --page-padding: clamp(16px, 6vw, 90px);
  --page-max-width: 1400px;
}

.page-wrap{
  max-width: var(--page-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--page-padding);
  padding-right: var(--page-padding);
  width: 100%;
  box-sizing: border-box;
}

.sams-footer {
  padding-left: 0;
  padding-right: 0;
}

.sams-footer-inner {
  padding-top: 80px;
  padding-bottom: 80px;
}

.sams-footer-bottom {
  padding: 0;
}

.sams-footer-bottom-inner {
  padding-top: 16px;
  padding-bottom: 16px;
}

.sams-footer .page-wrap,
.page-wrap.sams-footer-bottom-inner {
  padding-left: var(--page-padding) !important;
  padding-right: var(--page-padding) !important;
  max-width: var(--page-max-width) !important;
}

@media (max-width: 768px) {
  .sams-footer-inner { padding-top: 40px; padding-bottom: 40px; }
  .sams-footer-bottom-inner { padding-top: 12px; padding-bottom: 12px; }
}



/* ================= HERO / CONTACT HEADER ================= */

/* ===============================
   Administration Hero Section
================================ */

.administration-hero {
  height: 60vh;
  overflow: hidden;
  position: relative;
}

.administration-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(55%);
}

.administration-hero-content {
  max-width: 750px;
  padding: 20px;
}

/* Hero Title */
.administration-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

/* Hero Paragraph */
.administration-hero-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #f1f1f1;
}

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

  .administration-hero {
    height: 70vh;
  }

  .administration-hero-content h1 {
    font-size: 2rem;
  }

  .administration-hero-content p {
    font-size: 1rem;
  }

}
/* Rector Message Paragraph Styling */
.rector-text p {
  font-size: 1.05rem;   /* paragraph size */
  color: #444;          /* paragraph color */
  line-height: 1.8;     /* better readability */
}

/* Rector Name */
.rector-text p.fw-semibold {
  color: #2e7d32;       /* seminary green */
  font-size: 1rem;
}
h2, h3, h5 {
  font-weight: 600;
}
 

section {
  padding: 60px 0;
}

/* ================= HERO / CONTACT HEADER ================= */
.contact-us-section {
  background: 
    linear-gradient(
      135deg,
      rgba(234, 255, 244, 0.95),
      rgba(201, 243, 223, 0.95),
      rgba(182, 236, 211, 0.95)
    ),
    url('images/seminary 2.webp') center center / cover no-repeat;
  padding: 90px 0;
}

.contact-us-section .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.contact-us-section .section-title h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0f5132;
}

.contact-us-section .section-title p {
  max-width: 750px;
  margin: 0 auto;
  color: #2f4f46;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ================= MAIN TWO-BOX SECTION ================= */
.contact-section {
  background: linear-gradient(135deg, #f5f5f5, #f1f1f1, #f8f8f8);
  padding-top: 60px;
  padding-bottom: 60px;
}

.contact-section .row.g-0 {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* ================= LEFT IMAGE SIDE ================= */
.left-side {
  background: url('images/best solution image.jpg') center/cover no-repeat;
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.left-side::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(160, 240, 210, 0.35);
  z-index: 1;
}

.left-side > * {
  position: relative;
  z-index: 2;
}

/* ================= OVERLAY CARD ================= */
.overlay-card {
  background: rgba(255, 255, 255, 0.88);
  padding: 30px;
  border-radius: 12px;
  color: #0f5132;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.overlay-card h3 {
  margin-bottom: 15px;
  font-weight: 700;
}

/* ================= FORM SIDE ================= */
.form-side {
  background: linear-gradient(135deg, #ffffff, #eafff4);
}

.form-side h2 {
  font-size: 1.8rem;
  color: #0f5132 !important;
}

.form-control {
  background-color: #ffffff;
  border: 1px solid #b6ecd3;
  color: #0f5132;
}

.form-control::placeholder {
  color: #6b9085;
}

/* ================= BUTTON ================= */
.btn-primary {
 
  border: none;
  color: #ffffff;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffffff, #16a34a);
}

/* ================= INFO CARDS ================= */
.info-cards {
  margin-top: 50px;
}

.info-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  color: #0f5132;
  border: 1.5px solid #b6ecd3;
  transition: 0.3s ease-in-out;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

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

.info-card .icon {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #22c55e;
}

.info-card h5 {
  margin-bottom: 8px;
  font-weight: 600;
}

.info-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #2f4f46;
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 768px) {
  /* Hero Section */
  .contact-us-section {
    padding: 60px 0;
  }

  .contact-us-section .section-title h2 {
    font-size: 2.2rem;
  }

  /* Two-Box Section */
  .contact-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .contact-section .row.g-0 {
    border-radius: 10px;
  }

  /* Form Side */
  .form-side {
    padding: 40px 20px;
  }

  .form-side h2 {
    font-size: 1.5rem;
  }

  /* Info Cards */
  .info-card {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .contact-us-section .section-title h2 {
    font-size: 1.8rem;
  }

  .info-cards .col-md-3 {
    margin-bottom: 20px;
  }

  .info-card {
    padding: 15px;
  }

  .form-side h2 {
    font-size: 1.4rem;
  }
}
 



*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

/* Navbar (basic styling so it looks okay even if your main style.css isn't loaded here) */
.navbar{
  background: #0b1f33; /* you can change to match your main theme */
  padding: 12px 16px;
}

.navbar .nav-link{
  color: #fff;
  opacity: 0.9;
  font-weight: 500;
}

.navbar .nav-link:hover{
  opacity: 1;
}

.navbar .nav-link.active{
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 8px;
}

.reflection-btn{
  background: #faa41a;
  color: #000;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
}

.reflection-btn:hover{
  opacity: 0.9;
}






.hero-section{
  background-image: url("images/seminary test.webp");
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;

  padding: 400px 16px 150px; /* more space above */
}


.hero-section h1{
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-section p{
  font-size: 1.2rem;
  margin-bottom: 30px;
  
}

.hero-btn{
  margin: 10px;
  padding: 15px 30px;
  font-size: 1.1rem;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  text-decoration: none;
}

/* Content */
.content-section{
  display: flex;
  gap: 30px;
  padding: 50px 16px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}

.content-left{
  flex: 0.6;
}

.content-left h2{
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.content-left p{
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.content-right{
  flex: 0.4;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
 

.stat-box h3{
  font-size: 2rem;
  margin-bottom: 10px;
}

.stat-box p{
  font-size: 1rem;
}

/* Footer */
.footer{
  background-color: #343a40;
  color: #fff;
  padding: 20px;
  text-align: center;
}

/* Responsive */
@media (max-width: 992px){
  .content-section{
    flex-direction: column;
  }

  .hero-section h1{
    font-size: 2.2rem;
  }
}

/* ================= ALUMNI DIRECTORY (CLEAN BG + WHITE + GREEN) ================= */
:root{
  --green: #1f8a43;
  --green-soft: rgba(31, 138, 67, 0.10);

  --text: #0f172a;
  --muted: #64748b;

  --border: #e5e7eb;
  --card: #ffffff;

  /* sharp clean background (not pure white) */
  --bg: #f6f8fb;
}

/* Page background */
body{
  background: var(--bg);
  color: var(--text);
}

/* Directory section */
.alumni-directory{
  padding: 70px 0;
  background: transparent; /* uses body background */
}

/* Heading */
.alumni-head{
  text-align: center;
  margin-bottom: 18px;
}

.alumni-head h2{
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
  color: var(--text);
}

.alumni-head p{
  margin: 0;
  color: var(--muted);
}

/* ================= Controls wrap (modern + optional sticky) ================= */
.alumni-controls-wrap{
  margin: 18px 0 25px;
}

/* If you want sticky filters, keep this class on the wrap */
.alumni-controls-wrap.is-sticky{
  position: sticky;
  top: 78px; /* adjust if your navbar height differs */
  z-index: 50;
}

/* Controls bar */
.alumni-controls{
  display: grid;
  grid-template-columns: 1fr 240px 220px 120px; /* Search | Year | Sort | Clear */
  gap: 12px;

  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

/* Inputs */
.alumni-controls .form-control,
.alumni-controls .form-select{
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 12px;
  height: 46px;
}

.alumni-controls .form-control::placeholder{
  color: #94a3b8;
}

.alumni-controls .form-control:focus,
.alumni-controls .form-select:focus{
  border-color: rgba(31, 138, 67, 0.45);
  box-shadow: 0 0 0 4px rgba(31, 138, 67, 0.12);
  outline: none;
}

/* Clear button (Bootstrap outline-light won't show well on white) */
.alumni-controls .btn-outline-light{
  border-color: var(--border) !important;
  color: var(--text) !important;
  background: #fff !important;
  border-radius: 12px;
  height: 46px;
  font-weight: 800;
}

.alumni-controls .btn-outline-light:hover{
  background: rgba(31, 138, 67, 0.08) !important;
  border-color: rgba(31, 138, 67, 0.25) !important;
}

/* Result count row */
.alumni-meta-row{
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ================= Cards ================= */
.alumni-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;

  height: 100%;
  display: flex;
  gap: 14px;
  align-items: center;

  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.alumni-card:hover{
  transform: translateY(-4px);
  border-color: rgba(31, 138, 67, 0.28);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.10);
}

.alumni-thumb{
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid var(--border);
  flex: 0 0 auto;
  background: #f8fafc;
}

.alumni-meta{
  flex: 1;
}

.alumni-name{
  font-weight: 900;
  margin: 0 0 4px;
  font-size: 1.02rem;
  color: var(--text);
}

.alumni-sub{
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.alumni-year{
  display: inline-block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--green);
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--green-soft);
  border: 1px solid rgba(31, 138, 67, 0.18);
}

/* Action button */
.alumni-actions{
  flex: 0 0 auto;
}

.alumni-actions .btn{
  border-radius: 12px;
  font-weight: 800;
  height: 38px;
  padding: 0 12px;
}

/* Your "View Profile" button */
.alumni-actions .btn.btn-light{
  background: var(--green);
  border: 1px solid var(--green);
  color: #fff;
}

.alumni-actions .btn.btn-light:hover{
  filter: brightness(0.95);
}

/* ================= Modal (white + green) ================= */
.alumni-modal{
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.alumni-modal .modal-header{
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.alumni-modal .modal-title{
  font-weight: 900;
  color: var(--text);
}

/* Fix close button visibility */
.alumni-modal .btn-close{
  filter: none;
  opacity: 1;
}

.alumni-modal .modal-footer{
  border-top: 1px solid var(--border);
  background: #fff;
}

.alumni-modal-body{
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
}

.alumni-modal-img{
  width: 180px;
  height: 180px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid var(--border);
  background: #f8fafc;
}

.label{
  font-weight: 900;
  color: var(--text);
}

.positions-list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.modal-bio{
  color: var(--muted);
  margin: 0;
}

/* ================= Responsive ================= */
@media (max-width: 992px){
  .alumni-controls{
    grid-template-columns: 1fr;
  }
  .alumni-controls-wrap.is-sticky{
    top: 68px;
  }
  .alumni-modal-body{
    grid-template-columns: 1fr;
  }
  .alumni-modal-img{
    width: 100%;
    height: 240px;
  }
}




/* ================= ALUMNI TESTIMONIALS (WHITE + GREEN) ================= */
.alumni-testimonials{
  padding: 70px 0;
  background: var(--bg);
}

.testimonials-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.testimonials-head h2{
  font-weight: 900;
  margin: 0 0 8px;
  color: var(--text);
}

.testimonials-head p{
  margin: 0;
  color: var(--muted);
  max-width: 680px;
}

.testimony-cta{
  background: var(--green);
  border: 1px solid var(--green);
  color: #fff;
  font-weight: 800;
  border-radius: 14px;
  padding: 12px 16px;
  white-space: nowrap;
}

.testimony-cta:hover{
  filter: brightness(0.95);
}

/* Slider */
.testimony-slider{
  overflow: hidden;
  border-radius: 18px;
  padding: 8px;
}

.testimony-track{
  display: flex;
  gap: 16px;
  will-change: transform;
  animation: testimonyScroll 22s linear infinite;
}

/* Pause on hover */
.testimony-slider:hover .testimony-track{
  animation-play-state: paused;
}

/* 3 cards in view */
.testimony-card{
  flex: 0 0 calc((100% - 32px) / 3);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.testimony-top{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.testimony-avatar{
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.testimony-top h5{
  margin: 0;
  font-weight: 900;
  color: var(--text);
  font-size: 1rem;
}

.testimony-top span{
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

.testimony-card p{
  margin: 0;
  color: #334155;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Animation (scroll left) */
@keyframes testimonyScroll{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

/* Modal styling */
.testimony-modal{
  border-radius: 18px;
  border: 1px solid var(--border);
}

.testimony-submit{
  background: var(--green);
  border: 1px solid var(--green);
  font-weight: 900;
  border-radius: 14px;
  padding: 12px 14px;
}

.testimony-submit:hover{
  filter: brightness(0.95);
}

/* Responsive: 2 cards on tablet, 1 on mobile */
@media (max-width: 992px){
  .testimonials-head{
    flex-direction: column;
    align-items: flex-start;
  }
  .testimony-card{
    flex: 0 0 calc((100% - 16px) / 2);
  }
}

@media (max-width: 576px){
  .testimony-card{
    flex: 0 0 100%;
  }
}



/* General */
body {
  background-color: white;
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
}

/* Navbar */
nav {
   
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  flex-wrap: wrap;
}
nav .logo {
  font-weight: bold;
  font-size: 1.5rem;
  text-decoration: none;
  color: white;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background 0.3s;
}
nav ul li a:hover, nav ul li a.active {
  background-color: #1f5c30;
}
nav .menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: url('images/reflection image.jpg') no-repeat center center/cover;
  height: 70vh; /* full viewport height */
  width: 100%;   /* full width */
  display: flex;
  align-items: center; /* vertically center content */
  justify-content: center; /* horizontally center content */
  text-align: center;
  color: rgb(255, 255, 255);
  padding-top: 60px; /* gives breathing room from navbar if fixed */
  box-sizing: border-box;
}
.hero-text h1 {
  font-size: 3rem;
  margin: 0;
  font-weight: 900; /* stronger heading weight */
}

.hero-text p {
  font-size: 1.5rem;
  margin-top: 10px;
  max-width: 500px;        /* narrower width keeps it centered */
  text-align: justify;     /* justify text edges */
  margin-left: auto;       /* center the block */
  margin-right: auto;      /* center the block */
  padding: 0 15px;         /* add breathing room on both sides */
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.2rem;   /* smaller heading */
  }
  .hero-text p {
    font-size: 1.2rem;   /* reduce paragraph size */
    max-width: 90%;      /* allow more width on mobile */
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 1.8rem;   /* even smaller heading */
  }
  .hero-text p {
    font-size: 1rem;     /* comfortable mobile size */
    max-width: 95%;      /* nearly full width */
  }
}

/* Main Container */
.main-container { display: flex; flex-wrap: wrap; padding: 20px; gap: 20px; }
.content-container { flex: 3; padding: 20px; background-color: #f8f8f8; border-radius: 10px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); }
.sidebar { flex: 1; background-color: #f1f1f1; padding: 20px; border-radius: 10px; }

/* Sections */
.section h2 { color: #2f8d46; font-size: 1.5rem; margin-bottom: 15px; }
.reflection { margin-bottom: 20px; }
.reflection h3 { margin-bottom: 5px; color: #2f8d46; }
.reflection-excerpt { font-size: 1rem; color: #555; }

/* Accordion */
.accordion {
  background-color: #e8f1e8;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
  margin: 10px 0;
  font-weight: 500;
}
.accordion-content { display: none; padding: 10px; background-color: #f0f5f0; margin-top: 10px; border-radius: 5px; }

/* Tabs */
.tab { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.tab-button {
  background-color: #2f8d46;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  flex: 1;
  text-align: center;
}
.tab-content { display: none; margin-top: 20px; }
.active-tab { display: block; }

/* Search Bar */
.search-bar { padding: 10px; width: 100%; margin-bottom: 20px; border-radius: 5px; border: 1px solid #ddd; }
.search-bar input { width: 100%; padding: 10px; border-radius: 5px; border: 1px solid #ccc; }

/* Media */
audio, video { width: 100%; border-radius: 10px; margin-top: 20px; }

/* Footer */
footer { background-color: #2f8d46; color: white; text-align: center; padding: 10px; position: fixed; width: 100%; bottom: 0; }

/* Responsive */
@media(max-width: 768px){
  .main-container { flex-direction: column; }
  .tab { flex-direction: column; }
  .tab-button { flex: 1 0 auto; }
  nav ul { display: none; width: 100%; flex-direction: column; gap: 10px; margin-top: 10px; }
  nav .menu-toggle { display: block; }
  nav ul.show { display: flex; }
}





 /* Formation Page Specific Styles */

    /* Hero Section */
    .form-hero {
      position: relative;
      height: 500px;
      background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
      overflow: hidden;
    }

    .form-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('images/church image.webp');
      background-size: cover;
      background-position: center;
      opacity: 0.3;
      z-index: 1;
    }

    .form-hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 40px 20px;
    }

    .form-hero h1 {
      font-size: 3rem;
      font-weight: 900;
      margin-bottom: 20px;
      text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
      letter-spacing: 1px;
    }

    .form-hero p {
      font-size: 1.2rem;
      font-weight: 300;
      text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    }

    .form-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 20px 20px 20px;
      background-color: #ffffff;
    }

    .form-header {
      text-align: center;
      margin-bottom: 50px;
      padding-bottom: 30px;
      border-bottom: 3px solid #2d6a4f;
    }

    .form-header h1 {
      color: #1b4332;
      font-size: 2.5rem;
      font-weight: 900;
      margin-bottom: 15px;
      letter-spacing: 0.5px;
    }

    .form-intro {
      color: #333;
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 50px;
      text-align: justify;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      padding: 30px;
      background-color: #f8f9fa;
      border-left: 5px solid #ffd60a;
    }

    .form-section {
      margin-bottom: 60px;
      padding: 40px;
      background-color: #f8f9fa;
      border-radius: 8px;
      border-left: 5px solid #2d6a4f;
    }

    .form-section h2 {
      color: #1b4332;
      font-size: 1.8rem;
      font-weight: 900;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .form-section p {
      color: #333;
      font-size: 1.05rem;
      line-height: 1.9;
      margin-bottom: 15px;
      text-align: justify;
    }

    .form-section h3 {
      color: #2d6a4f;
      font-size: 1.3rem;
      font-weight: 800;
      margin-top: 25px;
      margin-bottom: 15px;
    }

    .timeline-badge {
      display: inline-block;
      background-color: #2d6a4f;
      color: #ffffff;
      padding: 8px 16px;
      border-radius: 25px;
      font-weight: bold;
      font-size: 0.9rem;
      margin-bottom: 15px;
    }

    /* Section Image */
    .form-section-image {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 25px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .form-section-with-image {
      display: flex;
      flex-direction: column;
    }

    /* Sidebar */
    .form-sidebar {
      background-color: #f8f9fa;
      padding: 30px;
      border-radius: 8px;
      border-left: 5px solid #ffd60a;
      margin-top: 0;
    }

    .form-sidebar h4 {
      color: #1b4332;
      font-weight: 900;
      margin-bottom: 20px;
      text-transform: uppercase;
      font-size: 1.1rem;
      letter-spacing: 0.5px;
    }

    .form-sidebar ul {
      list-style: none;
      padding: 0;
    }

    .form-sidebar li {
      margin-bottom: 12px;
    }

    .form-sidebar a {
      color: #2d6a4f;
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s ease;
      display: flex;
      align-items: center;
    }

    .form-sidebar a:hover {
      color: #ffd60a;
    }

    .form-sidebar a i {
      margin-right: 8px;
      color: #ffd60a;
    }

    .contact-box {
      background-color: #ffffff;
      border: 2px solid #2d6a4f;
      padding: 25px;
      border-radius: 8px;
      margin-top: 30px;
    }

    .contact-box h5 {
      color: #1b4332;
      font-weight: 900;
      margin-bottom: 15px;
      text-transform: uppercase;
      font-size: 1rem;
    }

    .contact-box p {
      color: #333;
      margin-bottom: 8px;
      font-size: 0.95rem;
    }

    /* Breadcrumb */
    .breadcrumb-custom {
      background-color: #f8f9fa;
      padding: 20px 0;
      border-bottom: 2px solid #2d6a4f;
    }

    .breadcrumb-custom a {
      color: #2d6a4f;
      font-weight: 600;
    }

    .breadcrumb-custom a:hover {
      color: #ffd60a;
      text-decoration: none;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .form-header h1 {
        font-size: 1.8rem;
      }

      .form-section {
        padding: 20px;
      }

      .form-intro {
        padding: 20px;
      }

      .form-hero h1 {
        font-size: 2rem;
      }
    }

    /* ================= GLOBAL ================= */
body { 
  font-family: Arial, sans-serif; 
  background-color: #f5f5f5; 
  color: #333; 
}
/* ================= HERO SECTION ================= */
.hero-vocation {
  /* Darker semi-transparent green overlay on top of background image */
  background: 
    linear-gradient(rgba(6, 31, 21, 0.945), rgba(45, 106, 79, 0.85)),
    url('images/vocation image.avif') center/cover no-repeat;
  
  color: #fff;
  text-align: center;

  /* Taller hero section */
  min-height: 600px; /* adjust as needed */
  padding: 120px 20px 100px; /* top 120px, bottom 100px */
  margin-bottom: 60px;

  /* Flex to center content */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ================= HERO TEXT ================= */
.hero-vocation .hero-title {
  font-size: 2.8rem;
  font-weight: 900;          /* extra bold */
  color: #ffffff;            /* pure white */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* subtle shadow for contrast */
}

.hero-vocation .hero-subtitle {
  font-size: 1.2rem;
  margin-top: 12px;
  font-weight: 700;           /* bold */
  color: #ffffff;             /* pure white */
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6); /* subtle shadow for readability */
}
/* ================= SECTIONS ================= */
.section-card {
  margin-bottom: 70px;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2d6a4f;
  margin-bottom: 30px;
  border-left: 5px solid #1b4332;
  padding-left: 12px;
}

.section-intro {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 35px;
}

/* ================= ACCORDION ================= */
.accordion-button:not(.collapsed) {
  background-color: #2d6a4f;
  color: #fff;
}

/* ================= VOCATION CARD ================= */
.vocation-card {
  border-radius: 12px;
  background-color: #ffffff;
  padding: 2.5rem; /* matches original inline padding */
}

/* ================= FORMATION STAGES ================= */
.formation-stages {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.stage-card {
  flex: 1 1 300px;
  background: #e6f4ea;
  padding: 20px;
  border-radius: 15px;
}

.stage-card h5 {
  color: #1b4332;
  font-weight: 600;
}

.stage-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ================= FOUR PILLARS ================= */
.pillar-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.pillar-card {
  flex: 1 1 220px;
  background: #f0f9f5;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
}

.pillar-card i {
  font-size: 2rem;
  color: #1b4332;
}

.pillar-card h5 {
  margin-top: 12px;
  color: #1b4332;
  font-weight: 600;
}

.pillar-card p {
  font-size: 0.9rem;
}

/* ================= PRAYER SECTION ================= */
.prayer-card {
  border-radius: 25px 5px 25px 5px;
  background: url('images/sams\ image\ 6.webp') no-repeat center center;
  background-size: cover;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.prayer-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(17, 61, 44, 0.815);
  border-radius: 25px 5px 25px 5px;
}

.prayer-content {
  position: relative;
  padding: 50px;
}

.prayer-content h2 {
  color: #ffffff;
}

.prayer-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #ffffff;
}

/* ================= CTA ================= */
.cta-section {
  border-radius: 20px;
  background-color: #ffffff;
  text-align: center;
  padding: 2.5rem;
}

.cta-section .section-title {
  color: #1b4332;
}

.cta-button {
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 600;
  text-decoration: none;
}




/* HERO DEPARTMENT */
.hero-department {
  background: linear-gradient(rgba(6,31,21,0.9), rgba(45,106,79,0.85)),
              url('images/church\ image.webp') center/cover no-repeat;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-align: center;
  padding: 100px 20px;
  margin-bottom: 0px;
  min-height: 600px; /* adjust as needed */
}
.hero-department .hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-top: 40px;   /* pushes heading down */
}

.hero-department .hero-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 15px;   /* spacing between title and subtitle */
  color: #ffffff;
}

/* Faculty Cards */
.faculty-card img { width: 150px; height: 150px; object-fit: cover; }
.faculty-card h5 { margin-top: 10px; font-weight: 700; color: #1b4332; }

/* Resource Boxes */
.resource-box { background-color: #f8f9fa; border-left:5px solid #2d6a4f; transition: transform 0.3s;}
.resource-box:hover { transform: translateY(-5px); }

/* Sections */
.section-card { margin-bottom: 70px; padding: 30px; background-color: #ffffff; border-radius: 12px;}
.section-title { font-size: 1.6rem; font-weight: 700; color: #2d6a4f; margin-bottom: 30px; border-left: 5px solid #1b4332; padding-left: 12px; }

/* Accordions */
.accordion-button:not(.collapsed) { background-color: #2d6a4f; color: #fff; }





/* Accordion Colors for Lecturers */
.accordion-button {
    background-color: #e6f4ea;
    color: #1b4332;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: #2d6a4f;
    color: #fff;
}

.accordion-body {
    background-color: #f8f9fa;
    color: #333;
}




/* SUMMARY OF COURSES SECTION */
#courses-summary {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.course-year {
  color: #1b4332;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.table-wrapper {
  overflow-x: auto;
  margin-bottom: 30px;
}

.course-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px; /* ensures responsive scroll for smaller screens */
}

.course-table th, .course-table td {
  border: 1px solid #2d6a4f;
  padding: 10px;
  text-align: center;
  font-size: 0.95rem;
}

.course-table th {
  background-color: #2d6a4f;
  color: #fff;
}

.status-C { background-color: #2d6a4f; color: #fff; font-weight: bold; }
.status-R { background-color: #ffd60a; color: #1b4332; font-weight: bold; }
.status-E { background-color: #e6f4ea; color: #1b4332; font-weight: bold; }

@media (max-width: 768px) {
  #courses-summary { padding: 20px 10px; }
  .course-table th, .course-table td { font-size: 0.85rem; padding: 8px; }
}


/* Add spacing below sections */
.section-card {
  margin-top: 2rem;       /* space above each section */
  margin-bottom: 3rem;    /* space below each section */
  padding: 2rem;          /* inner spacing inside section card */
  background-color: #fff; /* white clean background */
  box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* soft shadow */
  border-radius: 0.5rem;  /* rounded corners */
}

/* Table spacing & responsiveness */
.table-wrapper,
.table-responsive {
  margin-top: 1.5rem; /* space above tables */
  margin-bottom: 2rem; /* space below tables */
  overflow-x: auto;   /* horizontal scroll for small screens */
}

/* Table styling */
.course-table th,
.course-table td {
  vertical-align: middle;
  text-align: left;
  padding: 0.75rem;
}

/* Add space between Year headers and tables */
.course-year {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #2c3e50;
}

/* Status badges */
.status-C {
  color: #fff;
  background-color: #28a745;
  text-align: center;
  font-weight: 600;
  border-radius: 0.25rem;
}

.status-R {
  color: #fff;
  background-color: #ffc107;
  text-align: center;
  font-weight: 600;
  border-radius: 0.25rem;
}

.status-E {
  color: #fff;
  background-color: #17a2b8;
  text-align: center;
  font-weight: 600;
  border-radius: 0.25rem;
}

/* Ensure Academic Resources spacing */
#downloads {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

/* Year Bar Styling */
.year-bar {
  padding: 10px 18px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 6px;
  margin-bottom: 15px;
  color: #fff;
}

/* Unique colors per level */
.year-100 {
  background: linear-gradient(90deg, #1b4332, #57c292);
}

.year-200 {
  background: linear-gradient(90deg,  #224d3b, #7acaa6);
}

.year-300 {
  background: linear-gradient(90deg, #224d3b, #7acaa6);
}



body { font-family: Arial, sans-serif; background-color: #f0f2f5; color: #333; }
.admin-hero { height: 260px; background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%); display: flex; justify-content: center; align-items: center; text-align: center; color: #fff; margin-bottom: 40px; }
.admin-hero h1 { font-size: 2rem; font-weight: 700; margin-bottom: 8px; }
.admin-hero p { font-size: 0.95rem; font-weight: 300; }
.admin-container { max-width: 1200px; margin: 0 auto; padding: 0 20px 40px 20px; }
.section-title { background-color: #fcfcfc; color: #08693c; font-size: 1.2rem; font-weight: 700; padding: 10px 15px; border-radius: 6px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.admin-intro { font-size: 0.95rem; line-height: 1.7; background: #fff; padding: 20px 25px; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); margin-bottom: 30px; }
.team-row { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; }
.team-card { background: #fff; border-radius: 8px; overflow: hidden; flex: 1 1 calc(50% - 20px); min-width: 220px; text-align: center; box-shadow: 0 4px 12px rgba(0,0,0,0.08); transition: transform 0.3s ease; }
.team-card.three-per-row { flex: 1 1 calc(33.33% - 20px); }
.team-card:hover { transform: translateY(-5px); }
.team-card img { width: 110px; height: 110px; object-fit: cover; border-radius: 50%; margin: 15px auto 10px auto; display: block; }
.team-card-body { padding: 15px; }
.team-card-body h5 { font-size: 1rem; font-weight: 600; margin: 8px 0 5px 0; color: #2d6a4f; }
.team-card-body p { font-size: 0.9rem; margin-bottom: 10px; color: #333; }
.team-card-body a { font-size: 0.85rem; color: #1b4332; text-decoration: none; font-weight: 600; cursor: pointer; }
.team-card-body a:hover { color: #2d6a4f; }
.modal-body img { width: 160px; height: 160px; object-fit: cover; border-radius: 50%; margin-bottom: 15px; }
.modal-title { font-size: 1.05rem; font-weight: 600; }
@media (max-width: 992px) { .team-card { flex: 1 1 calc(50% - 20px); } }
@media (max-width: 576px) { .team-card { flex: 1 1 100%; } }





/* Reflection css */

    .sidebar {
  flex: 1 1 3%;
  padding: 20px;
  background-color: #818b86; /* Light gray background to make it stand out */
  border-radius: 8px;         /* Rounded corners for style */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* Soft shadow for depth */
  margin-left: 30px; /* Adds space between main content and sidebar */
}/* Mobile Sidebar Fix */
@media (max-width: 768px) {
  .sidebar {
    margin: 0 auto 20px auto;   /* center the box */
    max-width: 100%;            /* ensure it fits the screen */
    padding: 20px;              /* balanced padding */
  }

  .col-lg-4 {
    width: 100%;                /* sidebar takes full width on mobile */
  }

  .sidebar h4 {
    text-align: center;         /* center headings for mobile */
  }

  .sidebar ul {
    text-align: center;         /* center quick links list */
  }

  .sidebar ul li {
    margin-bottom: 10px;        /* spacing between links */
  }
}


.share-container {
      margin-top: 25px;
      padding: 25px;
      background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
      border-radius: px;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.8);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .share-container p {
      margin: 0 0 18px 0;
      color: #2c3e50;
      font-size: 15px;
      font-weight: 500;
      letter-spacing: 0.5px;
    }

    .share-buttons {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      align-items: center;
    }

    .share-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border-radius: 12px;
      border: none;
      cursor: pointer;
      transition: all 0.35s cubic-bezier(0.4, 0.0, 0.2, 1);
      font-size: 22px;
      text-decoration: none;
      color: white;
      font-weight: 600;
      position: relative;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    }

    .share-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.2);
      transition: left 0.35s ease;
      z-index: -1;
    }

    .share-btn:hover {
      transform: translateY(-5px) scale(1.08);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    }

    .share-btn:active {
      transform: translateY(-2px) scale(1.05);
    }

    .share-btn.facebook {
      background: linear-gradient(135deg, #1877f2 0%, #0a66c2 100%);
    }

    .share-btn.twitter {
      background: linear-gradient(135deg, #000000 0%, #333333 100%);
    }

    .share-btn.whatsapp {
      background: linear-gradient(135deg, #25d366 0%, #1fa855 100%);
    }

    .share-btn.linkedin {
      background: linear-gradient(135deg, #0a66c2 0%, #084ba8 100%);
    }

    .share-btn.email {
      background: linear-gradient(135deg, #ea4335 0%, #d33426 100%);
    }

    .share-btn.copy {
      background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    }

    @media (max-width: 768px) {
      .share-container {
        padding: 20px;
        margin-top: 20px;
      }

      .share-buttons {
        gap: 10px;
      }

      .share-btn {
        width: 44px;
        height: 44px;
        font-size: 20px;
      }
    }

    .copy-feedback {
      display: none;
      margin-top: 12px;
      padding: 12px 16px;
      background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
      color: #155724;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 500;
      border: 1px solid #c3e6cb;
      animation: slideIn 0.3s ease;
    }

    .copy-feedback.show {
      display: block;
    }

    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
 




    
    /* Hero Section */
    .history-hero {
      position: relative;
      height: 500px;
      background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
      overflow: hidden;
    }

    .history-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('images/sams image 6.webp');
      background-size: cover;
      background-position: center;
      opacity: 0.3;
      z-index: 1;
    }

    .history-hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 40px 20px;
    }

    .history-hero h1 {
      font-size: 2.8rem;
      font-weight: 900;
      margin-bottom: 20px;
      text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
      letter-spacing: 1px;
    }

    .history-hero p {
      font-size: 1.2rem;
      font-weight: 300;
      text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
      color: #ffffff;
    }

    .history-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 20px 20px 20px;
      background-color: #ffffff;
    }

    .history-header {
      text-align: center;
      margin-bottom: 50px;
      padding-bottom: 30px;
      border-bottom: 3px solid #2d6a4f;
    }

    .history-header h1 {
      color: #1b4332;
      font-size: 2.5rem;
      font-weight: 900;
      margin-bottom: 15px;
      letter-spacing: 0.5px;
    }

    .history-intro {
      color: #333;
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 50px;
      text-align: justify;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      padding: 30px;
      background-color: #f8f9fa;
      border-left: 5px solid #ffd60a;
    }

    .history-section {
      margin-bottom: 60px;
      padding: 40px;
      background-color: #f8f9fa;
      border-radius: 8px;
      border-left: 5px solid #2d6a4f;
    }

    .history-section h2 {
      color: #1b4332;
      font-size: 1.8rem;
      font-weight: 900;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .history-section p {
      color: #333;
      font-size: 1.05rem;
      line-height: 1.9;
      margin-bottom: 15px;
      text-align: justify;
    }

    .timeline-badge {
      display: inline-block;
      background-color: #2d6a4f;
      color: #ffffff;
      padding: 8px 16px;
      border-radius: 25px;
      font-weight: bold;
      font-size: 0.9rem;
      margin-bottom: 15px;
    }

    /* Section Image */
    .history-section-image {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 25px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .history-section-with-image {
      display: flex;
      flex-direction: column;
    }

    /* Sidebar */
    .history-sidebar {
      background-color: #f8f9fa;
      padding: 30px;
      border-radius: 8px;
      border-left: 5px solid #ffd60a;
      margin-top: 0;
    }

    .history-sidebar h4 {
      color: #1b4332;
      font-weight: 900;
      margin-bottom: 20px;
      text-transform: uppercase;
      font-size: 1.1rem;
      letter-spacing: 0.5px;
    }

    .history-sidebar ul {
      list-style: none;
      padding: 0;
    }

    .history-sidebar li {
      margin-bottom: 12px;
    }

    .history-sidebar a {
      color: #2d6a4f;
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s ease;
      display: flex;
      align-items: center;
    }

    .history-sidebar a:hover {
      color: #ffd60a;
    }

    .history-sidebar a i {
      margin-right: 8px;
      color: #ffd60a;
    }

    .contact-box {
      background-color: #ffffff;
      border: 2px solid #2d6a4f;
      padding: 25px;
      border-radius: 8px;
      margin-top: 30px;
    }

    .contact-box h5 {
      color: #1b4332;
      font-weight: 900;
      margin-bottom: 15px;
      text-transform: uppercase;
      font-size: 1rem;
    }

    .contact-box p {
      color: #333;
      margin-bottom: 8px;
      font-size: 0.95rem;
    }

    .contact-box a {
      color: #2d6a4f;
      text-decoration: none;
      font-weight: 600;
    }

    .contact-box a:hover {
      color: #ffd60a;
    }

    /* Breadcrumb */
    .breadcrumb-custom {
      background-color: #f8f9fa;
      padding: 20px 0;
      border-bottom: 2px solid #2d6a4f;
    }

    .breadcrumb-custom a {
      color: #2d6a4f;
      font-weight: 600;
    }

    .breadcrumb-custom a:hover {
      color: #ffd60a;
      text-decoration: none;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .history-header h1 {
        font-size: 1.8rem;
      }

      .history-section {
        padding: 20px;
      }

      .history-intro {
        padding: 20px;
      }

      .history-hero h1 {
        font-size: 2rem;
      }
    }



/* ===============================
   MODERN ADMISSION CTA SECTION
================================= */

.admission-cta .cta-overlay {
  background: linear-gradient(
    rgba(0, 51, 25, 0.85),
    rgba(0, 70, 35, 0.85)
  );
  padding: 60px 20px; /* reduced padding so it feels like a section */
  border-radius: 12px;
}

.cta-content {
  color: #ffffff;
  max-width: 800px;
  margin: auto;
}

.cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 35px;
  line-height: 1.6;
  color: #e7f5ee;
}

/* Buttons Container */
.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* CTA Buttons */
.cta-btn {
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Primary Button */
.primary-btn {
  background: #f5b400; /* gold accent */
  color: #003319;
}

.primary-btn:hover {
  background: #ffd24d;
  transform: translateY(-4px);
}

/* Secondary Button */
.secondary-btn {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.secondary-btn:hover {
  background: #ffffff;
  color: #003319;
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-overlay {
    padding: 40px 20px;
  }
  .cta-content h2 {
    font-size: 1.7rem;
  }
  .cta-content p {
    font-size: 1rem;
  }
}



/* Administration Hero Section */
.administration-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.administration-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.administration-hero-content {
  position: absolute;
  top: 72%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-width: 700px;
  text-align: center;
  color: #ffffff;
}

/* Gradient overlay */
.administration-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 10, 58, 0.95) 0%,
    rgba(2, 34, 12, 0.78) 40%,
    rgba(4, 51, 25, 0.94) 100%
  );
  z-index: 1;
}

/* Titles and Subtext */
.administration-hero-title,
.administration-hero-subtext {
  color: #ffffff;
}

.administration-hero-title {
  font-size: 48px;
  font-weight: 900;
}

.administration-hero-subtext {
  font-size: 18px;
  margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 768px) {
  .administration-hero { height: 50vh; }
  .administration-hero-content { top: 75%; max-width: 90%; }
  .administration-hero-title { font-size: 32px; }
  .administration-hero-subtext { font-size: 16px; }
}
@media (max-width: 576px) {
  .administration-hero { height: 45vh; }
  .administration-hero-content { top: 78%; }
  .administration-hero-title { font-size: 24px; }
  .administration-hero-subtext { font-size: 14px; }
}

/* Rector Message Styling */
.rector-text {
  position: relative;
  padding-left: 1.5rem; /* space between line and text */
}

.rector-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px; /* thicker accent line */
  height: 100%;
  background-color: #1b6342; /* Seminary green */
  border-radius: 4px;
}

.rector-text h3 {
  color: #1b6342; /* heading in Seminary green */
  font-weight: 700;
}





/* Alumni Hero Section */
.alumni-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.alumni-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.alumni-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 10, 58, 0.9) 0%,
    rgba(27, 99, 66, 0.85) 100%
  );
  z-index: 1;
}

.alumni-hero-content {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-width: 700px;
  text-align: center;
  color: #fff;
}

.alumni-hero-title {
  font-size: 48px;
  font-weight: 900;
}

.alumni-hero-subtext {
  font-size: 18px;
  margin-top: 15px;
}

.alumni-hero-btn {
  background-color: #1b6342; /* Seminary green */
  color: #fff;
  border-radius: 6px;
  padding: 10px 20px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.alumni-hero-btn:hover {
  background-color: #145233;
}

.intro-box {
  display: flex;
  align-items: flex-start;
}

.intro-line {
  width: 6px;
  background-color: #1b6342; /* Seminary green */
  border-radius: 4px;
  margin-top: 5px;
  margin-bottom: 5px;
  height: auto;              /* allow flexible height */
}

.intro-text {
  padding-left: 15px;
  flex: 1;                   /* text takes remaining space */
}

.alumni-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}


/* Responsive */
@media (max-width: 768px) {
  .alumni-hero { height: 50vh; }
  .alumni-hero-title { font-size: 32px; }
  .alumni-hero-subtext { font-size: 16px; }
  .alumni-text { font-size: 1rem; }
}

@media (max-width: 576px) {
  .alumni-hero { height: 45vh; }
  .alumni-hero-title { font-size: 24px; }
  .alumni-hero-subtext { font-size: 14px; }
  .alumni-text { font-size: 0.95rem; }
}

/* Seminary Stats Section */
.seminary-stats {
  background: none; /* remove background strip */
}

.seminary-stat {
  background: #fff;                 /* clean white card */
  border: 1px solid #e0e0e0;        /* ash/gray border for contrast */
  border-radius: 12px;
  padding: 25px 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05); /* subtle shadow */
  transition: transform 0.3s ease;
}

.seminary-stat:hover {
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 2.5rem;
  color: #1b6342; /* Seminary green */
  margin-bottom: 10px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #003319;
  margin: 0;
}

.stat-label {
  font-size: 1rem;
  color: #555;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .stat-number { font-size: 1.6rem; }
  .stat-icon { font-size: 2rem; }
}

@media (max-width: 576px) {
  .stat-number { font-size: 1.4rem; }
  .stat-icon { font-size: 1.8rem; }
  .stat-label { font-size: 0.9rem; }
}



.social-btn {
  display: inline-block;
  background-color: green;
  color: white;
  padding: 6px 8px;       /* smaller padding */
  border-radius: 50%;
  font-size: 0.7rem;      /* smaller icon size */
  text-decoration: none;
  transition: all 0.3s ease;
  margin-left: 6px;
}

.social-btn:hover {
  background-color: white;
  color:green;
  border: 0px solid green; /* lighter border */
  text-decoration: none;
}



/* Section Background & Padding */
.seminary-news {
  background-color: #f9f9f9;
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Section Header */
.seminary-news .section-title {
  color: #2d6a4f;        /* Seminary Green */
  font-weight: 800;
  font-size: 2.0rem;
  margin-bottom: 10px;
  text-align: center;
  text-transform: none;  /* ensure normal capitalization */
}

.seminary-news .section-header p {
  color: #333333;        /* Neutral dark text */
  font-size: 1rem;
  margin-bottom: 40px;
}

/* News Card Base */
.news-card {
  background-color: #ffffff;
  border-radius: 40px 0 40px 0;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Card Image */
.news-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}

/* Card Content */
.news-content {
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-content h5 {
  color: #2d6a4f;   /* Seminary Green */
  font-weight: 700;
  font-size: 1.2rem;
}

.news-content p {
  color: #333333;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Footer Row */
.news-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.news-footer {
  font-size: 0.85rem;
  color: #666;
  font-style: italic;
}

/* Button */
.news-btn {
  padding: 6px 14px;
  border-radius: 20px;
  background-color: #2d6a4f; /* Seminary Green */
  color: #fff;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.3s;
}

.news-btn:hover {
  background-color: #002147; /* Seminary Blue */
  color: #fff;
}

/* Curved Effect: Alternate Cards */
.news-card:nth-child(odd) {
  border-radius: 0 40px 0 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .news-card {
    border-radius: 30px;
  }
  .news-image {
    height: 150px;
  }
}


/* ================= SEMINARY VIDEO SECTION ================= */
.seminary-video {
  background-color: #f9f9f9; /* light neutral background */
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}

.seminary-video h3 {
  color: #2d6a4f; /* Seminary Green */
  font-weight: 800;
}

.seminary-video p {
  color: #333333;
  font-size: 1rem;
}

/* Video Wrapper */
.seminary-video .video-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Explore Gallery Button */
.explore-gallery-btn {
  background-color: #2d6a4f; /* Seminary Green */
  color: #fff;
  border-radius: 30px;
  padding: 0.6rem 1.5rem;
  transition: background-color 0.3s ease;
}

.explore-gallery-btn:hover {
  background-color: #002147; /* Seminary Blue */
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .seminary-video {
    padding: 60px 20px;
  }
  .seminary-video h3 {
    font-size: 1.5rem;
  }
}


/* ================= HERO SECTION ================= */
.news-hero {
  height: 70vh;
  overflow: hidden;
  position: relative;
}

.news-hero img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  filter: brightness(70%); /* darken image for readability */
}

.news-hero-content {
  max-width: 800px;
  padding: 20px;
}

.news-hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #ffd60a; /* Seminary gold accent */
}

.news-hero-content p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .news-hero {
    height: auto;
  }
  .news-hero-content h1 {
    font-size: 2rem;
  }
  .news-hero-content p {
    font-size: 1rem;
  }
}




/* News Detail */
.news-detail {
  background-color: #f9f9f9;
}
/* Featured Image */
.news-featured img {
  width: 100%;
  height: 300px;          /* reduced vertical height */
  object-fit: cover;      /* crop neatly */
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Summary Caption Card */
.news-summary {
  background: #fff;
  border-radius: 40px 0 40px 40px; /* curved 3 corners, top-right uncurved */
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.news-summary h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2d6a4f;
}

.news-summary .news-meta {
  font-size: 0.9rem;
  color: #666;
}

.news-summary .news-intro {
  color: #333;
  line-height: 1.6;
}

/* Body */
.news-body p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: justify;
}

/* Sidebar Box */
.news-sidebar .sidebar-box {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

/* Sidebar Title */
.news-sidebar .sidebar-title {
  font-weight: 700;
  color: #2d6a4f;
  margin-bottom: 15px;
  border-bottom: 2px solid #ffd60a;
  padding-bottom: 5px;
}

/* Sidebar List Items */
.sidebar-list li {
  display: flex;
  align-items: center;
}

.sidebar-thumb {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.sidebar-list a {
  color: #002147;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.sidebar-list a:hover {
  color: #2d6a4f;
  text-decoration: underline;
}

.sidebar-date {
  font-size: 0.8rem;
  color: #666;
}



/* Blog Listing */
.blog-listing {
  background-color: #f9f9f9;
}

/* Blog Card with 3 curved corners */
.blog-card {
  background: #fff;
  border-radius: 40px 0 40px 40px; /* top-right sharp */
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

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

.blog-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content h5 a {
  color: #2d6a4f;
  font-weight: 700;
  text-decoration: none;
}

.blog-content h5 a:hover {
  color: #002147;
}

.blog-date {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 10px;
}

.blog-excerpt {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 15px;
}

.blog-btn {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background-color: #2d6a4f;
  color: #fff;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.3s;
}

.blog-btn:hover {
  background-color: #002147;
}
/* Unique Pagination Styling */
.pagination-unique .page-link {
  color: #002147;              /* Seminary Blue text */
  background-color: #fff;      /* White background */
  border: 1px solid #ddd;
  border-radius: 8px;
  margin: 0 4px;
  transition: all 0.3s ease;
}

.pagination-unique .page-link:hover {
  background-color: #f1f1f1;   /* Light grey hover */
  color: #2d6a4f;              /* Seminary Green hover */
}

.pagination-unique .page-item.active .page-link {
  background-color: #2d6a4f;   /* Active green */
  border-color: #2d6a4f;
  color: #fff;
}



    .archive-search {
      margin-bottom: 30px;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .archive-search input {
      flex: 1;
      min-width: 250px;
      padding: 12px 15px;
      border: 2px solid #2d6a4f;
      border-radius: 8px;
      font-size: 16px;
      background: #ffffff;
      color: #2d6a4f;
      font-weight: 500;
    }

    .archive-search input::placeholder {
      color: #40916c;
    }

    .archive-search input:focus {
      outline: none;
      border-color: #40916c;
      box-shadow: 0 0 8px rgba(64, 145, 108, 0.2);
    }

    .archive-search select {
      padding: 12px 15px;
      border: 2px solid #2d6a4f;
      border-radius: 8px;
      font-size: 16px;
      background-color: white;
      color: #2d6a4f;
      font-weight: 500;
    }

    .archive-search select:focus {
      outline: none;
      border-color: #40916c;
      box-shadow: 0 0 8px rgba(64, 145, 108, 0.2);
    }
    

    .archive-list {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .archive-item {
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      padding: 20px;
      background-color: #f9f9f9;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .archive-item:hover {
      background-color: #f0f0f0;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .archive-item h3 {
      margin-top: 0;
      color: #333;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .archive-item-date {
      color: #666;
      font-size: 14px;
      margin-bottom: 10px;
    }

    .archive-item-excerpt {
      color: #555;
      margin-bottom: 15px;
      font-style: italic;
    }

    .archive-item-toggle {
      background-color: #007bff;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
      font-size: 14px;
      transition: background-color 0.3s ease;
    }

    .archive-item-toggle:hover {
      background-color: #0056b3;
    }

    .archive-item-content {
      display: none;
      margin-top: 15px;
      padding-top: 15px;
      border-top: 1px solid #ddd;
    }

    .archive-item-content.open {
      display: block;
    }

    .media-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 15px;
    }

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

      .archive-search {
        flex-direction: column;
      }

      .archive-search input {
        min-width: 100%;
      }
    }

    .archive-item h4 {
      margin-top: 15px;
      margin-bottom: 10px;
      color: #333;
    }

    .archive-item video,
    .archive-item audio {
      width: 100%;
      max-width: 100%;
    }

    .share-container {
      margin-top: 15px;
      padding: 18px;
      background: linear-gradient(135deg, #f5f7fa 0%, #e8eef7 100%);
      border-radius: 10px;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.7);
      box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    }

    .share-container p {
      margin: 0 0 12px 0;
      color: #2c3e50;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.4px;
    }

    .share-buttons {
      display: flex;
      gap: 8px;
      justify-content: center;
      flex-wrap: wrap;
      align-items: center;
    }

    .share-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 10px;
      border: none;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
      font-size: 18px;
      text-decoration: none;
      color: white;
      font-weight: 600;
      position: relative;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .share-btn:hover {
      transform: translateY(-4px) scale(1.08);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .share-btn:active {
      transform: translateY(-2px) scale(1.05);
    }

    .share-btn.facebook {
      background: linear-gradient(135deg, #1877f2 0%, #0a66c2 100%);
    }

    .share-btn.twitter {
      background: linear-gradient(135deg, #000000 0%, #333333 100%);
    }

    .share-btn.whatsapp {
      background: linear-gradient(135deg, #25d366 0%, #1fa855 100%);
    }

    .share-btn.linkedin {
      background: linear-gradient(135deg, #0a66c2 0%, #084ba8 100%);
    }

    .share-btn.email {
      background: linear-gradient(135deg, #ea4335 0%, #d33426 100%);
    }

    .share-btn.copy {
      background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    }

    .copy-feedback {
      display: none;
      margin-top: 10px;
      padding: 10px 12px;
      background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
      color: #155724;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 500;
      border: 1px solid #c3e6cb;
      animation: slideInArchive 0.3s ease;
    }

    .copy-feedback.show {
      display: block;
    }

    @keyframes slideInArchive {
      from {
        opacity: 0;
        transform: translateY(-8px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Modern Reflection Page Navbar */
    .reflection-navbar {
      background: linear-gradient(135deg, #187918 0%, #40916c 100%);
      padding: 0;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .reflection-navbar-container {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 30px;
      height: 70px;
    }

    .reflection-navbar-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: white;
      font-weight: 700;
      font-size: 20px;
      letter-spacing: 1px;
    }

    .reflection-navbar-logo span {
      display: inline-block;
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, #ffd60a 0%, #ffb703 100%);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 22px;
    }

    .reflection-navbar-menu {
      display: flex;
      list-style: none;
      gap: 8px;
      margin: 0;
      padding: 0;
      align-items: center;
    }

    .reflection-navbar-menu li a {
      padding: 8px 16px;
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      border-radius: 6px;
      transition: all 0.3s ease;
      display: inline-block;
      position: relative;
    }

    .reflection-navbar-menu li a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #ffd60a 0%, #ffb703 100%);
      transition: width 0.3s ease;
    }

    .reflection-navbar-menu li a:hover {
      color: white;
      background-color: rgba(255, 255, 255, 0.1);
    }

    .reflection-navbar-menu li a:hover::after {
      width: 100%;
    }

    .reflection-navbar-menu li a.active {
      background-color: rgba(255, 214, 10, 0.2);
      color: white;
    }

    .reflection-navbar-menu li a.active::after {
      width: 100%;
    }

    .reflection-navbar-btn {
      background: linear-gradient(135deg, #ffd60a 0%, #ffb703 100%);
      color: #2d6a4f;
      padding: 10px 20px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      font-weight: 600;
      font-size: 14px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(255, 214, 10, 0.3);
      text-decoration: none;
      display: inline-block;
    }

    .reflection-navbar-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(255, 214, 10, 0.4);
    }

    .reflection-menu-toggle {
      display: none;
      color: white;
      font-size: 24px;
      cursor: pointer;
      background: none;
      border: none;
    }

    @media (max-width: 768px) {
      .reflection-navbar-container {
        padding: 0 20px;
        height: 60px;
      }

      .reflection-navbar-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #2d6a4f 0%, #40916c 100%);
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      .reflection-navbar-menu.active {
        display: flex;
      }

      .reflection-navbar-menu li a {
        padding: 15px 20px;
        border-radius: 0;
        display: block;
        width: 100%;
      }

      .reflection-menu-toggle {
        display: block;
      }

      .reflection-navbar-btn {
        margin: 10px 20px;
      }
    }

    .no-results {
      text-align: center;
      padding: 40px;
      color: #666;
      font-size: 18px;
    }

    .pagination {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 30px;
      flex-wrap: wrap;
    }

    .pagination button {
      padding: 12px 18px;
      border: 2px solid #2d6a4f;
      background-color: #ffffff;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      color: #2d6a4f;
      font-weight: 600;
    }

    .pagination button:hover {
      background-color: #f5faf8;
      border-color: #40916c;
    }

    .pagination button.active {
      background-color: #2d6a4f;
      color: white;
      border-color: #2d6a4f;
    }

    .pagination button:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }



    /* Mission & Vision Section */
.mission-vision {
  background-color: #f9f9f9;
}

.mv-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-5px);
}

/* Curved header band */
.mv-header {
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 20px;
  text-align: center;
  position: relative;

  /* stronger curve, hugging edges at 90° */
  border-bottom-left-radius: 80px 40px;
  border-bottom-right-radius: 80px 40px;
}

/* Mission header: Yellow → Green gradient */
.mv-header-mission {
  background: linear-gradient(90deg, rgba(255,215,0,0.6) 0%, #2d6a4f 100%);
}

/* Vision header: Green → Yellow gradient (optional reverse) */
.mv-header-vision {
  background: linear-gradient(90deg, #2d6a4f 0%, rgba(255,215,0,0.6) 100%);
}

/* Body text */
.mv-body {
  padding: 25px;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* Curved header band */
.mv-header {
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 20px;
  text-align: center;
  position: relative;

  /* reduced curve for sharper fit */
  border-bottom-left-radius: 100px 100px;
  border-bottom-right-radius:100px 100px;
}
/* Sermon Section */
.sermon-section {
  background: #f9f9f9;
  padding-top: 80px;
  padding-bottom: 80px;
  margin-top: 80px;
  margin-bottom: 80px;
}

/* Video styling */
.sermon-video iframe {
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Info block */
.sermon-info {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.sermon-title {
  color: #2d6a4f;
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.sermon-text {
  color: #333;
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 1rem;
}

/* Flex row for button + social (desktop) */
.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

/* Button */
.btn-reflection {
  background: linear-gradient(90deg, #FFD700 0%, #2d6a4f 100%);
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-reflection:hover {
  background: linear-gradient(90deg, #2d6a4f 0%, #FFD700 100%);
  color: #fff;
}

/* Social inline */
.social-inline {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-text {
  font-size: 0.85rem;
  color: #555;
}

.social-icon {
  font-size: 1rem;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #FFD700;
}

/* 📱 Mobile adjustments */
@media (max-width: 768px) {
  .cta-row {
    flex-direction: column;   /* stack vertically */
    align-items: flex-start;  /* align left */
    gap: 10px;
  }

  .btn-reflection {
    font-size: 0.85rem;       /* smaller text */
    padding: 6px 14px;        /* tighter padding */
    border-radius: 16px;
  }

  .social-inline {
    justify-content: flex-start;
    gap: 6px;
  }

  .social-text {
    font-size: 0.8rem;
  }

  .social-icon {
    font-size: 1rem;          /* smaller icons */
  }
}
/* ===============================
   Contact Us Hero Section
================================ */
.contact-hero {
  height: 60vh;
  position: relative;
  overflow: hidden;
}

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

/* Green gradient overlay */
.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(0, 128, 0, 0.45) 0%,   /* soft green glow at center */
    rgba(0, 128, 0, 0.25) 70%,  /* lighter green mid fade */
    rgba(0, 128, 0, 0.15) 100%  /* faint green at edges */
  );
  z-index: 1;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 20px;
  text-align: center;
  color: #fff;
}

/* Hero Title */
.contact-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

/* Hero Paragraph */
.contact-hero-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #f1f1f1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-hero {
    height: 70vh;
  }
  .contact-hero-content h1 {
    font-size: 2rem;
  }
  .contact-hero-content p {
    font-size: 1rem;
  }
}


/* Contact Form & Info Cards */
.contact-form,
.contact-info-block,
.info-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  border-radius: 6px;
  border: 1px solid #ddd;
}

.contact-form button {
  border-radius: 6px;
}

/* Info Cards */
.info-card .icon {
  color: #0d6efd; /* Bootstrap primary blue */
  margin-bottom: 10px;
}
.info-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}
.info-card p {
  margin: 0;
  color: #555;
}

/* Secondary Flex Sections */
.bg-light .p-4 {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
 



body {
  background-color: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #333;
}
 /* Intro Flex Section */
.intro-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; /* allows stacking on small screens */
}

.intro-text, .intro-image {
  flex: 1 1 50%; /* each takes half width on large screens */
  padding: 20px;
}

.intro-text h2 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #198754;
}

.intro-text p {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.intro-image {
  text-align: center;
}

.intro-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
  .intro-text, .intro-image {
    flex: 1 1 100%;
    text-align: center;
  }
}


/* Info blocks */
.info-block i {
  display: block;
  margin-bottom: 10px;
  color: #198754;
}
.info-block h5 {
  font-weight: 600;
}

/* Modern tables */
.modern-table thead {
  background-color: #f1f3f5;
  font-weight: 600;
}
.modern-table tbody tr:hover {
  background-color: #f8f9fa;
}

/* Accordion */
.accordion-button {
  font-weight: 600;
  color: #198754;
}
.accordion-button:not(.collapsed) {
  background-color: #e9f7ef;
  color: #198754;
}
/* Shared Flex Layout */
.intro-flex {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 15px; /* same horizontal spacing as nav */
}

/* Left side (text) */
.flex-text {
  flex: 1 1 65%;   /* larger share for text */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  background-color: #f8f9fa; /* subtle background for clean look */
  border-radius: 12px;       /* sharp but modern edges */
}

.flex-text h2 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #198754;
}

.flex-text p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #333;
}

/* Right side (accent) */
.flex-accent {
  flex: 1 1 35%;   /* reduced size for balance */
  background-color: #198754;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  padding: 20px;
}

.flex-accent i {
  font-size: 3rem; /* smaller icon */
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .flex-text, .flex-accent {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 20px;
  }
}
/* Shared Flex Layout */
.intro-flex {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 15px;
}

/* Left side (text) */
.flex-text {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.flex-text h2 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #198754;
}

.flex-text p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #333;
}

/* Right side (accent box) */
.flex-accent {
  flex: 1 1 40%;
  background-color: #198754;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  padding: 30px;
}

.accent-content {
  text-align: center;
  color: #fff;
}

.accent-content h3 {
  font-weight: 700;
  margin-bottom: 15px;
}

.accent-content p {
  font-size: 1rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .flex-text, .flex-accent {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 20px;
  }
}

/* Loading Animation */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1b6342, #2d6a4f);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-spinner {
  text-align: center;
  color: white;
}

.loading-spinner .spinner-border {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
}

.loading-text {
  font-size: 1.2rem;
  font-weight: 500;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* AOS Animations */
[data-aos] {
  transition: all 0.6s ease;
}

/* Lazy Loading for Images */
img {
  transition: opacity 0.3s ease;
}

img[loading="lazy"] {
  opacity: 0;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* ================= PAGE HERO & CONTENT STYLES ================= */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  padding: 120px 5% 80px;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 48, 82, 0.55);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.page-hero .section-tag {
  display: inline-block;
  margin-bottom: 18px;
  color: #f9d949;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.05;
  margin-bottom: 20px;
  font-weight: 900;
}

.page-hero p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 20px;
}

.section-header {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1b6342;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #0b2e18;
  font-weight: 900;
  margin-bottom: 12px;
}

.section-header p {
  color: #4f565d;
  font-size: 1rem;
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.gallery-card {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  background: #fff;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
}

.gallery-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.gallery-card figcaption {
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #14392f;
}

.media-panel {
  margin-top: 60px;
}

.callout-box {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(34, 68, 47, 0.12);
}

.callout-box h3 {
  font-size: 1.6rem;
  margin-bottom: 18px;
  color: #1b6342;
}

.callout-box p,
.callout-box li {
  color: #33403d;
  font-size: 1rem;
  line-height: 1.8;
}

.callout-box ul {
  padding-left: 18px;
  margin: 16px 0 0;
}

.callout-box li {
  margin-bottom: 8px;
}

.farm-feature-card,
.publication-card,
.publication-preview-inner,
.info-box,
.publication-note {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.08);
}

.farm-feature-card img,
.publication-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.farm-feature-content,
.publication-card-body {
  padding: 24px;
}

.farm-feature-content h3,
.publication-card-body h3 {
  margin-bottom: 14px;
  color: #1b6342;
  font-size: 1.6rem;
}

.farm-feature-content p,
.publication-card-body p {
  color: #4d5256;
  line-height: 1.75;
}

.publication-card {
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.publication-year {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1b6342;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.publication-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.publication-preview-inner {
  border: 1px solid rgba(27, 99, 66, 0.12);
}

.publication-preview-inner h3 {
  margin-top: 12px;
  margin-bottom: 12px;
}

.publication-note {
  border: 1px solid rgba(27, 99, 66, 0.16);
}

.info-box {
  border: 1px solid rgba(34, 68, 47, 0.12);
}

.publication-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 992px) {
  .gallery-grid,
  .publication-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 100px 4rem 60px;
  }
  .page-hero p,
  .section-header h2 {
    text-align: left;
  }
}

@media (max-width: 576px) {
  .page-hero {
    padding: 90px 2rem 60px;
  }
  .gallery-card img,
  .farm-feature-card img,
  .publication-card img {
    height: 230px;
  }
}

