/* Crimson Steel Architecture Studio - CSS */

:root {
  --primary-color: #D32F2F;
  --secondary-color: #424242;
  --light-bg: #f8f9fa;
  --dark-bg: #1a1a1a;
  --text-light: #ffffff;
  --text-dark: #212529;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%) !important;
  padding: 1rem 0;
  transition: var(--transition);
  box-shadow: 0 2px 15px rgba(211, 47, 47, 0.1);
}

.navbar.sticky-top {
  backdrop-filter: blur(10px);
  background: rgba(26, 26, 26, 0.95) !important;
}

.navbar-brand {
  color: var(--text-light) !important;
  font-size: 1.5rem;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.navbar-brand::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  transition: var(--transition);
}

.navbar-brand:hover::after {
  width: 100%;
}

.navbar-toggler {
  border: 2px solid var(--primary-color) !important;
  padding: 0.5rem;
}

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

.nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  padding: 0.5rem 1.2rem !important;
  position: relative;
  transition: var(--transition);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

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

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

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

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(211, 47, 47, 0.3) 0%, rgba(66, 66, 66, 0.5) 100%);
  z-index: 1;
}

.hero-section .position-absolute {
  z-index: 0;
  opacity: 0.4;
}

.hero-section .object-fit-cover {
  object-fit: cover;
  filter: grayscale(30%);
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section .display-1 {
  font-weight: 800;
  color: var(--text-light) !important;
  text-shadow: 3px 3px 20px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-section .fs-3 {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 300;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

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

.hero-section .fs-2 {
  font-weight: 600;
  color: var(--text-light) !important;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.btn {
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.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;
  z-index: -1;
}

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

.btn-lg {
  background: var(--primary-color) !important;
  color: var(--text-light) !important;
  border: 2px solid var(--primary-color) !important;
  padding: 1rem 2.5rem !important;
  font-size: 1rem !important;
}

.btn-lg:hover {
  background: #b71c1c !important;
  border-color: #b71c1c !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(211, 47, 47, 0.4) !important;
  color: var(--text-light) !important;
}

.btn-light {
  background: var(--text-light) !important;
  color: var(--primary-color) !important;
  border: 2px solid var(--text-light) !important;
}

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

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

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

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

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

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

/* Animate Bounce */
.animate-bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Split Container */
.split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.founder-side {
  background: var(--secondary-color);
  position: relative;
  overflow: hidden;
}

.founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: var(--transition);
}

.founder-side:hover .founder-image {
  transform: scale(1.05);
  opacity: 1;
}

.timeline-side {
  background: var(--light-bg);
  padding: 4rem 3rem;
}

.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
  border-left: 3px solid var(--primary-color);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--primary-color);
  border: 3px solid var(--light-bg);
}

.timeline-year {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Cards */
.card {
  border: none !important;
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition);
  background: #fff;
  height: 100%;
}

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

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

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

.card-text {
  color: var(--text-dark);
  line-height: 1.8;
}

/* Values Section */
.values-section {
  background: var(--light-bg);
  padding: 5rem 0;
}

.value-box {
  background: #fff;
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
  height: 100%;
}

.value-box:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-box .bi {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.value-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

/* Team Section */
.team-section {
  background: #fff;
  padding: 5rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(211, 47, 47, 0.2);
}

.team-photo {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: var(--transition);
}

.team-card:hover .team-photo {
  transform: scale(1.1);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Certifications */
.certifications {
  background: var(--secondary-color);
  color: var(--text-light);
  padding: 4rem 0;
}

.cert-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-light) !important;
  margin-bottom: 2rem;
  text-align: center;
}

.cert-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.cert-list .alert {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 2px solid var(--primary-color) !important;
  color: var(--text-light) !important;
  font-weight: 600;
  text-align: center;
  border-radius: 10px;
  padding: 1.5rem;
  transition: var(--transition);
}

.cert-list .alert:hover {
  background: var(--primary-color) !important;
  transform: translateY(-5px);
}

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

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(211, 47, 47, 0.25) !important;
  background: #fff !important;
}

.form-control-lg,
.form-select-lg {
  font-size: 1rem !important;
  padding: 1rem 1.25rem !important;
}

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

.form-check-input {
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid #e0e0e0 !important;
  transition: var(--transition);
}

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

.form-check-label {
  color: var(--text-dark) !important;
  margin-left: 0.5rem;
}

.invalid-feedback {
  color: #dc3545 !important;
  font-weight: 600;
}

/* Alerts */
.alert {
  border-radius: 10px;
  border: none;
  padding: 1rem 1.5rem;
  font-weight: 500;
}

.alert-success {
  background: #d4edda !important;
  color: #155724 !important;
  border-left: 4px solid #28a745 !important;
}

.alert-light {
  background: #f8f9fa !important;
  color: var(--text-dark) !important;
  border-left: 4px solid var(--primary-color) !important;
}

/* Gallery Section */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  background: var(--light-bg) !important;
  color: var(--secondary-color) !important;
  border: 2px solid transparent !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 50px !important;
  font-weight: 600;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color) !important;
  color: var(--text-light) !important;
  border-color: var(--primary-color) !important;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  height: 300px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-color) !important;
  color: var(--text-light) !important;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  z-index: 2;
}

.zoom-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9) !important;
  color: var(--secondary-color) !important;
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}

.gallery-item:hover .zoom-btn {
  opacity: 1;
}

/* Comparison Slider */
.comparison-slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 15px;
}

.before-image,
.after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.after-image {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.3s ease;
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border: 4px solid #fff;
  border-radius: 50%;
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  z-index: 10;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.slider-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 500px;
  background: #fff;
  z-index: -1;
}

/* Modal */
.modal-content {
  border-radius: 20px !important;
  border: none !important;
  overflow: hidden;
}

.modal-header {
  background: var(--secondary-color) !important;
  color: var(--text-light) !important;
  border: none !important;
  padding: 1.5rem 2rem !important;
}

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

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

/* Privacy Hero */
.privacy-hero {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
  padding: 5rem 0 3rem;
  color: var(--text-light);
  text-align: center;
}

.privacy-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-light) !important;
  margin-bottom: 1rem;
}

.privacy-container {
  background: #fff;
  padding: 3rem;
  border-radius: 20px;
  margin-top: -3rem;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

.last-updated {
  background: var(--light-bg);
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--text-dark) !important;
}

.privacy-section {
  margin-bottom: 3rem;
}

.privacy-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--primary-color);
}

.privacy-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-right: 1rem;
}

.privacy-header h2 {
  color: var(--secondary-color) !important;
  font-weight: 700;
  margin: 0;
}

.privacy-content {
  color: var(--text-dark);
  line-height: 1.8;
}

.privacy-content ul {
  list-style: none;
  padding-left: 0;
}

.privacy-content ul li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.privacy-content ul li::before {
  content: '\F26E';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Contact Callout */
.contact-callout {
  background: linear-gradient(135deg, var(--primary-color) 0%, #b71c1c 100%);
  color: var(--text-light) !important;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin: 3rem 0;
}

.contact-callout h3 {
  color: var(--text-light) !important;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-callout p {
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 1.5rem;
}

/* Hours List */
.hours-list {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.hours-list .border-bottom {
  border-color: #e0e0e0 !important;
}

.hours-list .fw-semibold {
  color: var(--secondary-color) !important;
}

.hours-list .text-muted {
  color: #6c757d !important;
}

/* Icons */
.bi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rounded-circle {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: var(--text-light) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

/* Shadows */
.shadow {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.shadow-sm {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important;
}

.shadow-lg {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15) !important;
}

/* Text Colors */
.text-white {
  color: var(--text-light) !important;
}

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

.text-muted {
  color: #6c757d !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.8;
}

.fst-italic {
  font-style: italic !important;
}

/* Display Headings */
.display-1 {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.2;
}

.display-3 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.display-4 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

/* Background Colors */
.bg-light {
  background: var(--light-bg) !important;
}

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

/* Footer */
footer {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
  color: var(--text-light) !important;
  padding: 4rem 0 2rem;
}

footer h5 {
  color: var(--text-light) !important;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
}

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

footer .list-unstyled a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none !important;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}

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

footer .bi {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

footer .border-top {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

footer p {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .display-1 {
    font-size: 3rem;
  }
  
  .display-3 {
    font-size: 2.5rem;
  }
  
  .display-4 {
    font-size: 2rem;
  }
  
  .split-container {
    grid-template-columns: 1fr;
  }
  
  .navbar-collapse {
    background: rgba(26, 26, 26, 0.98);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 10px;
  }
  
  .hero-section {
    min-height: 80vh;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .display-1 {
    font-size: 2.5rem;
  }
  
  .display-3 {
    font-size: 2rem;
  }
  
  .display-4 {
    font-size: 1.75rem;
  }
  
  .btn-lg {
    padding: 0.875rem 2rem !important;
    font-size: 0.95rem !important;
  }
  
  .card-body {
    padding: 1.5rem !important;
  }
  
  .value-box {
    padding: 2rem;
  }
  
  .comparison-slider {
    height: 350px;
  }
  
  .privacy-hero h1 {
    font-size: 2rem;
  }
  
  .privacy-container {
    padding: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .display-1 {
    font-size: 2rem;
  }
  
  .fs-2 {
    font-size: 1.5rem !important;
  }
  
  .fs-3 {
    font-size: 1.25rem !important;
  }
  
  .hero-section {
    min-height: 70vh;
  }
  
  .timeline-side {
    padding: 2rem 1.5rem;
  }
  
  .gallery-item {
    height: 250px;
  }
  
  footer h5::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Utility Classes */
.opacity-90 {
  opacity: 0.9 !important;
}

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

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

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

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

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

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

.w-lg-auto {
  width: auto !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

.g-0 {
  gap: 0 !important;
}

.g-3 > * {
  padding: 0.5rem;
}

.g-4 > * {
  padding: 0.75rem;
}

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

.fw-semibold {
  font-weight: 600 !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;
}

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

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

.mt-3 {
  margin-top: 1rem !important;
}

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

.mt-5 {
  margin-top: 3rem !important;
}

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

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

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

.me-3 {
  margin-right: 1rem !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;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.p-0 {
  padding: 0 !important;
}

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

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

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

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !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-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

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

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

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

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

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

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

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

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

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

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

.start-50 {
  left: 50% !important;
}

.end-0 {
  right: 0 !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

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

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

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

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-secondary {
  border-color: var(--secondary-color) !important;
}

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

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

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

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

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

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

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

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

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

/* Smooth Transitions */
* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

a,
button {
  transition: all 0.3s ease;
}

/* Print Styles */
@media print {
  .navbar,
  .btn,
  footer {
    display: none !important;
  }
}