/* 
 * Sri Basavaraja Swamy (SBS) College of Nursing, Bangalore
 * Custom Theme & Component Styling
 * Brand Colors: 
 *   Royal Burgundy: #6B1F2A
 *   Metallic Gold: #D4AF37
 *   Ivory White: #F8F4E8
 */

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

:root {
  --primary-burgundy: #6B1F2A;
  --primary-burgundy-rgb: 107, 31, 42;
  --secondary-gold: #D4AF37;
  --secondary-gold-rgb: 212, 175, 55;
  --bg-ivory: #F8F4E8;
  --bg-ivory-rgb: 248, 244, 232;
  --text-dark: #2B2A27;
  --text-light: #F8F4E8;
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-premium: 0 10px 30px rgba(107, 31, 42, 0.08);
  --shadow-premium-hover: 0 20px 40px rgba(107, 31, 42, 0.15);
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .display-font {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--primary-burgundy);
}

/* Custom Palette Utility Classes */
.bg-burgundy {
  background-color: var(--primary-burgundy) !important;
}
.bg-gold {
  background-color: var(--secondary-gold) !important;
}
.bg-ivory {
  background-color: var(--bg-ivory) !important;
}
.text-burgundy {
  color: var(--primary-burgundy) !important;
}
.text-gold {
  color: var(--secondary-gold) !important;
}
.text-ivory {
  color: var(--bg-ivory) !important;
}

/* Scrollbar Style */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-ivory);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-burgundy);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-gold);
}

/* Buttons */
.btn-burgundy {
  background-color: var(--primary-burgundy);
  color: var(--text-light);
  border: 1px solid var(--primary-burgundy);
  font-weight: 500;
  padding: 0.6rem 1.8rem;
  border-radius: 4px;
  transition: var(--transition-smooth);
}
.btn-burgundy:hover, .btn-burgundy:focus {
  background-color: var(--secondary-gold);
  border-color: var(--secondary-gold);
  color: var(--primary-burgundy);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--secondary-gold);
  border: 2px solid var(--secondary-gold);
  font-weight: 500;
  padding: 0.6rem 1.8rem;
  border-radius: 4px;
  transition: var(--transition-smooth);
}
.btn-outline-gold:hover, .btn-outline-gold:focus {
  background-color: var(--secondary-gold);
  color: var(--primary-burgundy);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-gold {
  background-color: var(--secondary-gold);
  color: var(--primary-burgundy);
  border: 1px solid var(--secondary-gold);
  font-weight: 600;
  padding: 0.6rem 1.8rem;
  border-radius: 4px;
  transition: var(--transition-smooth);
}
.btn-gold:hover, .btn-gold:focus {
  background-color: var(--primary-burgundy);
  border-color: var(--primary-burgundy);
  color: var(--text-light);
  box-shadow: 0 5px 15px rgba(107, 31, 42, 0.4);
}
/* Diagonal Split Top Header */
.sbs-top-header {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(107, 31, 42, 0.08);
  font-family: var(--font-body);
  overflow: hidden;
  transition: var(--transition-smooth);
}
.top-header-left {
  font-size: 0.85rem;
}
.top-header-right {
  background-color: var(--primary-burgundy);
  position: relative;
  padding-left: 45px !important;
  color: #ffffff;
}
.top-header-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20px;
  width: 40px;
  height: 100%;
  background-color: var(--primary-burgundy);
  transform: skewX(-30deg);
  z-index: 0;
}
.top-header-right-content {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
}
.top-header-right-content a {
  transition: var(--transition-smooth);
}
.top-header-right-content a:hover {
  color: var(--secondary-gold) !important;
}
.sbs-header.sticky-scrolled .sbs-top-header {
  display: none !important;
}

/* Mobile Quick Contacts */
.btn-mobile-contact {
  color: var(--primary-burgundy);
  transition: var(--transition-smooth);
}
.sbs-header.sticky-scrolled .btn-mobile-contact {
  color: var(--secondary-gold) !important;
}

/* Header & Sticky Navigation */
.sbs-header {
  background-color: #ffffff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  transition: var(--transition-smooth);
  z-index: 1030;
}
.sbs-header.sticky-scrolled {
  background-color: rgba(107, 31, 42, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.3rem 0;
}
.sbs-header.sticky-scrolled .navbar-brand .college-name {
  color: var(--text-light) !important;
}
.sbs-header.sticky-scrolled .navbar-brand .college-sub {
  color: var(--secondary-gold) !important;
}
.sbs-header.sticky-scrolled .nav-link {
  color: var(--text-light) !important;
}
.sbs-header.sticky-scrolled .nav-link:hover,
.sbs-header.sticky-scrolled .nav-link.active {
  color: var(--secondary-gold) !important;
}

.navbar-brand img {
  max-height: 55px;
  width: auto;
  transition: var(--transition-smooth);
}
.sbs-header.sticky-scrolled .navbar-brand img {
  max-height: 45px;
}

.navbar-brand .college-name {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-burgundy);
  transition: var(--transition-smooth);
}
.navbar-brand .college-sub {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dark);
  font-weight: 600;
  transition: var(--transition-smooth);
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary-burgundy);
  padding: 0.5rem 0.8rem !important;
  transition: var(--transition-smooth);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--secondary-gold);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 80%;
}
.nav-link:hover, .nav-link.active {
  color: var(--secondary-gold) !important;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 24px;
  height: 2px;
  background-color: var(--primary-burgundy);
  display: inline-block;
  transition: var(--transition-smooth);
}
.sbs-header.sticky-scrolled .navbar-toggler-icon {
  background-color: var(--secondary-gold);
}
.navbar-toggler-icon::before, .navbar-toggler-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--primary-burgundy);
  left: 0;
  transition: var(--transition-smooth);
}
.sbs-header.sticky-scrolled .navbar-toggler-icon::before,
.sbs-header.sticky-scrolled .navbar-toggler-icon::after {
  background-color: var(--secondary-gold);
}
.navbar-toggler-icon::before {
  top: -8px;
}
.navbar-toggler-icon::after {
  top: 8px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-color: transparent !important;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Hero Section */
.hero-carousel {
  position: relative;
  height: 80vh;
  min-height: 500px;
}
.hero-item {
  height: 80vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(107, 31, 42, 0.95) 0%, rgba(107, 31, 42, 0.6) 50%, rgba(0, 0, 0, 0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
}
.hero-title {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}
.hero-desc {
  font-size: 1.15rem;
  color: var(--bg-ivory);
  max-width: 650px;
}

/* Inner Page Hero (Sub-Banners) */
.inner-hero {
  position: relative;
  height: 260px;
  background-size: cover;
  background-position: center;
}
.inner-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to right, rgba(107, 31, 42, 0.95), rgba(107, 31, 42, 0.7));
}
.inner-hero-content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.inner-hero-title {
  font-family: var(--font-headings);
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 800;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb-item a {
  color: var(--secondary-gold);
  text-decoration: none;
  transition: var(--transition-smooth);
}
.breadcrumb-item a:hover {
  color: #ffffff;
}

/* Cards (Premium Premium Cards) */
.sbs-card {
  background: #ffffff;
  border: 1px solid rgba(107, 31, 42, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
  overflow: hidden;
  height: 100%;
}
.sbs-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium-hover);
  border-color: rgba(214, 175, 55, 0.4);
}
.sbs-card .card-img-wrapper {
  overflow: hidden;
  position: relative;
  height: 220px;
}
.sbs-card .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.sbs-card:hover .card-img-wrapper img {
  transform: scale(1.08);
}
.sbs-card-body {
  padding: 1.8rem;
}
.sbs-card-title {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  transition: var(--transition-smooth);
}
.sbs-card:hover .sbs-card-title {
  color: var(--secondary-gold);
}

/* Stats Counter Section */
.stat-box {
  text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.stat-box:last-child {
  border-right: none;
}
.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--secondary-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
}
.stat-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  font-weight: 600;
}

/* Process Steps admissions.html */
.process-step {
  position: relative;
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-premium);
  border-left: 4px solid var(--primary-burgundy);
  transition: var(--transition-smooth);
}
.process-step:hover {
  border-left-color: var(--secondary-gold);
  transform: scale(1.02);
}
.step-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(107, 31, 42, 0.08);
  line-height: 1;
  transition: var(--transition-smooth);
}
.process-step:hover .step-number {
  color: rgba(212, 175, 55, 0.15);
}

/* Messages Profiles Section */
.message-profile-card {
  background: #ffffff;
  border: 1px solid rgba(107, 31, 42, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow-premium);
  overflow: hidden;
  transition: var(--transition-smooth);
}
.message-profile-card:hover {
  box-shadow: var(--shadow-premium-hover);
}
.profile-img-container {
  overflow: hidden;
  background-color: var(--bg-ivory);
  height: 380px;
  position: relative;
}
.profile-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: var(--transition-smooth);
}
.message-profile-card:hover .profile-img-container img {
  transform: scale(1.03);
}
.profile-desc-box {
  border-left: 4px solid var(--primary-burgundy);
  background: var(--bg-ivory);
}

/* Gallery Grid Styling */
.gallery-filter-btn {
  background-color: transparent;
  color: var(--primary-burgundy);
  border: 1px solid var(--primary-burgundy);
  padding: 0.4rem 1.2rem;
  margin: 0.25rem;
  font-weight: 500;
  border-radius: 30px;
  transition: var(--transition-smooth);
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background-color: var(--primary-burgundy);
  color: #ffffff;
  border-color: var(--primary-burgundy);
}

.gallery-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-premium);
  height: 260px;
}
.gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.gallery-grid-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(107, 31, 42, 0.85);
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-align: center;
  padding: 1.5rem;
}
.gallery-grid-item:hover .gallery-grid-overlay {
  opacity: 1;
}
.gallery-grid-item:hover img {
  transform: scale(1.1);
}
.gallery-grid-overlay h5 {
  font-family: var(--font-headings);
  color: var(--secondary-gold);
  margin-bottom: 0.5rem;
  transform: translateY(15px);
  transition: var(--transition-smooth);
}
.gallery-grid-overlay p {
  font-size: 0.85rem;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}
.gallery-grid-item:hover .gallery-grid-overlay h5,
.gallery-grid-item:hover .gallery-grid-overlay p {
  transform: translateY(0);
}

/* Contact Info Box & Map */
.contact-info-card {
  background: var(--bg-ivory);
  border-left: 5px solid var(--secondary-gold);
  border-radius: 0 8px 8px 0;
  padding: 2rem;
  box-shadow: var(--shadow-premium);
}
.contact-icon-wrapper {
  width: 50px;
  height: 50px;
  background-color: var(--primary-burgundy);
  color: var(--secondary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-right: 1rem;
  flex-shrink: 0;
}
.map-container {
  height: 380px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(107, 31, 42, 0.1);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Form Styles */
.sbs-form-control {
  border: 1px solid rgba(107, 31, 42, 0.15);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  background-color: #ffffff;
  transition: var(--transition-smooth);
}
.sbs-form-control:focus {
  border-color: var(--secondary-gold);
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.2);
  outline: none;
}
.sbs-form-label {
  font-weight: 500;
  color: var(--primary-burgundy);
  margin-bottom: 0.5rem;
}

/* Footer styling */
.sbs-footer {
  background-color: #1a0609;
  border-top: 4px solid var(--secondary-gold);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2rem;
}
.sbs-footer-logo img {
  max-height: 80px;
  width: auto;
}
.sbs-footer h5 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.sbs-footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-gold);
}
.sbs-footer-links {
  list-style: none;
  padding: 0;
}
.sbs-footer-links li {
  margin-bottom: 0.75rem;
}
.sbs-footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-block;
}
.sbs-footer-links a:hover {
  color: var(--secondary-gold);
  transform: translateX(5px);
}
.sbs-footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--secondary-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  transition: var(--transition-smooth);
  text-decoration: none;
}
.sbs-footer-socials a:hover {
  background-color: var(--secondary-gold);
  color: var(--primary-burgundy);
  transform: translateY(-3px);
}
.sbs-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 3rem;
  font-size: 0.9rem;
}

/* Animations Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.15s;
}
.reveal-delay-2 {
  transition-delay: 0.3s;
}
.reveal-delay-3 {
  transition-delay: 0.45s;
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
  .hero-carousel {
    height: 70vh;
  }
  .hero-item {
    height: 70vh;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .stat-box {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .stat-box:last-child {
    border-bottom: none;
  }
  .navbar-nav {
    background-color: rgba(107, 31, 42, 0.98);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
  }
  .nav-link {
    color: var(--text-light) !important;
    padding: 0.75rem 1rem !important;
  }
  .nav-link::after {
    display: none;
  }
  .nav-link:hover, .nav-link.active {
    color: var(--secondary-gold) !important;
    padding-left: 1.5rem !important;
  }

  /* Mobile Header Styling Adjustments to Fit Single Line */
  .navbar-brand {
    max-width: 60%;
    margin-right: 0 !important;
    white-space: normal !important;
  }
  .navbar-brand > div {
    min-width: 0;
    flex: 1;
  }
  .navbar-brand img {
    max-height: 42px !important;
    margin-right: 0.5rem !important;
  }
  .navbar-brand .college-name {
    font-size: 0.85rem !important;
    line-height: 1.15;
  }
  .navbar-brand .college-sub {
    font-size: 0.65rem !important;
    letter-spacing: 0.5px !important;
  }
  .btn-mobile-contact {
    margin-right: 0.5rem !important;
    font-size: 0.95rem;
  }
  .d-flex.align-items-center.ms-auto.d-lg-none.me-3 {
    margin-right: 0.5rem !important;
    gap: 0.4rem;
  }
}

@media (max-width: 360px) {
  .navbar-brand {
    max-width: 52%;
  }
  .navbar-brand .college-name {
    font-size: 0.75rem !important;
  }
  .navbar-brand img {
    max-height: 36px !important;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.8rem;
  }
  .inner-hero {
    height: 200px;
  }
  .inner-hero-title {
    font-size: 1.8rem;
  }
  .gallery-grid-item {
    height: 200px;
  }
}

/* Custom Contact Links Styling */
a.contact-link {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}
a.contact-link:hover, a.contact-link:focus {
  color: var(--secondary-gold) !important;
}

/* Modal Styling Overrides */
.modal-header .modal-title {
  color: #ffffff;
}

/* Leader Testimonial Slider Styling */
.leader-slider-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(107, 31, 42, 0.06);
  border: 1px solid rgba(107, 31, 42, 0.05);
  position: relative;
  overflow: visible;
}
.leader-image-wrapper {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--primary-burgundy), var(--secondary-gold));
  box-shadow: 0 8px 20px rgba(107, 31, 42, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}
.leader-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 2px solid #ffffff;
  border-radius: 50%;
}
.leader-quote p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555555;
  font-style: italic;
  font-weight: 400;
}
.leader-carousel {
  position: relative;
}
.leader-carousel .carousel-indicators {
  bottom: -45px;
}
.leader-carousel .carousel-indicators [data-bs-target] {
  background-color: var(--primary-burgundy);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 6px;
  opacity: 0.3;
  transition: var(--transition-smooth);
  border: none;
}
.leader-carousel .carousel-indicators .active {
  background-color: var(--secondary-gold);
  width: 24px;
  border-radius: 6px;
  opacity: 1;
}
.leader-carousel .carousel-control-prev,
.leader-carousel .carousel-control-next {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: var(--transition-smooth);
  border: 1px solid rgba(107, 31, 42, 0.1);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.leader-carousel .carousel-control-prev:hover,
.leader-carousel .carousel-control-next:hover {
  background-color: var(--primary-burgundy);
  opacity: 1;
  border-color: var(--primary-burgundy);
}
.leader-carousel .carousel-control-prev {
  left: -24px;
}
.leader-carousel .carousel-control-next {
  right: -24px;
}
.leader-carousel .carousel-control-prev-icon,
.leader-carousel .carousel-control-next-icon {
  width: 18px;
  height: 18px;
  filter: invert(10%) sepia(80%) saturate(3000%) hue-rotate(330deg); /* Styled matching primary burgundy */
}
.leader-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.leader-carousel .carousel-control-next:hover .carousel-control-next-icon {
  filter: invert(1) brightness(2);
}

@media (max-width: 767.98px) {
  .leader-carousel .carousel-control-prev,
  .leader-carousel .carousel-control-next {
    display: none; /* Swipe & dots only on small viewports */
  }
  .leader-slider-card {
    padding: 2.5rem 1.5rem !important;
  }
}
