/* Midnight Crimson Architecture Studio Theme */

:root {
  --primary-color: #1A1A2E;
  --secondary-color: #E94560;
  --light-bg: #F8F9FA;
  --dark-overlay: rgba(26, 26, 46, 0.95);
  --crimson-overlay: rgba(233, 69, 96, 0.1);
  --transition-speed: 0.4s;
  --shadow-dark: 0 10px 40px rgba(26, 26, 46, 0.3);
  --shadow-crimson: 0 10px 40px rgba(233, 69, 96, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--primary-color);
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
.display-1, .display-3, .display-4, .display-5, .display-6 {
  font-weight: 700 !important;
  letter-spacing: -1px;
  color: var(--primary-color) !important;
}

.text-light,
.text-white {
  color: #ffffff !important;
}

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

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

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

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

/* Navbar Styles */
.navbar {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0F0F1E 100%) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-speed) ease;
  padding: 1rem 0;
}

.navbar.fixed-top {
  z-index: 1030;
}

.navbar-brand {
  color: #ffffff !important;
  font-size: 1.5rem;
  font-weight: 700 !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

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

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

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

.navbar-toggler {
  border-color: var(--secondary-color) !important;
  background-color: var(--secondary-color) !important;
  padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(233, 69, 96, 0.3) !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='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-nav {
  gap: 0.5rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 5px;
}

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

.nav-link:hover,
.nav-link.active {
  color: #ffffff !important;
  background-color: rgba(233, 69, 96, 0.2) !important;
}

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

.nav-link.active {
  font-weight: 600 !important;
}

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

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #C73D52 100%) !important;
  border-color: var(--secondary-color) !important;
  color: #ffffff !important;
  box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: linear-gradient(135deg, #C73D52 0%, #B23547 100%) !important;
  border-color: #C73D52 !important;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(233, 69, 96, 0.4) !important;
}

.btn-outline-light {
  border-color: #ffffff !important;
  color: #ffffff !important;
  background-color: transparent !important;
}

.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: var(--primary-color) !important;
  transform: translateY(-3px);
}

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

.btn-outline-dark:hover,
.btn-outline-dark:focus,
.btn-outline-dark:active {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #ffffff !important;
  transform: translateY(-3px);
}

.btn-dark {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #ffffff !important;
}

.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active {
  background-color: #0F0F1E !important;
  border-color: #0F0F1E !important;
  color: #ffffff !important;
  transform: translateY(-3px);
}

.btn-light {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: var(--primary-color) !important;
}

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

.btn-sm {
  padding: 0.4rem 1rem !important;
  font-size: 0.875rem;
}

.btn-close,
.btn-close-white {
  opacity: 0.8;
}

.btn-close:hover,
.btn-close-white:hover {
  opacity: 1;
}

.btn-block {
  width: 100%;
  display: block;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-color) 0%, #0F0F1E 50%, var(--primary-color) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, var(--crimson-overlay) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, var(--crimson-overlay) 0%, transparent 50%);
  animation: pulseGlow 8s ease-in-out infinite;
}

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

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

.hero-section .display-1 {
  color: #ffffff !important;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out;
}

.hero-section .fs-2,
.hero-section .fs-5 {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1.2s ease-out;
}

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

.bi-chevron-down {
  animation: bounce 2s infinite;
  color: var(--secondary-color) !important;
  font-size: 2rem;
}

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

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

.card.border-0 {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-crimson);
}

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

.card-header {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
  border-bottom: 3px solid var(--secondary-color);
  font-weight: 600;
  padding: 1rem 1.5rem;
}

.card-footer {
  background-color: var(--light-bg);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem 1.5rem;
}

.card-img-top {
  transition: transform var(--transition-speed) ease;
}

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

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

.card-text {
  color: #6c757d;
}

/* Icons */
.bi {
  transition: all 0.3s ease;
}

[class*="bi-"] {
  display: inline-block;
}

.bi-fire,
.bi-lightning-charge,
.bi-trophy,
.bi-person-check,
.bi-shield-shaded,
.bi-heart-pulse,
.bi-clock-history,
.bi-people-fill,
.bi-award-fill,
.bi-trophy-fill,
.bi-lightning-charge-fill,
.bi-robot,
.bi-calendar-check,
.bi-calendar-check-fill {
  color: var(--secondary-color) !important;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.bi-check-circle-fill,
.bi-check-lg {
  color: var(--secondary-color) !important;
}

.bi-geo-alt-fill,
.bi-telephone-fill,
.bi-envelope-fill,
.bi-facebook,
.bi-instagram,
.bi-youtube,
.bi-twitter-x,
.bi-twitter {
  color: #ffffff !important;
  font-size: 1.2rem;
}

.bi-send-fill,
.bi-clock-fill,
.bi-info-circle,
.bi-bus-front,
.bi-bicycle,
.bi-chat-dots-fill,
.bi-circle-fill,
.bi-clock,
.bi-people,
.bi-hourglass-split {
  color: var(--secondary-color) !important;
}

/* Badges */
.badge {
  background-color: var(--secondary-color) !important;
  color: #ffffff !important;
  font-weight: 600;
  padding: 0.5rem 1rem !important;
  border-radius: 20px;
  font-size: 0.875rem;
}

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

/* Images */
.img-fluid {
  max-width: 100%;
  height: auto;
  transition: transform var(--transition-speed) ease;
}

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

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

.rounded-3 {
  border-radius: 12px !important;
}

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

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* Sections */
section {
  position: relative;
  overflow: hidden;
}

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

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

.pb-4 {
  padding-bottom: 2rem !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-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;
}

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

.bg-white {
  background-color: #ffffff !important;
}

.bg-dark {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0F0F1E 100%) !important;
}

/* Forms */
.form-control,
.form-select {
  border: 2px solid #dee2e6;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  background-color: #ffffff;
  color: var(--primary-color);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(233, 69, 96, 0.25) !important;
  outline: none;
}

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

.input-group {
  border-radius: 8px;
  overflow: hidden;
}

.input-group .form-control {
  border-right: none;
}

.input-group .btn {
  border-left: none;
}

/* Lists */
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-unstyled li {
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0F0F1E 100%);
  color: #ffffff;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color) 0%, transparent 100%);
}

footer a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

footer .text-decoration-none {
  display: inline-block;
}

footer .small {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Social Media Icons */
.gap-3 {
  gap: 1rem !important;
}

.bi-facebook,
.bi-instagram,
.bi-youtube,
.bi-twitter-x,
.bi-twitter {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.bi-facebook:hover,
.bi-instagram:hover,
.bi-youtube:hover,
.bi-twitter-x:hover,
.bi-twitter:hover {
  background: var(--secondary-color);
  transform: translateY(-5px) scale(1.1);
}

/* Filter Buttons */
.filter-btn {
  background-color: transparent !important;
  border: 2px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
  padding: 0.5rem 1.5rem;
  margin: 0.25rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* Class Grid */
.class-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.class-item {
  transition: all var(--transition-speed) ease;
  cursor: pointer;
}

.class-item:hover {
  transform: scale(1.05);
}

/* Table Styles */
.table-responsive {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.table {
  margin-bottom: 0;
  color: var(--primary-color);
}

.table thead {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0F0F1E 100%);
  color: #ffffff;
}

.table-hover tbody tr {
  transition: all 0.3s ease;
}

.table-hover tbody tr:hover {
  background-color: var(--crimson-overlay);
  transform: scale(1.01);
}

/* Accordion */
.accordion {
  border-radius: 10px;
  overflow: hidden;
}

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

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

.accordion-button {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  border: none;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: var(--secondary-color) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

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

.accordion-button:focus {
  box-shadow: none !important;
  border-color: transparent !important;
}

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

.accordion-button:hover {
  background-color: #252541 !important;
}

.accordion-body {
  padding: 1.5rem;
  background-color: #ffffff;
  color: var(--primary-color);
}

.accordion-collapse {
  border: none;
}

/* Sticky Elements */
.sticky-top {
  position: sticky;
  top: 80px;
  z-index: 1020;
}

.position-sticky {
  position: sticky !important;
  top: 100px;
}

/* Navigation Tabs */
.nav {
  gap: 0.5rem;
}

.nav.flex-column {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav.flex-column .nav-link {
  color: var(--primary-color) !important;
  padding: 0.75rem 1rem;
  border-left: 3px solid transparent;
  margin-bottom: 0.5rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav.flex-column .nav-link:hover,
.nav.flex-column .nav-link.active {
  background-color: var(--crimson-overlay);
  border-left-color: var(--secondary-color);
  color: var(--primary-color) !important;
}

/* Privacy Content */
.privacy-content {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.privacy-content h2,
.privacy-content h3,
.privacy-content h4,
.privacy-content h5 {
  color: var(--primary-color) !important;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.privacy-content p {
  color: #6c757d;
  line-height: 1.8;
}

/* Responsive Grid */
.g-2 {
  gap: 0.5rem !important;
}

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

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

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

/* Z-index */
.z-index-1 {
  z-index: 1;
}

/* Overflow */
.overflow-hidden {
  overflow: hidden !important;
}

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

/* Position Utilities */
.position-relative {
  position: relative !important;
}

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

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

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

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

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

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

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

.top-50 {
  top: 50% !important;
}

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

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

/* Display Utilities */
.d-flex {
  display: flex !important;
}

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

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

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

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

/* Flex Utilities */
.flex-column {
  flex-direction: column !important;
}

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

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

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

.align-middle {
  vertical-align: middle !important;
}

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

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

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

/* Spacing Utilities */
.p-2 {
  padding: 0.5rem !important;
}

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

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

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

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !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-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

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

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

.pb-2 {
  padding-bottom: 0.5rem !important;
}

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

.mb-1 {
  margin-bottom: 0.25rem !important;
}

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

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

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

/* Width Utilities */
.w-100 {
  width: 100% !important;
}

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

/* Text Utilities */
.text-center {
  text-align: center !important;
}

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

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

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

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

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

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

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

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

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

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* Animation Classes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@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);
  }
}

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

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

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

/* Mobile Responsive Styles */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0F0F1E 100%);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  .navbar-nav {
    gap: 0;
  }

  .nav-link {
    margin: 0.25rem 0;
  }

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

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

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

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

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

  .btn-lg {
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem;
  }

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

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

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

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

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

  .flex-lg-row-reverse {
    flex-direction: column !important;
  }

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

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

  .sticky-top {
    top: 60px;
  }

  .position-sticky {
    position: relative !important;
    top: 0;
  }

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

  footer .text-md-start {
    text-align: center !important;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: 100vh;
    padding-top: 80px;
  }

  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7 {
    margin-bottom: 1rem;
  }

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

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

  .accordion-button {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .accordion-body {
    padding: 1rem;
  }
}

@media (max-width: 575.98px) {
  .display-1 {
    font-size: 2rem !important;
  }

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

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

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

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

  .px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .px-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .bi-fire,
  .bi-lightning-charge,
  .bi-trophy,
  .bi-person-check,
  .bi-shield-shaded,
  .bi-heart-pulse,
  .bi-clock-history,
  .bi-people-fill,
  .bi-award-fill {
    font-size: 2rem;
  }
}

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

  body {
    background: white;
    color: black;
  }

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