/* Architectural Studio - Cyber Cyan & Energy Orange Theme */

/* ========================================
   ROOT VARIABLES & RESETS
   ======================================== */
:root {
  --primary-color: #00BCD4;
  --secondary-color: #FF6F00;
  --dark-bg: #0a0e27;
  --darker-bg: #050818;
  --light-cyan: #4DD0E1;
  --dark-cyan: #0097A7;
  --light-orange: #FF9800;
  --dark-orange: #E65100;
  --text-light: #ffffff;
  --text-dark: #1a1a1a;
  --text-gray: #b0b0b0;
  --transition-speed: 0.3s;
  --glow-cyan: 0 0 20px rgba(0, 188, 212, 0.6);
  --glow-orange: 0 0 20px rgba(255, 111, 0, 0.6);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--darker-bg) !important;
  color: var(--text-light) !important;
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

/* ========================================
   NAVIGATION BAR
   ======================================== */
.navbar {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.98) 0%, rgba(5, 8, 24, 0.98) 100%) !important;
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--primary-color);
  padding: 1rem 0 !important;
  box-shadow: 0 4px 30px rgba(0, 188, 212, 0.3);
  z-index: 1050;
}

.navbar-brand {
  color: var(--primary-color) !important;
  font-size: 1.8rem !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: var(--glow-cyan);
  transition: all var(--transition-speed) ease;
}

.navbar-brand:hover {
  color: var(--light-cyan) !important;
  transform: scale(1.05);
  text-shadow: 0 0 30px rgba(0, 188, 212, 0.8);
}

.navbar-dark .navbar-toggler {
  border-color: var(--primary-color) !important;
  background-color: rgba(0, 188, 212, 0.1) !important;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 188, 212, 0.5) !important;
}

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

.navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-weight: 500 !important;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: all var(--transition-speed) ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: translateX(-50%);
  transition: width var(--transition-speed) ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
  text-shadow: 0 0 10px rgba(0, 188, 212, 0.5);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
  width: 80%;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 50%, #0a1828 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 188, 212, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 111, 0, 0.15) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-section .display-1 {
  font-size: clamp(2.5rem, 8vw, 5rem) !important;
  font-weight: 900 !important;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--light-cyan) 50%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 3px;
  animation: textGlow 3s ease-in-out infinite;
  line-height: 1.2;
}

@keyframes textGlow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(0, 188, 212, 0.5)); }
  50% { filter: drop-shadow(0 0 40px rgba(0, 188, 212, 0.8)); }
}

.hero-section .fs-3 {
  color: var(--text-gray) !important;
  font-weight: 300 !important;
  font-size: clamp(1rem, 3vw, 1.5rem) !important;
  max-width: 700px;
  margin: 0 auto 2rem auto !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.bi-chevron-down {
  font-size: 2.5rem;
  color: var(--primary-color) !important;
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.bi-chevron-down:hover {
  color: var(--secondary-color) !important;
  transform: scale(1.2);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-20px); }
  60% { transform: translateY(-10px); }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px !important;
  transition: all var(--transition-speed) ease !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 2px solid transparent !important;
}

.glow-button,
.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-cyan)) !important;
  color: var(--text-light) !important;
  border-color: var(--primary-color) !important;
  box-shadow: var(--glow-cyan);
}

.glow-button:hover,
.btn-primary:hover {
  background: linear-gradient(135deg, var(--light-cyan), var(--primary-color)) !important;
  color: var(--text-light) !important;
  box-shadow: 0 0 30px rgba(0, 188, 212, 0.8) !important;
  transform: translateY(-3px) scale(1.05);
}

.btn-outline-light {
  color: var(--text-light) !important;
  border-color: var(--text-light) !important;
  background: transparent !important;
}

.btn-outline-light:hover {
  background: var(--text-light) !important;
  color: var(--dark-bg) !important;
  border-color: var(--text-light) !important;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5) !important;
  transform: translateY(-3px);
}

.btn-outline-primary {
  color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  background: transparent !important;
}

.btn-outline-primary:hover {
  background: var(--primary-color) !important;
  color: var(--text-light) !important;
  border-color: var(--primary-color) !important;
  box-shadow: var(--glow-cyan) !important;
  transform: translateY(-3px);
}

.btn-light {
  background: var(--text-light) !important;
  color: var(--dark-bg) !important;
  border-color: var(--text-light) !important;
}

.btn-light:hover {
  background: var(--primary-color) !important;
  color: var(--text-light) !important;
  border-color: var(--primary-color) !important;
  box-shadow: var(--glow-cyan) !important;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

/* ========================================
   SECTIONS
   ======================================== */
.py-5,
.pb-5,
.pt-5 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.container,
.container-fluid {
  position: relative;
  z-index: 1;
}

.display-3,
.display-4,
.display-5 {
  font-weight: 800 !important;
  color: var(--text-light) !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem !important;
}

.display-3 {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.h1, .h4, h1, h4 {
  color: var(--text-light) !important;
  font-weight: 700 !important;
}

.fs-5,
.fs-4,
.lead {
  color: var(--text-gray) !important;
  line-height: 1.8;
}

/* ========================================
   CARDS & COMPONENTS
   ======================================== */
.card {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.9), rgba(5, 8, 24, 0.9)) !important;
  border: 2px solid rgba(0, 188, 212, 0.3) !important;
  border-radius: 20px !important;
  overflow: hidden;
  transition: all var(--transition-speed) ease;
  color: var(--text-light) !important;
}

.card:hover,
.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 188, 212, 0.4) !important;
  border-color: var(--primary-color) !important;
}

.card-body {
  padding: 2rem;
  background: transparent !important;
}

.card-title {
  color: var(--primary-color) !important;
  font-weight: 700 !important;
  font-size: 1.5rem !important;
  margin-bottom: 1rem !important;
}

.card-text {
  color: var(--text-gray) !important;
  line-height: 1.6;
}

.text-muted {
  color: var(--text-gray) !important;
}

.shadow,
.shadow-sm,
.shadow-lg {
  box-shadow: 0 10px 30px rgba(0, 188, 212, 0.2) !important;
}

/* ========================================
   ICONS & BADGES
   ======================================== */
.bi {
  transition: all var(--transition-speed) ease;
}

.bi-lightning-charge-fill,
.bi-trophy-fill,
.bi-graph-up-arrow,
.bi-apple,
.bi-heart-pulse-fill,
.bi-people-fill,
.bi-pin-map-fill,
.bi-hexagon-fill,
.bi-gear-wide-connected {
  font-size: 3rem;
  color: var(--secondary-color) !important;
  margin-bottom: 1rem;
  filter: drop-shadow(var(--glow-orange));
}

.bi-facebook,
.bi-instagram,
.bi-youtube,
.bi-twitter {
  font-size: 1.5rem;
  color: var(--text-light) !important;
  transition: all var(--transition-speed) ease;
}

.bi-facebook:hover { color: #1877F2 !important; }
.bi-instagram:hover { color: #E4405F !important; }
.bi-youtube:hover { color: #FF0000 !important; }
.bi-twitter:hover { color: #1DA1F2 !important; }

.bi:hover {
  transform: scale(1.2) rotate(5deg);
}

.badge {
  background: var(--secondary-color) !important;
  color: var(--text-light) !important;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ========================================
   FORMS
   ======================================== */
.form-control,
.form-select {
  background: rgba(10, 14, 39, 0.7) !important;
  border: 2px solid rgba(0, 188, 212, 0.3) !important;
  color: var(--text-light) !important;
  padding: 1rem !important;
  border-radius: 10px !important;
  transition: all var(--transition-speed) ease;
}

.form-control:focus,
.form-select:focus {
  background: rgba(10, 14, 39, 0.9) !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(0, 188, 212, 0.25) !important;
  color: var(--text-light) !important;
}

.form-control::placeholder {
  color: var(--text-gray) !important;
}

.form-floating > label {
  color: var(--text-gray) !important;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
  color: var(--primary-color) !important;
}

.invalid-feedback {
  color: var(--secondary-color) !important;
  font-weight: 600;
}

.form-check-input {
  background-color: rgba(10, 14, 39, 0.7) !important;
  border-color: var(--primary-color) !important;
}

.form-check-input:checked {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 188, 212, 0.25) !important;
}

/* ========================================
   PARALLAX & SPECIAL SECTIONS
   ======================================== */
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 8rem 0;
}

.parallax-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.8), rgba(255, 111, 0, 0.8));
  z-index: 1;
}

.parallax-section > * {
  position: relative;
  z-index: 2;
}

/* ========================================
   GRID & LAYOUT
   ======================================== */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.program-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: all var(--transition-speed) ease;
}

.card-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.card-img-top {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.program-card:hover .card-img-top {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.7), rgba(255, 111, 0, 0.7));
  opacity: 0;
  transition: opacity var(--transition-speed) ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-card:hover .overlay {
  opacity: 1;
}

/* ========================================
   PROGRESS BARS
   ======================================== */
.progress {
  height: 25px;
  background-color: rgba(10, 14, 39, 0.7) !important;
  border-radius: 50px;
  overflow: hidden;
}

.progress-bar {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)) !important;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: progressAnimation 1.5s ease-in-out;
}

@keyframes progressAnimation {
  from { width: 0; }
}

/* ========================================
   ACCORDION
   ======================================== */
.accordion-item {
  background: rgba(10, 14, 39, 0.7) !important;
  border: 2px solid rgba(0, 188, 212, 0.3) !important;
  margin-bottom: 1rem;
  border-radius: 10px !important;
  overflow: hidden;
}

.accordion-button {
  background: rgba(10, 14, 39, 0.9) !important;
  color: var(--text-light) !important;
  font-weight: 600 !important;
  border: none !important;
  padding: 1.5rem !important;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.3), rgba(255, 111, 0, 0.3)) !important;
  color: var(--primary-color) !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 188, 212, 0.25) !important;
}

.accordion-button::after {
  filter: brightness(0) invert(1);
}

.accordion-body {
  background: rgba(5, 8, 24, 0.7) !important;
  color: var(--text-gray) !important;
  padding: 2rem !important;
}

/* ========================================
   ALERTS
   ======================================== */
.alert {
  border-radius: 15px !important;
  border: 2px solid !important;
  font-weight: 500;
}

.alert-info {
  background: rgba(0, 188, 212, 0.1) !important;
  border-color: var(--primary-color) !important;
  color: var(--light-cyan) !important;
}

.alert-warning {
  background: rgba(255, 111, 0, 0.1) !important;
  border-color: var(--secondary-color) !important;
  color: var(--light-orange) !important;
}

/* ========================================
   FILTER BUTTONS
   ======================================== */
.filter-btn {
  background: transparent !important;
  border: 2px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all var(--transition-speed) ease;
  margin: 0.5rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color) !important;
  color: var(--text-light) !important;
  box-shadow: var(--glow-cyan);
  transform: translateY(-3px);
}

/* ========================================
   PRICING
   ======================================== */
.pricing-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color) !important;
  line-height: 1;
}

.pricing-save {
  background: var(--secondary-color) !important;
  color: var(--text-light) !important;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.benefit-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 188, 212, 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.bi-check2,
.bi-check-circle-fill {
  color: var(--primary-color) !important;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.bi-x-circle {
  color: var(--text-gray) !important;
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* ========================================
   SIDEBAR
   ======================================== */
.sidebar-nav {
  position: sticky;
  top: 100px;
  background: rgba(10, 14, 39, 0.7);
  border-radius: 15px;
  padding: 2rem;
  border: 2px solid rgba(0, 188, 212, 0.3);
}

.sidebar-nav .nav-link {
  color: var(--text-gray) !important;
  padding: 1rem !important;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  transition: all var(--transition-speed) ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
  background: rgba(0, 188, 212, 0.2) !important;
  color: var(--primary-color) !important;
  transform: translateX(10px);
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: linear-gradient(135deg, rgba(5, 8, 24, 0.98), rgba(10, 14, 39, 0.98)) !important;
  border-top: 3px solid var(--primary-color);
  color: var(--text-gray) !important;
  padding: 3rem 0 1rem 0;
}

footer a {
  color: var(--text-gray) !important;
  transition: all var(--transition-speed) ease;
}

footer a:hover {
  color: var(--primary-color) !important;
  transform: translateX(5px);
}

.list-unstyled li {
  margin-bottom: 0.75rem;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-white {
  color: var(--text-light) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-light {
  color: var(--text-light) !important;
}

.text-dark {
  color: var(--text-dark) !important;
}

.bg-white {
  background-color: var(--text-light) !important;
}

.bg-dark {
  background-color: var(--dark-bg) !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.small {
  font-size: 0.875rem !important;
  color: var(--text-gray) !important;
}

.border-top {
  border-top: 1px solid rgba(0, 188, 212, 0.2) !important;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(10, 14, 39, 0.98);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1rem;
    border: 2px solid var(--primary-color);
  }
  
  .navbar-nav .nav-link {
    padding: 1rem !important;
    margin: 0.25rem 0;
  }
  
  .hero-section {
    padding-top: 100px;
    min-height: 90vh;
  }
  
  .display-1 {
    font-size: 2.5rem !important;
  }
  
  .display-3 {
    font-size: 2rem !important;
  }
  
  .display-4 {
    font-size: 1.75rem !important;
  }
  
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .sidebar-nav {
    position: relative;
    top: 0;
    margin-bottom: 2rem;
  }
  
  .programs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .container-fluid,
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .btn-lg {
    padding: 0.75rem 2rem !important;
    font-size: 1rem !important;
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  .parallax-section {
    background-attachment: scroll;
    padding: 4rem 0;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand {
    font-size: 1.3rem !important;
  }
  
  .display-1 {
    font-size: 2rem !important;
  }
  
  .fs-3 {
    font-size: 1rem !important;
  }
  
  .bi-chevron-down {
    font-size: 2rem;
  }
  
  .pricing-amount {
    font-size: 2rem;
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
}

.scale-in {
  animation: scaleIn 0.8s ease-out forwards;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   LOADING STATE
   ======================================== */
.loading {
  pointer-events: none;
  opacity: 0.6;
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border: 3px solid var(--primary-color);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ========================================
   MISCELLANEOUS
   ======================================== */
::selection {
  background: var(--primary-color);
  color: var(--text-light);
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--light-cyan), var(--light-orange));
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-sticky,
.sticky-top {
  position: sticky !important;
  top: 0;
  z-index: 1020;
}

.overflow-hidden {
  overflow: hidden !important;
}

.d-flex {
  display: flex !important;
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-none {
  display: none !important;
}

@media (min-width: 992px) {
  .d-lg-block {
    display: block !important;
  }
  
  .d-lg-none {
    display: none !important;
  }
}

.align-items-center {
  align-items: center !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.gap-3 {
  gap: 1rem !important;
}

.text-center {
  text-align: center !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

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

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.m-0 { margin: 0 !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.ms-2 { margin-left: 0.5rem !important; }
.ms-3 { margin-left: 1rem !important; }
.ms-4 { margin-left: 1.5rem !important; }
.ms-auto { margin-left: auto !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

.p-0 { padding: 0 !important; }
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.pt-5 { padding-top: 3rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.pb-5 { padding-bottom: 3rem !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

@media (min-width: 768px) {
  .text-md-start { text-align: left !important; }
  .text-md-end { text-align: right !important; }
  .p-md-5 { padding: 3rem !important; }
  .mb-md-0 { margin-bottom: 0 !important; }
}

@media (min-width: 992px) {
  .mb-lg-0 { margin-bottom: 0 !important; }
  .ps-lg-5 { padding-left: 3rem !important; }
  .order-lg-1 { order: 1 !important; }
  .order-lg-2 { order: 2 !important; }
}