@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
:root {
  --primary-green: #1a5632;
  --secondary-green: #2d7a4e;
  --accent-gold: #c9a227;
  --accent-red: #e22127;
  --dark-green: #0d3320;
  --light-bg: #f8f9fa;
  --text-dark: #333333;
  --text-muted: #666666;
}

body {
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.main-header {
  background-color: transparent;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, position 0s;
}
.main-header.scrolled, .main-header.menu-open {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}
.main-header .navbar {
  padding: 1rem 0;
}
.main-header .navbar-brand {
  display: flex;
  align-items: center;
}
.main-header .navbar-brand img {
  height: 80px;
}
.main-header .navbar-brand .logo-scrolled {
  display: none;
}
.main-header.scrolled .navbar-brand .logo-default,
.main-header.menu-open .navbar-brand .logo-default {
  display: none;
}
.main-header.scrolled .navbar-brand .logo-scrolled,
.main-header.menu-open .navbar-brand .logo-scrolled {
  display: inline-block;
}
.main-header .navbar-brand .brand-text {
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 1.5rem;
  margin-left: 0.5rem;
}
.main-header .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}
.main-header .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.main-header .nav-link {
  color: #fff !important;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 400;
}
.main-header .nav-link:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}
.main-header .nav-link.dropdown-toggle::after {
  margin-left: 0.3rem;
  font-size: 0.7rem;
}
.main-header .dropdown-menu {
  background-color: rgba(0, 0, 0, 0.9);
  border: none;
  border-radius: 4px;
  margin-top: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.main-header .dropdown-menu .dropdown-item {
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}
.main-header .dropdown-menu .dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
@media (min-width: 992px) {
  .main-header .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}
.main-header .btn-login {
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0.4rem 1.25rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.main-header .btn-login i {
  display: none;
}
.main-header .btn-login::after {
  content: "";
  border: solid white;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 2px;
  transform: rotate(45deg);
  margin-left: 0.25rem;
}
.main-header .btn-login:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-section {
    background-position: center;
    background-color: black;
    background-size: 100%;
    background-repeat: no-repeat;
    position: relative;
    color: #fff;
    min-height: 580px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-section .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/hero/home-hero-bg.jpg") center center/cover;
}
.hero-section .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6));
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
}
.hero-section h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero-section .tagline {
  font-size: 1.2rem;
  font-style: italic;
  opacity: 0.9;
  margin-bottom: 0;
}
/* Force hero post title to always be white */
.hero-section .hero-post-title,
.hero-section .hero-post-title a,
.hero-section .hero-post-title * {
  font-size: 2.8rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.75rem !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  color: #fff !important;
  text-decoration: none !important;
}
.hero-section .hero-post-title a:hover {
  opacity: 0.9;
}
.hero-section .hero-slider-controls {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.hero-section .hero-slider-controls .slider-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-section .hero-slider-controls .slider-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}
.hero-section .hero-slider-controls .slider-btn i {
  font-size: 0.8rem;
}
.hero-section .hero-slider-controls .slider-count {
  color: #fff;
  font-size: 0.85rem;
  padding: 0 0.75rem;
  opacity: 0.9;
}

.about-section {
  padding: 5rem 0;
  background-color: #fff;
}
.about-section .about-content {
  padding-left: 2rem;
}
.about-section .about-content h2 {
  color: var(--text-dark);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}
.about-section .about-content .highlight-text .text-highlight {
  color: var(--accent-gold);
}
.about-section .about-content .about-red-line {
  width: 250px;
  height: 2px;
  background-color: var(--accent-red);
}
.about-section .about-content p {
  line-height: 1.8;
  font-size: 0.9rem;
}

.programs-section {
  padding: 4rem 0;
  background-color: var(--light-bg);
}
.programs-section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}
.programs-section .nav-tabs {
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 2rem;
  gap: 0;
}
.programs-section .nav-tabs .nav-link {
  border: none;
  color: var(--text-muted);
  padding: 0.75rem 1.25rem 0.75rem 0;
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  background: transparent;
  border-radius: 0;
}
.programs-section .nav-tabs .nav-link.active {
  color: var(--primary-green);
  background: transparent;
  font-weight: 600;
}
.programs-section .nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--accent-red);
}
.programs-section .nav-tabs .nav-link:hover:not(.active) {
  color: var(--primary-green);
  background: transparent;
}
.programs-section .program-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.programs-section .program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
.programs-section .program-card .card-image {
  height: 180px;
  overflow: hidden;
}
.programs-section .program-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.programs-section .program-card:hover .card-image img {
  transform: scale(1.08);
}
.programs-section .program-card .card-body {
  padding: 1.25rem;
}
.programs-section .program-card .card-body h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.programs-section .program-card .card-body p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.programs-section .program-card .card-body .date {
  font-size: 0.75rem;
  color: var(--primary-green);
  font-weight: 600;
}

.quick-look-section {
  padding: 4rem 0 3rem;
  background-color: #fff;
  text-align: center;
}
.quick-look-section .section-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quick-look-section .section-icon i {
  font-size: 3rem;
  color: var(--primary-green);
}
.quick-look-section h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  color: var(--text-dark);
}
.quick-look-section .stat-item {
  padding: 1.5rem 1rem;
}
.quick-look-section .stat-item .stat-icon {
  margin-bottom: 0.75rem;
}
.quick-look-section .stat-item .stat-icon i {
  font-size: 2rem;
  color: var(--primary-green);
  opacity: 0.5;
}
.quick-look-section .stat-item .stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}
.quick-look-section .stat-item .stat-label {
  font-size: 0.75rem;
  color: var(--accent-gold);
  font-weight: 500;
  text-transform: capitalize;
}

.connect-section {
  padding: 3rem 0 4rem;
  background-color: var(--light-bg);
  text-align: center;
}
.connect-section h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--text-dark);
}
.connect-section .connect-tabs .nav-link {
  color: var(--primary-green);
  border: 1px solid var(--primary-green);
  transition: all 0.3s ease;
}
.connect-section .connect-tabs .nav-link.active {
  background-color: var(--primary-green);
  color: #fff;
}
.connect-section .connect-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  max-width: 100%;
}
.connect-section .connect-grid .connect-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 140px;
}
.connect-section .connect-grid .connect-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.connect-section .connect-grid .connect-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.25rem;
  text-align: center;
  transition: background 0.3s ease;
}
.connect-section .connect-grid .connect-item .overlay h4 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0;
}
.connect-section .connect-grid .connect-item .overlay p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  margin: 0;
  line-height: 1.4;
}
.connect-section .connect-grid .connect-item .social-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 1rem;
  text-align: center;
}
.connect-section .connect-grid .connect-item .social-content i {
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 0.75rem;
}
.connect-section .connect-grid .connect-item .social-content p {
  color: #fff;
  font-size: 0.7rem;
  line-height: 1.4;
  margin: 0;
}
.connect-section .connect-grid .connect-item:hover img {
  transform: scale(1.08);
}
.connect-section .connect-grid .connect-item.calendar {
  grid-column: 1;
  grid-row: 1 / 3;
}
.connect-section .connect-grid .connect-item.calendar .overlay {
  background: linear-gradient(to bottom, rgba(26, 86, 50, 0.3), rgba(26, 86, 50, 0.75));
}
.connect-section .connect-grid .connect-item.facebook {
  grid-column: 2;
  grid-row: 1;
  background-color: #1877F2;
}
.connect-section .connect-grid .connect-item.x-twitter {
  grid-column: 3;
  grid-row: 1;
  background-color: #000000;
}
.connect-section .connect-grid .connect-item.gallery {
  grid-column: 4;
  grid-row: 1 / 3;
}
.connect-section .connect-grid .connect-item.gallery .overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
}
.connect-section .connect-grid .connect-item.instagram {
  grid-column: 2;
  grid-row: 2;
  background-color: #1a8c3e;
}
.connect-section .connect-grid .connect-item.youtube {
  grid-column: 3;
  grid-row: 2;
  background-color: #FF0000;
}

.accreditation-section {
  padding: 3rem 0;
  background-color: #fff;
  text-align: center;
}
.accreditation-section h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--text-dark);
}
.accreditation-section .partner-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  filter: none;
  gap: 1rem;
}
.accreditation-section .partner-logos img {
  max-height: 80px;
  max-width: 150px;
  opacity: 1;
  transition: all 0.3s ease;
}
.accreditation-section .partner-logos img:hover {
  filter: none;
  opacity: 1;
}

.main-footer {
  position: relative;
  background-color: #fff;
}
.main-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: var(--primary-green);
}
.main-footer .footer-top {
  background-color: #fff;
  padding: 3rem 0 1.5rem 0;
}
.main-footer .footer-top .footer-logo img {
  height: 90px;
}
.main-footer .footer-top .social-links a {
  color: var(--primary-green);
  font-size: 1.25rem;
  margin-left: 1rem;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: transparent;
  transition: all 0.3s ease;
}
.main-footer .footer-top .social-links a:hover {
  color: var(--accent-gold);
}
.main-footer .footer-main {
  padding: 1rem 0 2rem;
  background-color: #fff;
}
.main-footer .footer-main h5 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--primary-green);
  letter-spacing: 0.5px;
}
.main-footer .footer-main ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-footer .footer-main ul li {
  margin-bottom: 0.5rem;
}
.main-footer .footer-main ul li a {
  color: var(--text-dark);
  font-size: 0.85rem;
}
.main-footer .footer-main ul li a:hover {
  color: var(--primary-green);
}
.main-footer .footer-bottom {
  border-top: 1px solid #eee;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  background-color: #fff;
}

@media (max-width: 991px) {
  .hero-section h1 {
    font-size: 1.6rem;
  }
  .hero-section .hero-carousel .carousel-item img {
    height: 220px;
  }
  .about-section .about-content {
    padding-left: 0;
    margin-top: 3rem;
  }
  .connect-section .connect-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .connect-section .connect-grid .connect-item {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 160px;
  }
  .connect-section .connect-grid .connect-item.calendar {
    order: 1;
  }
  .connect-section .connect-grid .connect-item.facebook {
    order: 2;
  }
  .connect-section .connect-grid .connect-item.x-twitter {
    order: 3;
  }
  .connect-section .connect-grid .connect-item.instagram {
    order: 4;
  }
  .connect-section .connect-grid .connect-item.youtube {
    order: 5;
  }
  .connect-section .connect-grid .connect-item.gallery {
    order: 6;
  }
  .connect-section .connect-grid .connect-item.gallery {
    order: 6;
  }
}
@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 1.3rem;
    text-align: center;
  }
  .hero-section .tagline {
    font-size: 0.85rem;
    text-align: center;
  }
  .hero-section .hero-carousel {
    margin-top: 1.5rem;
  }
  .hero-section .hero-carousel .carousel-item img {
    height: 180px;
  }
  .about-section {
    padding: 3rem 0;
  }
  .about-section .about-image {
    margin-bottom: 2.5rem;
  }
  .about-section .about-image .year-badge {
    bottom: -15px;
    left: 15px;
    padding: 0.75rem 1rem;
  }
  .about-section .about-image .year-badge .year {
    font-size: 2rem;
  }
  .about-section .about-content {
    padding-left: 0;
  }
  .about-section .about-content h2 {
    font-size: 1.2rem;
  }
  .programs-section .nav-tabs .nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
  }
  .connect-section .connect-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .connect-section .connect-grid .connect-item {
    grid-column: 1 !important;
    grid-row: auto !important;
    min-height: 180px !important;
  }
  .connect-section .connect-grid .connect-item.calendar {
    order: 1;
  }
  .connect-section .connect-grid .connect-item.facebook {
    order: 2;
  }
  .connect-section .connect-grid .connect-item.x-twitter {
    order: 3;
  }
  .connect-section .connect-grid .connect-item.instagram {
    order: 4;
  }
  .connect-section .connect-grid .connect-item.youtube {
    order: 5;
  }
  .connect-section .connect-grid .connect-item.gallery {
    order: 6;
  }
  .connect-section .connect-grid .connect-item.gallery {
    order: 6;
  }
  .quick-look-section .stat-item {
    border-bottom: 1px solid #eee;
    padding: 1.25rem 0.5rem;
  }
  .quick-look-section .stat-item:last-child {
    border-bottom: none;
  }
  .quick-look-section .stat-item .stat-number {
    font-size: 1.8rem;
  }
  .footer-main .col-6 {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 575px) {
  .main-header .btn-login {
    margin-top: 0.5rem;
    margin-left: 0;
  }
  .quick-look-section .row .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .quick-look-section .stat-item {
    border-bottom: none;
    border-right: 1px solid #eee;
  }
  .quick-look-section .stat-item:nth-child(2n) {
    border-right: none;
  }
  .quick-look-section .stat-item:nth-child(n+3) {
    border-top: 1px solid #eee;
  }
}

/*# sourceMappingURL=main.css.map */
