/* ===================================================
   SILVER OAK PUBLIC SCHOOL - Complete Stylesheet
   Modern, Professional School Website Design
   =================================================== */

/* ============ CSS VARIABLES ============ */
:root {
  --primary: #0f522e;
  --primary-light: #1a7a44;
  --primary-dark: #0a3a1f;
  --secondary: #c8941e;
  --secondary-light: #e0ad3a;
  --accent: #1e6f50;
  --dark: #1a1a2e;
  --dark-light: #2d2d44;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --bg-light: #f8f9fa;
  --bg-section: #f0f4f1;
  --white: #ffffff;
  --shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
  --shadow-card: 0 3px 20px rgba(0, 0, 0, 0.06);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
}

.set img {
  height: 90px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}

p {
  font-size: 0.95rem;
  color: var(--text-light);
}

a {
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

::selection {
  background: var(--primary);
  color: var(--white);
}

/* ============ PRELOADER ============ */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader {
  text-align: center;
}

.loader-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  animation: pulse 1.5s ease-in-out infinite;
}

.loader-icon i {
  font-size: 2rem;
  color: var(--white);
}

.loader p {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
  letter-spacing: 1px;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

/* ============ TOP BAR ============ */
.top-bar {
  background: var(--dark);
  padding: 8px 0;
  font-size: 0.82rem;
}

.top-info li {
  color: rgba(255, 255, 255, 0.8);
  margin-right: 20px;
}

.top-info li i {
  color: var(--secondary);
  margin-right: 5px;
}

.top-social a {
  color: rgba(255, 255, 255, 0.7);
  margin-left: 12px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.top-social a:hover {
  color: var(--secondary);
}

/* ============ NAVBAR ============ */
#mainNav {
  background: var(--white);
  box-shadow: var(--shadow);
  /* padding: 12px 0; */
  transition: var(--transition);
  z-index: 1050;
}

#mainNav.scrolled {
  padding: 8px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.12);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--primary) !important;
}

.brand-icon {
  font-size: 2rem;
  color: var(--primary);
}

.navbar-brand small {
  display: block;
  font-size: 0.55rem;
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-top: -3px;
}

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  /* color: var(--dark) !important; */
  padding: 8px 16px !important;
  position: relative;
  transition: var(--transition);
}

/* .navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
} */

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-nav .dropdown-toggle::after {
  border: none;
  content: '\F282';
  font-family: 'bootstrap-icons';
  font-size: 0.7rem;
  vertical-align: middle;
  margin-left: 4px;
  position: static;
  display: inline;
  height: auto;
  background: none;
  transform: none;
}

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-hover);
  border-radius: var(--radius);
  padding: 10px;
  margin-top: 0;
  top: 100%;
  animation: fadeInDown 0.3s ease;
}

.navbar-nav .dropdown {
  padding-bottom: 10px;
  margin-bottom: -10px;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}

.dropdown-item i {
  margin-right: 8px;
  color: var(--primary);
  width: 20px;
  text-align: center;
}

.dropdown-item:hover {
  background: var(--bg-section);
  color: var(--primary);
  padding-left: 20px;
}

.btn-nav {
  background: var(--primary) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 8px 24px !important;
  margin-left: 10px;
  font-weight: 600 !important;
}

.btn-nav:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(15, 82, 46, 0.3);
}

.btn-nav::after {
  display: none !important;
}

.navbar-toggler {
  border: 2px solid var(--primary);
  padding: 6px 10px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.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='%230f522e' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============ HERO SECTION ============ */
.hero-section {
  position: relative;
}

.hero-slide {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.text-highlight {
  color: var(--secondary-light);
}

.hero-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  max-width: 550px;
  line-height: 1.8;
}

.hero-btns .btn {
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.hero-btns .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-graphic {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-graphic>i {
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.hero-graphic-ring {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 3px dashed rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
}

.carousel-indicators button.active {
  background: var(--white);
  border-color: var(--white);
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  backdrop-filter: blur(5px);
  margin: 0 15px;
  opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.25);
}

/* ============ STATS SECTION ============ */
.stats-section {
  background: var(--primary);
  padding: 50px 0;
  position: relative;
  z-index: 2;
  margin-top: -40px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.stat-card {
  text-align: center;
  padding: 20px;
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--secondary-light);
  margin-bottom: 10px;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-heading);
}

.stat-number::after {
  content: '+';
  font-size: 1.5rem;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 400;
  margin-top: 5px;
}

/* ============ SECTION COMMON ============ */
.section-padding {
  padding: 100px 0;
}

.bg-light-custom {
  background: var(--bg-section);
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(15, 82, 46, 0.1), rgba(26, 122, 68, 0.1));
  color: var(--primary);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.text-primary-custom {
  color: var(--primary);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ============ BUTTONS ============ */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(15, 82, 46, 0.3);
}

/* ============ ABOUT SECTION ============ */
.about-image-wrapper {
  position: relative;
}

.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-img-placeholder {
  width: 100%;
  height: 450px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
}

.about-img-placeholder i {
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.4;
}

.about-img-placeholder span {
  font-size: 1.1rem;
  color: var(--primary);
  opacity: 0.6;
  margin-top: 10px;
  font-weight: 500;
}

.about-image-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  z-index: 2;
}

.about-float-box {
  background: var(--primary);
  color: var(--white);
  padding: 25px 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-hover);
}

.about-float-box h3 {
  font-size: 2.5rem;
  color: var(--secondary-light);
  margin-bottom: 5px;
}

.about-float-box p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 0.85rem;
}

.lead-text {
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.8;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  padding: 8px 0;
}

.about-feature i {
  color: var(--primary);
  font-size: 1.2rem;
}

/* ============ HISTORY SECTION V2 ============ */
.history-v2 {
  background: var(--white);
}

.history-row {
  margin-bottom: 0;
}

.history-row:last-child,
.history-row.last-row {
  margin-bottom: 0;
}

/* Image / Year Box */
.history-img-box {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 15px;
}

.history-img-box.green-grad {
  background: linear-gradient(135deg, #0f522e, #1a7a44);
}

.history-img-box.blue-grad {
  background: linear-gradient(135deg, #0c3b6f, #1a6fc4);
}

.history-img-box.gold-grad {
  background: linear-gradient(135deg, #8a6914, #c8941e);
}

.history-img-box.purple-grad {
  background: linear-gradient(135deg, #3b1f6e, #6f42c1);
}

.history-img-box.dark-grad {
  background: linear-gradient(135deg, #1a1a2e, #2d2d44);
}

.history-big-year {
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  position: absolute;
  line-height: 1;
  user-select: none;
}

.history-icon-circle {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.history-row:hover .history-icon-circle {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.history-icon-circle.gold {
  background: rgba(200, 148, 30, 0.25);
  border-color: rgba(200, 148, 30, 0.5);
}

.history-icon-circle i {
  font-size: 2.2rem;
  color: var(--white);
}

.history-now-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--secondary);
  color: var(--white);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Text Box */
.history-text-box {
  padding: 40px 45px;
}

.history-text-box.text-box-right {
  text-align: right;
}

.history-tag {
  display: inline-block;
  background: rgba(15, 82, 46, 0.08);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.history-tag.tag-gold {
  background: rgba(200, 148, 30, 0.1);
  color: var(--secondary);
}

.history-text-box h3 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--dark);
}

.history-text-box p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 20px;
}

.history-highlights {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.text-box-right .history-highlights {
  justify-content: flex-end;
}

.history-hl {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-section);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text);
  transition: var(--transition);
}

.history-hl:hover {
  background: var(--primary);
  color: var(--white);
}

.history-hl:hover i {
  color: var(--secondary-light);
}

.history-hl i {
  color: var(--primary);
  font-size: 1rem;
  transition: var(--transition);
}

.history-hl strong {
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
}

.history-hl:hover strong {
  color: var(--white);
}

/* ============ MISSION & VISION ============ */
.mission-section {
  background: linear-gradient(135deg, var(--dark), var(--dark-light));
  position: relative;
  overflow: hidden;
}

.mission-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.mission-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  height: 100%;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.mission-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
}

.mission-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.vision-card .mission-icon {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
}

.mission-icon i {
  font-size: 1.8rem;
  color: var(--white);
}

.mission-card h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.mission-card>p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.8;
}

.mission-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.mission-list li {
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 0;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.mission-list li i {
  color: var(--secondary-light);
  margin-top: 3px;
  flex-shrink: 0;
}

.value-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.value-badge:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.value-badge i {
  color: var(--secondary-light);
  margin-right: 5px;
}

/* ============ WHY CHOOSE US ============ */
.choose-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  height: 100%;
  border: 1px solid transparent;
}

.choose-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.choose-icon {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, rgba(15, 82, 46, 0.1), rgba(26, 122, 68, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.choose-card:hover .choose-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.choose-icon i {
  font-size: 1.8rem;
  color: var(--primary);
  transition: var(--transition);
}

.choose-card:hover .choose-icon i {
  color: var(--white);
}

.choose-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.choose-card p {
  font-size: 0.88rem;
  margin: 0;
}

/* ============ SERVICES ============ */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 25px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.service-icon-wrap {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.service-icon-wrap i {
  font-size: 1.6rem;
  color: var(--white);
}

.service-card h5 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.service-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.service-link:hover {
  color: var(--primary-dark);
  gap: 10px;
}

/* ============ STAFF SECTION ============ */
.staff-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  height: 100%;
}

.staff-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.staff-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 3px solid var(--primary);
}

.staff-avatar.female {
  background: linear-gradient(135deg, #fce4ec, #f8bbd0);
  border-color: var(--secondary);
}

.staff-avatar i {
  font-size: 2.5rem;
  color: var(--primary);
}

.staff-avatar.female i {
  color: var(--secondary);
}

.staff-card h5 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.staff-role {
  display: inline-block;
  background: linear-gradient(135deg, rgba(15, 82, 46, 0.1), rgba(26, 122, 68, 0.1));
  color: var(--primary);
  padding: 4px 15px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.staff-card p {
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.staff-social a {
  display: inline-flex;
  width: 35px;
  height: 35px;
  background: var(--bg-section);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  margin: 0 3px;
  transition: var(--transition);
}

.staff-social a:hover {
  background: var(--primary);
  color: var(--white);
}

/* ============ EVENTS ============ */
.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 25px;
  display: flex;
  gap: 20px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  height: 100%;
  border-left: 4px solid var(--primary);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-left-color: var(--secondary);
}

.event-date {
  min-width: 70px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: fit-content;
}

.event-date .day {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  font-family: var(--font-heading);
}

.event-date .month {
  font-size: 0.8rem;
  color: var(--secondary-light);
  font-weight: 600;
  text-transform: uppercase;
}

.event-tag {
  display: inline-block;
  background: rgba(15, 82, 46, 0.1);
  color: var(--primary);
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.event-info h5 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.event-info p {
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.event-meta span {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.event-meta i {
  color: var(--primary);
}

/* ============ TESTIMONIALS ============ */
.testimonials-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
  height: 100%;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-5px);
}

.testimonial-stars {
  margin-bottom: 15px;
}

.testimonial-stars i {
  color: var(--secondary-light);
  font-size: 0.9rem;
  margin-right: 2px;
}

.testimonial-card>p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-avatar.female {
  background: linear-gradient(135deg, #fce4ec, #f8bbd0);
}

.testimonial-avatar i {
  font-size: 1.4rem;
  color: var(--primary);
}

.testimonial-avatar.female i {
  color: #e91e63;
}

.testimonial-author h6 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.testimonial-author span {
  color: var(--secondary-light);
  font-size: 0.78rem;
  font-weight: 400;
}

/* ============ BLOGS ============ */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-img-placeholder i {
  font-size: 3.5rem;
  color: var(--primary);
  opacity: 0.3;
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
}

.blog-meta span {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-meta i {
  color: var(--primary);
}

.blog-content h5 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-content p {
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.blog-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.blog-link:hover {
  color: var(--primary-dark);
  gap: 10px;
}

/* ============ CTA SECTION ============ */
.cta-section {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  padding: 60px 0;
}

.cta-section h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 10px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  margin: 0;
}

.cta-section .btn-light {
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  color: var(--primary-dark);
}

.cta-section .btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ============ CONTACT SECTION ============ */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-card);
  height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid #f0f0f0;
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(15, 82, 46, 0.1), rgba(26, 122, 68, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  font-size: 1.2rem;
  color: var(--primary);
}

.contact-info-item h5 {
  font-size: 0.95rem;
  margin-bottom: 5px;
  font-family: var(--font-body);
  font-weight: 600;
}

.contact-info-item p {
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.6;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-card);
}

.contact-form-card h4 {
  font-size: 1.3rem;
}

.form-control,
.form-select {
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 82, 46, 0.1);
}

.form-label {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ============ FOOTER ============ */
.footer-section {
  background: var(--dark);
  padding: 60px 0 20px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 0;
}

.footer-brand h3 i {
  color: var(--secondary-light);
}

.footer-brand-sub {
  color: var(--secondary-light) !important;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.footer-section>.container>.row>div>p {
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-title {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--secondary);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary-light);
  padding-left: 5px;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact li i {
  color: var(--secondary-light);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 30px 0 20px;
}

.footer-copyright {
  font-size: 0.85rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--secondary-light);
}

/* ============ SCROLL TO TOP ============ */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(15, 82, 46, 0.3);
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(15, 82, 46, 0.5);
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 55px;
  height: 55px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 999;
  box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  color: var(--white);
  transform: scale(1.1);
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

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

/* Large Tablets and Small Desktops */
@media (max-width: 991.98px) {

  /* ---- Mobile Navbar Fix ---- */
  .navbar-collapse {
    background: var(--white);
    padding: 15px 0;
    max-height: 80vh;
    overflow-y: auto;
  }

  .navbar-nav {
    gap: 0;
  }

  .navbar-nav .nav-link {
    padding: 10px 15px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .navbar-nav .dropdown-menu {
    box-shadow: none;
    border: none;
    padding: 0 0 0 15px;
    margin-top: 0;
    animation: none;
    background: transparent;
  }

  .navbar-nav .dropdown-item {
    padding: 8px 15px;
    font-size: 0.85rem;
  }

  .navbar-nav .dropdown-item:hover {
    padding-left: 20px;
  }

  .navbar-nav .dropdown {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .btn-nav {
    margin-left: 0 !important;
    margin-top: 10px;
    text-align: center;
    display: block;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-padding {
    padding: 70px 0;
  }

  .history-img-box {
    min-height: 260px;
  }

  .history-text-box {
    padding: 30px 25px;
  }

  .history-text-box.text-box-right {
    text-align: left;
  }

  .text-box-right .history-highlights {
    justify-content: flex-start;
  }

  .history-big-year {
    font-size: 5rem;
  }

  .about-image-float {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 20px;
  }

  .mission-card {
    padding: 30px;
  }

  .value-badge {
    font-size: 0.78rem;
    padding: 8px 15px;
    margin: 5px;
  }
}

/* Tablets */
@media (max-width: 767.98px) {
  .history-img-box {
    min-height: 220px;
    margin: 10px;
  }

  .history-text-box {
    padding: 25px 15px;
  }

  .history-text-box h3 {
    font-size: 1.4rem;
  }

  .history-big-year {
    font-size: 4.5rem;
  }

  .history-highlights {
    gap: 10px;
  }

  .history-hl {
    padding: 6px 14px;
    font-size: 0.8rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 0.95rem;
  }

  .hero-btns .btn {
    padding: 10px 22px;
    font-size: 0.88rem;
    margin-bottom: 10px;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .stats-section {
    margin-top: 0;
    border-radius: 0;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-icon {
    font-size: 2rem;
  }

  .event-card {
    flex-direction: column;
    text-align: center;
  }

  .event-date {
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    padding: 12px 20px;
  }

  .event-meta {
    justify-content: center;
  }

  .cta-section .row {
    text-align: center;
  }

  .cta-section h2 {
    font-size: 1.6rem;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Mobile Phones */
@media (max-width: 575.98px) {
  .hero-slide {
    min-height: 100vh;
    padding: 30px 0;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 14px;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .hero-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .hero-btns .btn {
    margin: 0;
    text-align: center;
  }

  .section-padding {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .navbar-brand {
    font-size: 1.1rem;
  }

  .brand-icon {
    font-size: 1.5rem;
  }

  .about-img-placeholder {
    height: 280px;
  }

  .staff-card {
    padding: 25px 20px;
  }

  .contact-form-card {
    padding: 25px;
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    bottom: 20px;
    left: 20px;
  }

  .scroll-top-btn {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}

/* ============ UTILITY CLASSES ============ */
.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* ============ CUSTOM SCROLLBAR ============ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}