/* ============================================
   BSIS - Balochistan Skills Information System
   Theme: Government Green Premium Design
   Color Palette:
     Forest Green: #0a3d1f
     Medium Green: #1a5c30
     Bright Green: #1e8449
     Gold Accent: #c9a227
     Light Gold: #f0c040
     White: #ffffff
     Light Gray: #f0f7f2
     Dark Text: #0d2b15
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;600;700;800&display=swap');

:root {
  --navy: #0a3d1f;
  --navy-medium: #1a5c30;
  --blue: #1e8449;
  --blue-light: #27ae60;
  --gold: #c9a227;
  --gold-light: #f0c040;
  --white: #ffffff;
  --gray-light: #f0f7f2;
  --gray: #d5e8db;
  --text-dark: #0d2b15;
  --text-muted: #5a7a62;
  --shadow: 0 4px 20px rgba(10, 61, 31, 0.12);
  --shadow-hover: 0 8px 32px rgba(10, 61, 31, 0.22);
  --radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  margin: 0;
  padding: 0;
}

/* ===== TOP BAR ===== */
.bsis-topbar {
  background: #061a0c;
  padding: 6px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  border-bottom: 2px solid var(--gold);
}
.bsis-topbar .topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bsis-topbar .gov-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}
.bsis-topbar .gov-badge img {
  height: 22px;
  filter: brightness(10);
}
.bsis-topbar a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.bsis-topbar a:hover { color: var(--gold-light); }

/* ===== MAIN HEADER / NAVBAR ===== */
.bsis-header {
  background: linear-gradient(135deg, #0a3d1f 0%, #1a5c30 100%);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.bsis-header .header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.bsis-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.bsis-brand img {
  height: 50px;
  width: auto;
}
.bsis-brand .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.bsis-brand .brand-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
}
.bsis-brand .brand-sub {
  font-size: 10px;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Navigation */
.bsis-nav {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}
.bsis-nav li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 10px 14px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  border-radius: 8px;
  transition: var(--transition);
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
}
.bsis-nav li a svg { opacity: 0.85; }
.bsis-nav li a:hover,
.bsis-nav li.active a {
  background: rgba(255,255,255,0.1);
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}
.bsis-nav li.active a svg { opacity: 1; }

/* ===== HERO SECTION ===== */
.bsis-hero {
  background: linear-gradient(135deg, #0a3d1f 0%, #1a5c30 60%, #1e8449 100%);
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.bsis-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.07);
  pointer-events: none;
}
.bsis-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.bsis-hero .geometric-lines {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 45%;
  background:
    linear-gradient(135deg, transparent 45%, rgba(255,255,255,0.03) 45%),
    linear-gradient(45deg, transparent 55%, rgba(201,162,39,0.06) 55%);
}
.bsis-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.bsis-hero-content {
  animation: fadeInLeft 0.8s ease-out;
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
.bsis-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.bsis-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 46px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.bsis-hero-title span {
  color: var(--gold-light);
  display: block;
}
.bsis-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}
.bsis-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  border: none;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(201,162,39,0.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,162,39,0.5);
  color: var(--navy);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  padding: 11px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

/* Hero Stats Row */
.bsis-hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.stat-card {
  text-align: left;
}
.stat-card .stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.stat-card .stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  align-self: stretch;
}

/* Hero Image side */
.bsis-hero-visual {
  animation: fadeInRight 0.8s ease-out 0.2s both;
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
.hero-visual-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.hero-visual-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* ===== STATS STRIP ===== */
.bsis-stats-strip {
  background: var(--white);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 10;
  margin-top: -1px;
}
.bsis-stats-strip .strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.strip-stat {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--gray);
  transition: var(--transition);
}
.strip-stat:last-child { border-right: none; }
.strip-stat:hover {
  background: var(--gray-light);
}
.strip-stat .strip-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.strip-stat .strip-num {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #0a3d1f;
  line-height: 1;
}
.strip-stat .strip-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 6px;
}

/* Color variants for strip icons */
.icon-blue { background: rgba(30, 132, 73, 0.1); color: var(--blue); }
.icon-green { background: rgba(22, 163, 74, 0.1); color: #16a34a; }
.icon-gold { background: rgba(201, 162, 39, 0.1); color: var(--gold); }
.icon-purple { background: rgba(124, 58, 237, 0.1); color: #7c3aed; }

/* ===== SECTION STYLES ===== */
.bsis-section {
  padding: 80px 0;
}
.bsis-section.bg-light { background: var(--gray-light); }
.bsis-section.bg-navy {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-medium) 100%);
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  margin-bottom: 48px;
}
.section-header.centered { text-align: center; }
.section-badge {
  display: inline-block;
  background: rgba(30, 132, 73, 0.12);
  color: var(--blue);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #0a3d1f;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
}
.section-header.centered .section-desc {
  margin-left: auto;
  margin-right: auto;
}
.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px 0 0;
}
.section-header.centered .section-divider {
  margin-left: auto;
  margin-right: auto;
}

/* ===== FEATURE CARDS ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
}
.feature-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0a3d1f;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.feature-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1e8449;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  margin-top: 16px;
  transition: gap 0.2s;
}
.feature-card .card-link:hover { gap: 10px; }

/* ===== PARTNER LOGOS ===== */
.bsis-partners {
  background: var(--white);
}
.partners-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  padding: 40px 0;
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: var(--gray-light);
  border-radius: 10px;
  border: 1px solid var(--gray);
  transition: var(--transition);
  min-width: 120px;
}
.partner-logo:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  border-color: #1e8449;
  transform: scale(1.05);
}
.partner-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: grayscale(40%);
  opacity: 0.8;
  transition: var(--transition);
}
.partner-logo:hover img {
  filter: none;
  opacity: 1;
}

/* ===== INFO BELT (dark navy section) ===== */
.bsis-info-belt {
  background: linear-gradient(135deg, #0a3d1f 0%, #1a5c30 100%);
  padding: 64px 0;
}
.info-belt-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.info-belt-text .section-title { color: var(--white); }
.info-belt-text .section-desc { color: rgba(255,255,255,0.7); }
.info-belt-text .section-divider {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.info-belt-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.info-belt-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.info-belt-list li:last-child { border-bottom: none; }
.info-belt-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== FOOTER ===== */
.bsis-footer {
  background: #03130a;
  color: rgba(255,255,255,0.75);
}
.footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand img {
  height: 56px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before {
  content: '›';
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}
.footer-bottom {
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-inner a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.footer-bottom-inner a:hover { color: var(--gold-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .bsis-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .bsis-hero-title { font-size: 36px; }
  .bsis-hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .bsis-stats-strip .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .info-belt-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .bsis-nav { display: none; }
  .bsis-header .header-inner { height: 60px; }
  .bsis-hero { min-height: auto; }
  .bsis-hero-inner { padding: 48px 16px; }
  .bsis-hero-title { font-size: 28px; }
  .bsis-hero-stats { gap: 16px; }
  .stat-card .stat-number { font-size: 26px; }
  .features-grid { grid-template-columns: 1fr; }
  .bsis-stats-strip .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .header-inner { padding: 0 16px; }
  .bsis-brand .brand-text { display: none; }
  .section-title { font-size: 26px; }
  .footer-main { grid-template-columns: 1fr; padding: 40px 16px 24px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}

/* ===== UTILITY OVERRIDES ===== */
.top-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-medium) 100%) !important;
}

/* Carousel section - keep existing but style it */
.carousel-container,
.slick-carousel .row {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-medium) 100%);
}

.slide-heading {
  font-family: 'Outfit', sans-serif !important;
  font-size: 28px !important;
  font-weight: 800 !important;
  color: var(--white) !important;
}

.slide-content_n {
  color: rgba(255,255,255,0.8) !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

/* Cards on carousel */
.cardOnCaurosal {
  margin-top: 20px;
  margin-bottom: 10px;
  position: relative;
  z-index: 10;
}

.card-trio, .card-mid {
  background: var(--white) !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow) !important;
  border: none !important;
  transition: var(--transition) !important;
  margin: 8px;
  border-top: 4px solid var(--blue) !important;
  height: auto !important;
  min-height: 260px;
  overflow: hidden;
}
.card-trio:hover, .card-mid:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover) !important;
}
.card-mid { border-top-color: var(--gold) !important; }
.cardmain {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  color: #0a3d1f !important;
  font-size: 16px !important;
}
.showFigure {
  font-family: 'Outfit', sans-serif !important;
  font-size: 48px !important;
  font-weight: 800 !important;
  color: #1e8449 !important;
}
.card-mid .showFigure { color: var(--gold) !important; }
.cardSub {
  color: var(--text-muted) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.card-head svg { width: 52px; height: 52px; }

.cardOnCaurosal .mt-6rem {
  margin-top: 1.25rem !important;
}

.cardOnCaurosal .height-40px {
  height: 10px;
}

.cardOnCaurosal .height-20px {
  height: 6px;
}

/* What is section */
.whatis {
  background: var(--gray-light) !important;
  padding: 40px 0 !important;
}
.whatis__item {
  transition: var(--transition) !important;
}
.whatis__item:hover {
  transform: translateY(-4px) !important;
}

/* Reform/Partners section */
.reform-company {
  background: var(--white);
  padding: 60px 0;
}
.reform-company .head h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #0a3d1f;
  text-align: center;
  margin-bottom: 8px;
}
.reform-company .green-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 0 auto 32px;
}

/* Footer */
.footer-main.container-y {
  background: #0a3d1f !important;
}
.bottom-bar {
  background: #03130a !important;
}

/* Buttons */
.btn-warning {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%) !important;
  border: none !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  padding: 10px 24px !important;
  transition: var(--transition) !important;
  box-shadow: 0 4px 15px rgba(201,162,39,0.3) !important;
}
.btn-warning:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(201,162,39,0.5) !important;
  color: var(--navy) !important;
}

/* Box shadows on cards */
.main-home-card {
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow) !important;
  border: 1px solid var(--gray) !important;
}

/* Home source text */
.home-source {
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  padding: 10px 0 16px;
  margin: 0;
  background: transparent;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-light); }
::-webkit-scrollbar-thumb { background: var(--navy-medium); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }


/* ===== BEAUTY ENHANCEMENTS ===== */

/* Animated green glow on header */
.bsis-navbar {
  position: relative;
}
.bsis-navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,0.5), transparent);
  animation: shineGold 3s ease-in-out infinite;
}
@keyframes shineGold {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Card hover glow effect */
.card-trio:hover, .card-mid:hover {
  box-shadow: 0 8px 32px rgba(10, 61, 31, 0.22), 0 0 0 1px rgba(30, 132, 73, 0.12) !important;
}

/* Smooth page section transitions */
.whatis__item {
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease, box-shadow 0.35s ease !important;
  border-radius: 0;
}
.whatis__item:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  opacity: 1 !important;
}

/* Strip stat number pulse on hover */
.strip-stat:hover .strip-num {
  color: var(--blue-light);
  transform: scale(1.06);
  transition: all 0.25s ease;
}

/* Better focus styles for accessibility */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Text highlight color */
::selection {
  background: rgba(30, 132, 73, 0.25);
  color: var(--text-dark);
}

/* Gold gradient divider animation */
.section-divider, .green-divider {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold)) !important;
  background-size: 200% auto !important;
  animation: gradientShift 3s ease infinite !important;
}
@keyframes gradientShift {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

/* Card link arrow animation */
.feature-card .card-link:hover {
  letter-spacing: 0.5px;
  color: var(--blue-light);
}

/* Topbar fade-in */
.bsis-topbar, .bsis-navbar {
  animation: fadeInDown 0.5s ease-out;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Reform company section logo hover */
.client-logo img {
  transition: filter 0.3s ease, transform 0.3s ease;
  filter: grayscale(30%);
}
.client-logo img:hover {
  filter: grayscale(0%) drop-shadow(0 4px 12px rgba(30,132,73,0.3));
  transform: scale(1.05);
}

/* Better button transitions across site */
.btn-warning, .btn-gold, .btn-outline-white {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  overflow: hidden;
}
.btn-warning::after, .btn-gold::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}
.btn-warning:hover::after, .btn-gold:hover::after {
  width: 200px;
  height: 200px;
}

/* Nav item indicator dot animation */
.bsis-nav-list li.nav-active a.nav-item-link::after {
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
  50% { transform: translateX(-50%) scale(1.5); opacity: 0.7; }
}

/* Section entrance animation */
.bsis-section {
  animation: sectionFadeIn 0.6s ease-out;
}
@keyframes sectionFadeIn {
  from { opacity: 0.6; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Footer hover enhancement */
.footer-col ul li a:hover {
  color: var(--gold-light) !important;
  padding-left: 4px;
  transition: all 0.2s ease;
}
