/* ICLM design tokens and basic overrides from iclm_pages_partial.json */
:root {
  --primary-main: #e74c3c;
  --primary-light: #061867;
  --primary-dark: #1A252F;
  --secondary-main: #E74C3C;
  --secondary-light: #EC7063;
  --secondary-dark: #CB4335;
  --neutral-white: #FFFFFF;
  --neutral-gray-light: #F8F9FA;
  --neutral-gray-medium: #E9ECEF;
  --neutral-gray-dark: #6C757D;
  --black: #212529;
  --success: #28A745;
  --warning: #FFC107;
  --error: #DC3545;
  --info: #17A2B8;

  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-secondary: Arial, Helvetica, sans-serif;

  --h1-size: 2.5rem;
  --h2-size: 2rem;
  --h3-size: 1.75rem;

  /* Additional Brand Colors */
  --accent-red: #e74c3c;
  --accent-red-dark: #c0392b;
  --accent-green: #c7d936;
  --success-green: #27ae60;
}

/* ===== UTILITY CLASSES FOR BRAND CONSISTENCY ===== */

/* Brand Red/Orange Gradient Background */
.bg-gradient-brand-red {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
  padding: 50px 40px;
  border-radius: 12px;
  color: white;
  height: 100%;
}

/* White Card with Premium Shadow */
.white-card-shadow {
  background: white !important;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
}

/* Feature Icon Circle */
.feature-icon-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
}

/* ===== END UTILITY CLASSES ===== */


/* Small Laptop Responsive Base Styles */
@media (min-width: 993px) and (max-width: 1366px) {
  :root {
    --h1-size: 2rem;
    --h2-size: 1.75rem;
    --h3-size: 1.5rem;
  }
}

body {
  font-family: var(--font-primary);
  color: var(--black);
}


/* Headings */
h1 {
  font-size: var(--h1-size);
  color: var(--black);
  font-weight: 700
}

h2 {
  font-size: var(--h2-size);
  color: var(--black);
  font-weight: 600
}

h3 {
  font-size: var(--h3-size);
  color: var(--black);
  font-weight: 600
}

/* Professional Standards headings (gradient panel titles) */
.standards-heading {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #ffffff;
}

/* Hero adjustments */
.hero-wrap .text h1 {
  font-size: var(--h1-size);
  line-height: 1.05
}

.hero-wrap .text h2 {
  font-size: 1.125rem;
  color: var(--neutral-gray-dark);
  margin-bottom: 8px
}

.hero-wrap .text p {
  font-size: 1rem;
  color: var(--neutral-gray-dark)
}

/* Intro section */
.heading-section .subheading {
  color: var(--black);
  font-weight: 600;
  display: block;
  margin-bottom: 8px
}

/* Courses / Blog section heading */
.heading-section h2 {
  color: var(--black)
}

/* Cards */
.blog-entry .heading a {
  color: var(--black)
}

.blog-entry .meta a {
  color: var(--neutral-gray-dark)
}

/* Footer tweaks */
.footer {
  background: var(--neutral-gray-light);
  padding: 4rem 0 2rem;
  border-top: 3px solid var(--primary-main);
}

.footer .footer-heading {
  color: var(--black);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer p {
  color: var(--neutral-gray-dark);
  line-height: 1.8;
}

.footer a {
  color: var(--neutral-gray-dark);
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-main);
  text-decoration: none;
}

.footer .list-unstyled a {
  color: var(--neutral-gray-dark) !important;
}

.footer .list-unstyled a:hover {
  color: var(--primary-main) !important;
}

.footer .contact-form .form-control {
  border: 1px solid var(--neutral-gray-medium);
  padding: 0.75rem;
  border-radius: 4px;
}

.footer .contact-form .form-control:focus {
  border-color: var(--primary-main);
  box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.1);
}

.footer .contact-form .submit {
  background: var(--primary-main);
  color: var(--neutral-white);
  border: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.footer .contact-form .submit:hover {
  background: var(--primary-dark);
}

.footer .copyright {
  color: var(--neutral-gray-dark);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--neutral-gray-medium);
}

.footer .copyright a {
  color: var(--primary-main);
  font-weight: 600;
}

.ftco-footer-social li {
  display: inline-block;
  margin-right: 1rem;
}

.ftco-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--neutral-gray-medium);
  color: var(--primary-main);
  transition: all 0.3s ease;
}

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

/* Footer Form Section */
.aside-stretch-right {
  background: var(--neutral-white);
  padding: 2rem !important;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Buttons */
/* About Tab Active State */
.about-tab.active {
  border-top: none;
  border-right: none;
  border-left: none;
  border-image: initial;
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: var(--primary-main);
  color: rgb(255 255 255);
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary {
  background: var(--primary-main);
  border-color: var(--primary-main);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2);
}

.btn-outline-dark {
  color: #333;
  border-color: #333;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
}

.btn-outline-dark:hover {
  background: white;
  border-color: var(--primary-main);
  color: var(--primary-main);
}

.btn-dark {
  background: transparent;
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: 3px solid var(--primary-main);
  color: rgb(255, 255, 255);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-dark:hover {
  background: var(--primary-main);
  border-bottom-color: var(--primary-main);
  color: white;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Responsive tweaks left to bootstrap defaults */

/* Preloader Styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.preloader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--primary-main);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

  100% {
    transform: rotate(360deg);
  }
}

.preloader-text {
  margin-top: 20px;
  color: var(--primary-main);
  font-size: 1.1rem;
  font-weight: 600;
}

/* Skeleton Loader Styles */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s ease-in-out infinite;
  border-radius: 4px;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.skeleton-text {
  height: 16px;
  margin-bottom: 8px;
  border-radius: 4px;
}

.skeleton-title {
  height: 32px;
  width: 60%;
  margin-bottom: 16px;
  border-radius: 4px;
}

.skeleton-card {
  height: 300px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.skeleton-img {
  height: 250px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.skeleton-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

/* Video Loading State */
.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
  filter: brightness(0.55);
  opacity: 0;
  transition: opacity 0.5s ease-in;
}

.hero-video.loaded {
  opacity: 1;
}

.video-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
  filter: brightness(0.55);
  z-index: 1;
}

.hero-video-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: white;
  text-align: center;
}

.hero-video-loading .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 10px;
}

/* Mobile Navbar Scrolling Fix */
@media (max-width: 991px) {
  .navbar-collapse {
    max-height: 80vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .navbar-collapse::-webkit-scrollbar {
    width: 6px;
  }

  .navbar-collapse::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  .navbar-collapse::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
  }

  .navbar-collapse::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
}

/* BCS-like hero and feature styles */
.hero-bcs {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-bcs .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
}

.hero-bcs .hero-inner {
  position: relative;
  min-height: 520px;
}

.hero-bcs .hero-box {
  background: #fff;
  padding: 30px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  margin-left: auto;
}

.hero-bcs .hero-box h2 {
  color: var(--black);
  font-size: 2rem;
  margin-bottom: 8px
}

.hero-bcs .hero-box .lead {
  color: var(--neutral-gray-dark)
}

.feature-band {
  padding: 45px 0 40px;
  position: relative
}

.feature-cards {
  margin-top: -60px;
  gap: 24px
}

.feature-card {
  background: #e74c3c;
  color: #333;
  padding: 28px;
  width: 320px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.feature-card h3 {
  margin-top: 0;
  font-size: 1.25rem;
  color: #333;
}

.feature-card p {
  margin: 0;
  color: #333
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
}

/* BCS Header Styles */
.bcs-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(5, 24, 103, 0.08);
}

.bcs-top-nav {
  background: linear-gradient(90deg, #f8f9fa 0%, #ffffff 100%);
  border-bottom: 1px solid #e9ecef;
  font-size: 0.875rem;
}

.bcs-top-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.bcs-top-link {
  color: #6c757d;
  text-decoration: none;
  font-weight: 500;
  padding: 0.25rem 0;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.bcs-top-link:hover {
  color: var(--primary-main);
  border-bottom-color: var(--primary-main);
  text-decoration: none;
}

.btn-bcs-login {
  background: var(--accent-green);
  color: #333;
  padding: 0.375rem 0.75rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
}

.btn-bcs-login:hover {
  background: #b8d043;
  color: #333;
  text-decoration: none;
}

.bcs-main-nav {
  background: #ffffff;
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.bcs-main-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.bcs-main-menu .nav-link {
  color: #333 !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1rem !important;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 4px;
  margin: 0 0.25rem;
}

/* Small laptop optimization */
@media (min-width: 993px) and (max-width: 1200px) {
  .bcs-main-menu .nav-link {
    padding: 0.75rem 0.6rem !important;
    font-size: 0.85rem;
  }
}

@media (min-width: 1201px) and (max-width: 1366px) {
  .bcs-main-menu .nav-link {
    padding: 0.75rem 0.8rem !important;
    font-size: 0.9rem;
  }
}

.bcs-main-menu .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-main), var(--secondary-main));
  transform: scaleX(0);
  transition: transform 0.2s ease;
  border-radius: 2px;
}

.bcs-main-menu .nav-link:hover {
  color: var(--primary-main) !important;
  background: rgba(5, 24, 103, 0.05);
  text-decoration: none;
}

.bcs-main-menu .nav-link:hover::before {
  transform: scaleX(1);
}

.bcs-main-menu .nav-link.show {
  color: var(--primary-main) !important;
  background: rgba(5, 24, 103, 0.08);
}

.bcs-main-menu .nav-link.show::before {
  transform: scaleX(1);
}

.bcs-search {
  color: #333;
  font-size: 1.125rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.bcs-search:hover {
  color: var(--primary-main);
  transform: scale(1.1);
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
  outline: none !important;
}

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

/* BCS Mega Dropdown Styles */
.bcs-mega-dropdown {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 8px 32px rgba(5, 24, 103, 0.12);
  padding: 2.5rem;
  margin-top: 0.75rem;
  border-radius: 6px;
  min-width: calc(100vw - 60px);
  left: 50% !important;
  transform: translateX(-50%) !important;
  max-width: 95vw;
  animation: slideDown 0.2s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.dropdown-content {
  padding: 1rem 0;
}

.dropdown-content .row {
  margin-right: 0;
  margin-left: 0;
}

.dropdown-content .col-lg-4 {
  padding-right: 2rem;
  border-right: 1px solid #f0f0f0;
}

.dropdown-content .col-lg-4:last-child {
  border-right: none;
  padding-right: 0;
}

.links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dropdown-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  display: block;
  position: relative;
  padding-left: 0;
}

.dropdown-link::before {
  content: '→';
  position: absolute;
  left: -12px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--primary-main);
}

.dropdown-link:hover {
  color: var(--primary-main);
  text-decoration: none;
  padding-left: 12px;
}

.dropdown-link:hover::before {
  opacity: 1;
  left: 0;
}

.dropdown-header {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-main);
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent-green);
  display: block;
}

/* Membership Visual Styling */
.membership-visual {
  text-align: center;
  margin-bottom: 1.5rem;
}

.membership-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-main) 0%, var(--secondary-main) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  box-shadow: 0 4px 15px rgba(5, 24, 103, 0.2);
}

.membership-dots {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

.membership-dots .dot {
  width: 8px;
  height: 8px;
  background: #cc3300;
  border-radius: 50%;
  opacity: 0.9;
}

/* CITP Badge Styling */
.citp-badge {
  margin-bottom: 1rem;
}

.badge-container {
  background: var(--primary-main);
  color: white;
  padding: 1.25rem;
  border-radius: 8px;
  text-align: center;
  width: 100px;
  box-shadow: 0 5px 20px rgba(5, 24, 103, 0.3);
  border: 2px solid var(--secondary-main);
}

.citp-text {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 2px;
}

.badge-container small {
  display: block;
  font-size: 0.6rem;
  line-height: 1.2;
  margin-top: 0.25rem;
  opacity: 0.9;
}

/* Clean Dropdown Links */
.dropdown-item {
  color: #333;
  padding: 10px 20px;
  border: none;
  transition: all 0.2s ease;
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
}

.dropdown-item:hover {
  color: var(--primary-main);
  background: #f5f5f5;
  padding-left: 25px;
}

.dropdown-item::after {
  content: '';
  display: none;
}

.dropdown-item:hover::after {
  display: none;
}

.btn-iclm-login {
  background: var(--accent-green);
  color: #111;
  border-radius: 4px;
  padding: 8px 16px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.85rem;
  border: none;
  white-space: nowrap;
}

.btn-iclm-login:hover {
  background: #b8d043;
  color: #111;
  text-decoration: none;
}

/* Logo styling */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333 !important;
  text-decoration: none;
}

.navbar-brand:hover {
  color: #333 !important;
  text-decoration: none;
}

/* Container adjustments for BCS layout */
.navbar-top .container .row {
  align-items: center;
}

.navbar-bottom .container {
  position: relative;
}

.dropdown-menu {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid #e9ecef;
  border-radius: 4px;
  padding: 12px 0;
  margin-top: 4px;
}

.dropdown-menu.dropdown-lg {
  min-width: 600px;
  padding: 24px;
}

.dropdown-menu.dropdown-lg .dropdown-header {
  color: var(--primary-main);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  padding: 0;
  font-weight: 700;
}

.dropdown-item {
  padding: 8px 20px;
  color: #666;
  font-weight: 500;
  font-size: 0.95rem;
}

.dropdown-item:hover {
  background: #f8f9fa;
  color: #333;
}

.dropdown-item.active {
  background: var(--accent-green);
  color: #111;
}

/* BCS Hero Section */
.bcs-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero-bg img {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-box {
  padding: 2rem;
}

.hero-box h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  line-height: 1.2;
}

.hero-box .lead {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.5;
}

.min-vh-75 {
  min-height: 75vh;
}

.hero-bg-image {
  width: 100%;
  height: 400px;
  background-image: url('images/bg_1.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  opacity: 0.8;
}

.bcs-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.2;
}

.bcs-hero-content .lead {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* BCS Feature Cards */
.bcs-features {
  background: #ffffff;
  margin-top: -2rem;
  position: relative;
  z-index: 10;
}

.feature-card {
  background: var(--accent-green);
  border-radius: 8px;
  transition: transform 0.3s ease;
  height: 100%;
}

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

.feature-card .feature-icon {
  color: #333;
}

.feature-card h3,
.feature-card p {
  color: #333;
}

/* ICLM Section */
.iclm-section {
  background: #f8f9fa;
}

.iclm-content h2 {
  color: var(--primary-main);
  font-weight: 600;
}

.iclm-image img {
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Team Header */
.team-header {
  border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
  background: transparent;
  padding: 0;
}

.breadcrumb-item a {
  color: var(--primary-main);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #6c757d;
}

.bcs-feature-card {
  background: var(--accent-green);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.feature-icon {
  margin-bottom: 24px;
}

.icon-circle {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 2rem;
  color: #333;
}

.bcs-feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}

.bcs-feature-card p {
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  opacity: 0.9;
}

/* Breadcrumb Section */
.bcs-breadcrumb {
  background: #f8f9fa;
  padding: 30px 0;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 16px;
}

.breadcrumb-item a {
  color: #666;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #333;
}

.page-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin: 0;
}

/* Responsive Design */

/* Small Laptops (1024px - 1366px) */
@media (min-width: 993px) and (max-width: 1366px) {
  .container {
    max-width: 95%;
  }

  .bcs-top-links {
    gap: 1rem;
  }

  .bcs-top-links a {
    font-size: 0.8rem;
  }

  .bcs-main-link {
    padding: 1rem 0.8rem !important;
    font-size: 0.85rem;
  }

  .bcs-logo-link img {
    height: 70px !important;
  }

  .bcs-logo-text {
    font-size: 0.95rem;
  }

  .hero-box {
    padding: 25px;
  }

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

  .hero-box .lead {
    font-size: 1rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .feature-card h3 {
    font-size: 1.25rem;
  }

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

  .heading-section h2 {
    font-size: 1.8rem;
  }

  .bcs-dropdown {
    min-width: 180px;
  }

  .dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .solution-card {
    padding: 25px !important;
  }

  .card-title-responsive {
    font-size: 1.2rem !important;
  }

  .icon-box {
    width: 60px !important;
    height: 60px !important;
  }

  .icon-box i {
    font-size: 26px !important;
  }
}

@media (max-width: 992px) {
  #ftco-navbar-secondary {
    display: none;
  }

  .dropdown-menu {
    min-width: 100%;
    left: 0 !important;
    transform: none !important;
    padding: 1rem;
  }

  .membership-circle {
    width: 60px;
    height: 60px;
  }

  .badge-container {
    width: 80px;
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .bcs-top-nav .d-flex {
    justify-content: center;
  }

  .bcs-feature-card {
    margin-bottom: 20px;
  }

  .bcs-dropdown-section {
    padding: 20px 15px;
  }
}

/* BCS Dropdown Styles */
.dropdown-menu {
  border: 1px solid #e9ecef;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 20px 0;
  margin-top: 8px;
  min-width: 250px;
}

.dropdown-menu.dropdown-lg {
  min-width: 600px;
  padding: 30px;
}

.dropdown-header {
  color: #333;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  padding: 0;
}

.dropdown-item {
  padding: 8px 20px;
  color: #666;
  font-weight: 500;
  font-size: 0.95rem;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #333;
}

/* CTA Section */
.cta-band {
  background: #f8f9fa;
  padding: 60px 0;
  margin-top: -40px;
  position: relative;
  z-index: 10
}

.cta-box {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1)
}

.cta-box .row {
  align-items: center
}

.cta-box-content h3 {
  color: var(--black);
  font-size: 1.5rem;
  margin-bottom: 12px
}

.cta-box-content p {
  color: var(--neutral-gray-dark);
  margin-bottom: 0
}

.cta-box-buttons {
  display: flex;
  gap: 12px
}

.cta-box-buttons .btn {
  padding: 10px 24px;
  font-weight: 600;
  border-radius: 4px
}

.cta-btn-primary {
  background: var(--black);
  color: #fff;
  border: 2px solid var(--black)
}

.cta-btn-primary:hover {
  background: #333;
  border-color: #333
}

.cta-btn-secondary {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black)
}

.cta-btn-secondary:hover {
  background: var(--neutral-gray-light)
}



/* Something for section */
.something-for {
  background: #f6f6e8;
  padding: 80px 0
}

.something-for .col {
  padding: 20px
}

.something-for h2 {
  font-size: 2rem;
  margin-bottom: 24px
}

.something-for .list-unstyled li {
  padding: 6px 0
}

@media (max-width:767px) {
  .hero-bcs .hero-inner {
    min-height: 420px
  }

  .feature-cards {
    flex-direction: column;
    align-items: stretch
  }

  .feature-card {
    width: 100%;
    margin: 0 auto
  }

  .hero-bcs .hero-box {
    margin-top: 20px
  }
}

/* Small Laptop Specific Fixes */
@media (min-width: 768px) and (max-width: 1366px) {
  .hero-bcs .hero-inner {
    min-height: 450px;
  }

  .feature-cards {
    gap: 15px;
  }

  .feature-card {
    width: 280px;
    padding: 2rem 1.5rem;
  }

  .bcs-top-tier {
    min-height: 60px;
  }

  .container-fluid {
    padding: 0 20px !important;
  }

  .navbar-bottom .nav-item {
    margin: 0 10px;
  }

  /* Adjust feature section spacing */
  .something-for .col-md-6,
  .something-for .col-lg-3 {
    padding: 15px;
  }

  /* Fix blog entry cards */
  .blog-entry {
    margin-bottom: 20px;
  }

  /* Optimize footer on small laptops */
  .footer .col-md-3 {
    padding: 0 15px;
  }

  .footer-heading {
    font-size: 1.1rem;
  }
}

/* Additional BCS-style improvements */
.navbar-brand img {
  max-height: 32px;
  width: auto;
}

.navbar-toggler {
  border: none;
  padding: 4px 8px;
}

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

/* Enhanced dropdown styling */
.dropdown-toggle::after {
  display: none !important;
}

/* Improve overall typography */
.navbar-nav .nav-link {
  line-height: 1.4;
}

/* Better spacing for navigation items */
.navbar-bottom .navbar-nav {
  align-items: center;
}

.navbar-bottom .nav-item {
  margin: 0 15px;
}

.navbar-bottom .nav-item:first-child {
  margin-left: 0;
}

.navbar-bottom .nav-item:last-child {
  margin-right: 0;
}

/* BCS 2-TIER NAVBAR - EXACT DESIGN FROM SCREENSHOT */
.bcs-header-2tier {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* TOP TIER - Light gray background with links */
.bcs-top-tier {

  font-size: 0.875rem;
  min-height: 78px;
}

.bcs-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: 60px;
}

.bcs-logo-link img {
  height: 90px !important;
  width: auto;
}

.bcs-logo-text {
  font-weight: 700;
  color: #051867;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
}

.bcs-top-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.bcs-top-links a {
  color: #666;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.bcs-top-links a:hover {
  color: #051867;
}

.bcs-login-btn {
  background: #e74c3c;
  color: #ffffff;
  padding: 0.5rem 1.25rem;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-block;
  transition: background 0.2s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.bcs-login-btn:hover {
  background: #9b59b6;
  color: #ffffff;
  text-decoration: none;
}

/* MAIN TIER - White background with main navigation */
.bcs-main-tier {
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 0;
  min-height: 60px;
}

.bcs-main-tier .navbar {
  height: 60px;
  padding: 0;
}

.bcs-main-link {
  color: #333 !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1rem 1.5rem !important;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  display: flex;
  align-items: center;
  height: 60px;
}

.bcs-main-link:hover,
.bcs-main-link.show {
  color: var(--primary-main) !important;
  border-bottom-color: var(--primary-light);
}

.bcs-dropdown {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 6px 20px rgba(5, 24, 103, 0.12);
  padding: 0.5rem 0;
  margin-top: 0.25rem;
  border-radius: 4px;
  min-width: 200px;
}

.bcs-dropdown .dropdown-item {
  color: #333;
  padding: 0.6rem 1.25rem;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.bcs-dropdown .dropdown-item:hover {
  background: #f5f5f5;
  color: #051867;
  padding-left: 1.5rem;
}

.bcs-search-link {
  color: #333;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 0.75rem 1.5rem;
  display: inline-block;
}

.bcs-search-link:hover {
  color: #051867;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .bcs-header-2tier {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  /* Hide top tier on mobile */
  .bcs-top-tier {
    display: none;
  }

  /* Mobile navbar layout */
  .bcs-main-tier {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    min-height: 60px;
  }

  .bcs-main-tier .navbar {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    height: 60px;
  }

  /* Hamburger menu on LEFT */
  .navbar-toggler {
    border: none;
    padding: 0.5rem;
    margin: 0;
    outline: none !important;
    background: transparent;
    z-index: 1;
  }

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

  .navbar-toggler .fa-bars {
    font-size: 1.5rem;
    color: #333;
  }

  /* Logo CENTERED - only show mobile version */
  .bcs-main-tier .bcs-logo-link.d-lg-none {
    display: flex !important;
    align-items: center;
    gap: 10px;
    z-index: 1;
  }

  .bcs-main-tier .bcs-logo-link.d-lg-none img {
    height: 40px !important;
  }

  .bcs-main-tier .bcs-logo-link.d-lg-none .bcs-logo-text {
    font-size: 1rem !important;
    font-weight: 700;
    color: var(--primary-main);
  }

  /* Search icon on RIGHT */
  .bcs-main-tier .bcs-search-link.d-lg-none {
    display: block !important;
    z-index: 1;
  }

  /* Mobile menu dropdown */
  .navbar-collapse {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 1000;
  }

  .navbar-collapse.show {
    display: block;
  }

  .navbar-nav {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .bcs-main-link {
    padding: 1rem 1.5rem !important;
    border-left: 4px solid transparent;
    border-bottom: none;
    width: 100%;
    height: auto;
    display: block;
  }

  .bcs-main-link:hover,
  .bcs-main-link.show {
    border-left-color: var(--primary-light);
    border-bottom: none;
    background: #f8f9fa;
  }

  .bcs-dropdown {
    position: static;
    border: none;
    box-shadow: none;
    background: #f9f9f9;
    margin: 0;
    border-radius: 0;
    min-width: auto;
  }

  .bcs-dropdown .dropdown-item {
    padding-left: 2.5rem;
    font-size: 0.9rem;
  }

  .bcs-dropdown .dropdown-item:hover {
    padding-left: 2.75rem;
  }

  /* Hide desktop search in nav list */
  .navbar-nav .bcs-search-link {
    display: none !important;
  }
}

.bcs-main-nav-new {
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.bcs-main-nav-new .navbar {
  min-height: auto;
  padding: 0.75rem 0;
}

.bcs-main-nav-new .navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: #051867 !important;
  font-size: 1rem;
  margin-right: 40px;
  padding: 0;
  white-space: nowrap;
}

.bcs-main-nav-new .navbar-brand img {
  height: 40px;
  width: auto;
  margin-right: 8px;
  vertical-align: middle;
}

.bcs-main-menu-new {
  display: flex;
  gap: 0;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bcs-main-menu-new .nav-item {
  position: relative;
  margin: 0;
}

.nav-link-new {
  color: #333 !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.75rem 1.2rem !important;
  text-decoration: none;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}

.nav-link-new span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link-new:hover {
  color: var(--primary-main) !important;
  border-bottom-color: var(--accent-green);
  text-decoration: none;
}

.nav-link-new.show {
  color: var(--primary-main) !important;
  border-bottom-color: var(--accent-green);
}

.nav-link-search {
  padding: 0.75rem 0.5rem !important;
  font-size: 1.1rem !important;
}

.nav-link-search:hover {
  border-bottom: 3px solid transparent !important;
}

/* Dropdown Menu - Clean & Simple */
.dropdown-menu-new {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 6px 20px rgba(5, 24, 103, 0.12);
  padding: 0.75rem 0;
  margin-top: 0.5rem;
  border-radius: 6px;
  min-width: 220px;
  animation: slideDown 0.2s ease;
}

.dropdown-item-new {
  color: #333;
  padding: 0.75rem 1.25rem;
  border: none;
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  display: block;
}

.dropdown-item-new:hover {
  background: #f5f5f5;
  color: var(--primary-main);
  text-decoration: none;
  padding-left: 1.5rem;
}

.dropdown-item-new:first-child {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.dropdown-item-new:last-child {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

/* Mobile responsive */
@media (max-width: 991px) {
  .bcs-main-nav-new .navbar-brand {
    margin-right: 20px;
  }

  .bcs-main-menu-new {
    flex-direction: column;
    gap: 0;
  }

  .nav-link-new {
    border-bottom: 3px solid transparent;
    border-left: 4px solid transparent;
    width: 100%;
  }

  .nav-link-new:hover,
  .nav-link-new.show {
    border-bottom: 3px solid transparent;
    border-left-color: var(--accent-green);
  }

  .dropdown-menu-new {
    position: static;
    border: none;
    box-shadow: none;
    background: #f9f9f9;
    margin: 0;
    border-radius: 0;
    min-width: auto;
  }

  .dropdown-item-new {
    padding-left: 2rem;
  }

  .dropdown-item-new:hover {
    padding-left: 2.25rem;
  }
}