/* Architecture Studio - Distinguished Navy & Bronze Theme */

/* ===========================
   ROOT VARIABLES & BASE STYLES
   =========================== */
:root {
  --primary-color: #1a365d;
  --secondary-color: #c19a6b;
  --dark-navy: #0f1f3d;
  --light-navy: #2d4a7a;
  --bronze-light: #d4b084;
  --bronze-dark: #a07d4f;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --shadow: 0 4px 6px rgba(26, 54, 93, 0.1);
  --shadow-lg: 0 10px 30px rgba(26, 54, 93, 0.15);
  --transition: all 0.3s ease;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--primary-color) !important;
  margin-bottom: 1rem;
}

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

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

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
  background-color: var(--primary-color) !important;
  padding: 1rem 0 !important;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.navbar.sticky-top {
  position: sticky !important;
  top: 0;
  z-index: 1030;
}

.navbar-brand {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  letter-spacing: 1px;
  transition: var(--transition);
}

.navbar-brand:hover {
  color: var(--secondary-color) !important;
  transform: translateY(-2px);
}

.navbar-toggler {
  border-color: var(--secondary-color) !important;
  padding: 0.5rem 0.75rem !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='%23c19a6b' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(193, 154, 107, 0.25) !important;
}

.navbar-nav {
  align-items: center;
}

.nav-item {
  margin: 0 0.5rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500 !important;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--secondary-color) !important;
}

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

.nav-link.active {
  color: var(--secondary-color) !important;
  font-weight: 600 !important;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-navy) 100%);
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(15, 31, 61, 0.85) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white) !important;
  padding: 2rem;
}

.hero-content h1,
.hero-content .display-4 {
  color: var(--white) !important;
  font-size: 3.5rem !important;
  font-weight: 700 !important;
  margin-bottom: 1.5rem !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.hero-content p,
.hero-content .lead {
  color: var(--bronze-light) !important;
  font-size: 1.5rem !important;
  margin-bottom: 2rem !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.2s both;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  padding: 0.75rem 2rem !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  transition: var(--transition) !important;
  border: none !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary {
  background-color: var(--secondary-color) !important;
  color: var(--primary-color) !important;
  box-shadow: 0 4px 15px rgba(193, 154, 107, 0.3) !important;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--bronze-dark) !important;
  color: var(--white) !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(193, 154, 107, 0.4) !important;
}

.btn-secondary {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3) !important;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--light-navy) !important;
  color: var(--secondary-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(26, 54, 93, 0.4) !important;
}

.btn-outline-secondary {
  border: 2px solid var(--secondary-color) !important;
  color: var(--secondary-color) !important;
  background-color: transparent !important;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
  background-color: var(--secondary-color) !important;
  color: var(--white) !important;
  border-color: var(--secondary-color) !important;
}

.btn-lg {
  padding: 1rem 3rem !important;
  font-size: 1.1rem !important;
}

.btn-sm {
  padding: 0.5rem 1.5rem !important;
  font-size: 0.875rem !important;
}

.btn-link {
  color: var(--secondary-color) !important;
  text-decoration: none !important;
  padding: 0.5rem 1rem !important;
}

.btn-link:hover,
.btn-link:focus {
  color: var(--primary-color) !important;
  text-decoration: underline !important;
}

.btn-close {
  filter: invert(1) !important;
}

.btn-close-white {
  filter: brightness(0) invert(1) !important;
}

.btn-group {
  gap: 0.5rem;
}

/* ===========================
   CARDS
   =========================== */
.card {
  border: none !important;
  border-radius: 15px !important;
  overflow: hidden;
  transition: var(--transition) !important;
  background-color: var(--white) !important;
}

.card.shadow-sm {
  box-shadow: var(--shadow) !important;
}

.card.shadow-lg {
  box-shadow: var(--shadow-lg) !important;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(26, 54, 93, 0.2) !important;
}

.card-header {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  padding: 1.25rem !important;
  border-bottom: 3px solid var(--secondary-color) !important;
}

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

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

.card-text {
  color: var(--text-dark) !important;
  margin-bottom: 1rem !important;
}

.card-img-top {
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

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

.practice-card,
.case-card {
  position: relative;
  height: 100%;
  cursor: pointer;
}

.practice-card .icon-wrapper,
.case-card .icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--light-navy));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.practice-card:hover .icon-wrapper,
.case-card:hover .icon-wrapper {
  background: linear-gradient(135deg, var(--secondary-color), var(--bronze-dark));
  transform: rotate(360deg);
}

.icon-wrapper i,
.icon-wrapper .bi {
  font-size: 2rem;
  color: var(--white) !important;
}

.hover-overlay {
  background: linear-gradient(to top, rgba(26, 54, 93, 0.95), transparent);
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

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

.case-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

/* ===========================
   SECTIONS
   =========================== */
section {
  padding: 5rem 0;
  position: relative;
}

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

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

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 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;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !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-1 {
  margin-bottom: 0.25rem !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-auto {
  margin-left: auto !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

/* ===========================
   TEXT UTILITIES
   =========================== */
.text-center {
  text-align: center !important;
}

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

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

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

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

.text-danger {
  color: #dc3545 !important;
}

.text-success {
  color: #198754 !important;
}

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

.small {
  font-size: 0.875rem !important;
}

.lead {
  font-size: 1.25rem !important;
  font-weight: 300 !important;
}

.display-4 {
  font-size: 3rem !important;
  font-weight: 700 !important;
}

.h3 {
  font-size: 1.75rem !important;
}

.h4 {
  font-size: 1.5rem !important;
}

.h5 {
  font-size: 1.25rem !important;
}

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

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-90 {
  opacity: 0.9 !important;
}

/* ===========================
   ACCORDION
   =========================== */
.accordion {
  border-radius: 15px;
  overflow: hidden;
}

.accordion-item {
  border: none !important;
  margin-bottom: 1rem;
  border-radius: 10px !important;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-button {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 1.25rem 1.5rem !important;
  border: none !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background-color: var(--light-navy) !important;
  color: var(--secondary-color) !important;
}

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

.accordion-button.collapsed {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
}

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

.accordion-body {
  background-color: var(--white) !important;
  color: var(--text-dark) !important;
  padding: 1.5rem !important;
  border-top: 2px solid var(--secondary-color);
}

.accordion-collapse.show {
  border-top: 2px solid var(--secondary-color);
}

/* ===========================
   FORMS
   =========================== */
.form-control,
.form-select {
  padding: 0.75rem 1rem !important;
  border: 2px solid #e0e0e0 !important;
  border-radius: 10px !important;
  transition: var(--transition) !important;
  background-color: var(--white) !important;
  color: var(--text-dark) !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(193, 154, 107, 0.25) !important;
  background-color: var(--white) !important;
}

.form-label {
  font-weight: 600 !important;
  color: var(--primary-color) !important;
  margin-bottom: 0.5rem !important;
}

.form-check-input {
  border: 2px solid var(--secondary-color) !important;
  cursor: pointer;
}

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

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

.form-check-label {
  color: var(--text-dark) !important;
  cursor: pointer;
}

.invalid-feedback {
  display: block;
  color: #dc3545 !important;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #dc3545 !important;
}

/* ===========================
   ALERTS
   =========================== */
.alert {
  border-radius: 10px !important;
  padding: 1.25rem 1.5rem !important;
  border: none !important;
  margin-bottom: 1.5rem;
}

.alert-success {
  background-color: #d4edda !important;
  color: #155724 !important;
}

.alert-info {
  background-color: #d1ecf1 !important;
  color: #0c5460 !important;
}

.alert i,
.alert .bi {
  margin-right: 0.5rem;
  font-size: 1.25rem;
}

/* ===========================
   BADGES
   =========================== */
.badge {
  padding: 0.5rem 1rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
}

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

.bg-success {
  background-color: #198754 !important;
}

/* ===========================
   MODAL
   =========================== */
.modal-content {
  border-radius: 15px !important;
  border: none !important;
  overflow: hidden;
}

.modal-header {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  padding: 1.5rem !important;
  border-bottom: 3px solid var(--secondary-color) !important;
}

.modal-title {
  color: var(--white) !important;
  font-weight: 700 !important;
}

.modal-body {
  padding: 2rem !important;
}

.modal-footer {
  padding: 1.5rem !important;
  border-top: 1px solid #e0e0e0 !important;
}

.modal-dialog.modal-lg {
  max-width: 800px !important;
}

/* ===========================
   ICONS
   =========================== */
.bi {
  display: inline-block;
  vertical-align: middle;
}

.bi-chat-dots,
.bi-chat-dots-fill,
.bi-graph-up,
.bi-clock,
.bi-currency-dollar,
.bi-shield-check,
.bi-people,
.bi-geo-alt,
.bi-geo-alt-fill,
.bi-telephone,
.bi-telephone-fill,
.bi-envelope,
.bi-envelope-fill,
.bi-send,
.bi-check-circle,
.bi-check-circle-fill,
.bi-exclamation-triangle-fill,
.bi-lightning-charge,
.bi-chat-square-dots,
.bi-shield-lock,
.bi-shield-lock-fill,
.bi-globe,
.bi-clock-history,
.bi-clock-fill,
.bi-list-ul,
.bi-chevron-right,
.bi-question-circle,
.bi-info-circle-fill,
.bi-clipboard-data-fill,
.bi-gear-fill,
.bi-share-fill,
.bi-lock-fill,
.bi-person-check-fill,
.bi-cloud-check-fill,
.bi-file-earmark-lock-fill,
.bi-hourglass-split,
.bi-hand-thumbs-up-fill,
.bi-cookie,
.bi-person-x-fill,
.bi-building,
.bi-arrow-right,
.bi-file-text,
.bi-diagram-3,
.bi-briefcase,
.bi-trophy,
.bi-clipboard-check,
.bi-graph-up-arrow,
.bi-file-earmark-check,
.bi-award,
.bi-pen,
.bi-cart-check,
.bi-file-lock,
.bi-star-fill {
  color: inherit;
}

.fs-2 {
  font-size: 2rem !important;
}

/* ===========================
   UTILITIES
   =========================== */
.rounded {
  border-radius: 15px !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

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

.shadow-sm {
  box-shadow: var(--shadow) !important;
}

.shadow-lg {
  box-shadow: var(--shadow-lg) !important;
}

.border-0 {
  border: none !important;
}

.border-bottom {
  border-bottom: 1px solid #e0e0e0 !important;
}

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

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

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

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

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

.top-0 {
  top: 0 !important;
}

.start-0 {
  left: 0 !important;
}

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

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

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

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

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

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

.justify-content-end {
  justify-content: flex-end !important;
}

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

.align-items-start {
  align-items: flex-start !important;
}

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

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

.gap-2 {
  gap: 0.5rem !important;
}

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

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

.g-4 {
  gap: 1.5rem !important;
}

/* ===========================
   NAVIGATION COMPONENTS
   =========================== */
.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav.flex-column {
  flex-direction: column;
}

.toc-link {
  color: var(--primary-color) !important;
  padding: 0.5rem 1rem;
  display: block;
  transition: var(--transition);
}

.toc-link:hover,
.toc-link:focus {
  color: var(--secondary-color) !important;
  background-color: rgba(193, 154, 107, 0.1);
}

/* ===========================
   LIST STYLES
   =========================== */
.list-unstyled {
  padding-left: 0 !important;
  list-style: none !important;
}

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

/* ===========================
   RATIO (RESPONSIVE EMBEDS)
   =========================== */
.ratio {
  position: relative;
  width: 100%;
}

.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}

.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

/* ===========================
   IMAGES
   =========================== */
.img-fluid {
  max-width: 100% !important;
  height: auto !important;
}

/* ===========================
   COUNTER
   =========================== */
.counter {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color) !important;
  display: block;
  margin-bottom: 0.5rem;
}

/* ===========================
   PRACTICE GRID
   =========================== */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* ===========================
   FILTER BUTTONS
   =========================== */
.filter-btn {
  transition: var(--transition);
}

.filter-btn.active {
  background-color: var(--secondary-color) !important;
  color: var(--white) !important;
  border-color: var(--secondary-color) !important;
}

/* ===========================
   BLOCKQUOTE
   =========================== */
blockquote {
  border-left: 4px solid var(--secondary-color);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-light);
}

.blockquote-footer {
  color: var(--text-light) !important;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.blockquote-footer::before {
  content: '— ';
}

/* ===========================
   FLOATING CHAT BUTTON
   =========================== */
.position-fixed.bottom-0.end-0 {
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 1s ease-out;
}

.animate-fadeIn {
  animation: fadeIn 1s ease-out;
}

.animate-slideInRight {
  animation: slideInRight 1s ease-out;
}

.animate-slideInLeft {
  animation: slideInLeft 1s ease-out;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--primary-color);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 10px;
  }

  .nav-item {
    margin: 0.5rem 0;
  }

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

  .hero-content h1,
  .hero-content .display-4 {
    font-size: 2.5rem !important;
  }

  .hero-content p,
  .hero-content .lead {
    font-size: 1.2rem !important;
  }

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

  .text-lg-end {
    text-align: left !important;
  }

  section {
    padding: 3rem 0;
  }

  .display-4 {
    font-size: 2rem !important;
  }

  .counter {
    font-size: 2rem;
  }

  .practice-grid {
    grid-template-columns: 1fr;
  }

  .mb-lg-0 {
    margin-bottom: 1.5rem !important;
  }

  .ps-lg-5 {
    padding-left: 1rem !important;
  }

  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9 {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .offset-lg-3 {
    margin-left: 0;
  }
}

@media (max-width: 767.98px) {
  .hero-content h1,
  .hero-content .display-4 {
    font-size: 2rem !important;
  }

  .hero-content p,
  .hero-content .lead {
    font-size: 1rem !important;
  }

  .btn {
    padding: 0.625rem 1.5rem !important;
  }

  .btn-lg {
    padding: 0.75rem 2rem !important;
  }

  .card-body {
    padding: 1.5rem !important;
  }

  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .p-5 {
    padding: 2rem !important;
  }

  .text-md-end {
    text-align: left !important;
  }

  .col-md-4,
  .col-md-6 {
    width: 100%;
    margin-bottom: 1.5rem;
  }
}

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

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

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .ps-lg-5 {
    padding-left: 3rem !important;
  }

  .col-lg-2 {
    width: 16.666667%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-4 {
    width: 33.333333%;
  }

  .col-lg-5 {
    width: 41.666667%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-7 {
    width: 58.333333%;
  }

  .col-lg-8 {
    width: 66.666667%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }
}

/* ===========================
   SCROLLBAR STYLING
   =========================== */
::-webkit-scrollbar {
  width: 12px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 6px;
}

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

/* ===========================
   SELECTION
   =========================== */
::selection {
  background-color: var(--secondary-color);
  color: var(--white);
}

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

/* ===========================
   FOCUS STYLES
   =========================== */
:focus-visible {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

/* ===========================
   PRINT STYLES
   =========================== */
@media print {
  .navbar,
  .btn,
  .modal,
  .position-fixed {
    display: none !important;
  }

  body {
    color: #000 !important;
  }

  .card {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }
}