/* Forge Fire Architecture Studio - Custom Styles */

:root {
  --primary-color: #D32F2F;
  --secondary-color: #212121;
  --accent-fire: #FF5722;
  --dark-steel: #1a1a1a;
  --light-steel: #757575;
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

/* Navigation Styles */
.navbar {
  background: linear-gradient(180deg, rgba(33, 33, 33, 0.95) 0%, rgba(33, 33, 33, 0.85) 100%) !important;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(211, 47, 47, 0.1);
}

.navbar.scrolled {
  background: rgba(33, 33, 33, 0.98) !important;
  box-shadow: 0 4px 30px rgba(211, 47, 47, 0.2);
}

.navbar-dark .navbar-brand {
  color: #ffffff !important;
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
  text-transform: uppercase;
}

.navbar-dark .navbar-brand:hover {
  color: var(--primary-color) !important;
  transform: scale(1.05);
}

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

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

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

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

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

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

/* Hero Section */
.position-relative.vh-100 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-steel) 100%);
  overflow: hidden;
}

.position-relative.vh-100::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(211, 47, 47, 0.4) 0%, rgba(33, 33, 33, 0.8) 100%);
  z-index: 1;
}

.position-absolute.w-100.h-100 {
  z-index: 0;
  filter: brightness(0.7) contrast(1.1);
  animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.object-fit-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.position-relative .container {
  position: relative;
  z-index: 2;
  height: 100%;
}

.text-white.display-1 {
  font-weight: 900 !important;
  color: #ffffff !important;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out;
  letter-spacing: 2px;
  line-height: 1.2;
}

.text-white.h2 {
  color: var(--primary-color) !important;
  font-weight: 700 !important;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1.2s ease-out;
  letter-spacing: 1px;
}

.lead {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 1.3rem !important;
  font-weight: 400 !important;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1.4s ease-out;
  line-height: 1.8;
}

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

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

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
  z-index: -1;
}

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

.btn-lg {
  background-color: var(--primary-color) !important;
  border: 2px solid var(--primary-color) !important;
  color: #ffffff !important;
  padding: 1rem 2.5rem !important;
  font-size: 1rem !important;
  animation: fadeInUp 1.6s ease-out;
}

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

.btn-outline-light {
  border: 2px solid #ffffff !important;
  color: #ffffff !important;
  background-color: transparent !important;
  padding: 1rem 2.5rem !important;
  font-size: 1rem !important;
  animation: fadeInUp 1.8s ease-out;
}

.btn-outline-light:hover {
  background-color: #ffffff !important;
  color: var(--secondary-color) !important;
  border-color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3) !important;
}

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

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

.btn-light {
  background-color: #ffffff !important;
  border: 2px solid #ffffff !important;
  color: var(--secondary-color) !important;
}

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

/* Scroll Indicator */
.position-absolute.bottom-0 {
  z-index: 2;
  animation: bounce 2s infinite;
  bottom: 2rem !important;
}

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

.bi-chevron-down {
  font-size: 2rem;
  color: #ffffff !important;
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.bi-chevron-down:hover {
  opacity: 1;
  color: var(--primary-color) !important;
}

/* Section Styling */
.py-5 {
  padding: 5rem 0 !important;
}

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

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

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

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

.container-fluid {
  max-width: 100%;
}

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

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

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

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

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

.shadow {
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Typography */
.display-1 {
  font-size: clamp(2.5rem, 8vw, 5rem) !important;
  font-weight: 900 !important;
}

.display-3 {
  font-size: clamp(2rem, 6vw, 3.5rem) !important;
  font-weight: 800 !important;
}

.display-4 {
  font-size: clamp(1.8rem, 5vw, 3rem) !important;
  font-weight: 700 !important;
}

.h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem) !important;
}

.h3 {
  font-size: clamp(1.3rem, 3vw, 2rem) !important;
  font-weight: 600 !important;
}

.h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem) !important;
  font-weight: 600 !important;
}

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

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

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

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

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

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

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

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

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

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

.text-light {
  color: #f8f9fa !important;
}

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

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

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

@media (min-width: 992px) {
  .text-lg-end {
    text-align: right !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
}

/* Program Cards */
.program-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  height: 350px;
  cursor: pointer;
  transition: var(--transition-smooth);
  background: var(--secondary-color);
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(33, 33, 33, 0.3) 0%, rgba(211, 47, 47, 0.8) 100%);
  z-index: 1;
  transition: var(--transition-smooth);
}

.program-card:hover::before {
  background: linear-gradient(180deg, rgba(211, 47, 47, 0.6) 0%, rgba(33, 33, 33, 0.9) 100%);
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(211, 47, 47, 0.4) !important;
}

.program-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--transition-smooth);
}

.program-card:hover .program-overlay {
  transform: translateY(-10px);
}

.program-desc {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
  color: rgba(255, 255, 255, 0.9) !important;
}

.program-card:hover .program-desc {
  opacity: 1;
  max-height: 200px;
}

.badge {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  border-radius: 0.25rem;
}

/* Cards */
.card {
  border: none !important;
  transition: var(--transition-smooth);
  border-radius: 0.5rem;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.card-body {
  padding: 2rem;
}

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

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

.border-3 {
  border-width: 3px !important;
}

.border-start {
  border-left: 3px solid var(--primary-color) !important;
}

/* Icons */
.bi {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: var(--transition-smooth);
}

.bi-shield-check,
.bi-people,
.bi-gear,
.bi-graph-up,
.bi-bar-chart-line,
.bi-trophy,
.bi-lightning-charge-fill,
.bi-people-fill,
.bi-gear-fill,
.bi-graph-up-arrow {
  font-size: 3rem !important;
  color: var(--primary-color) !important;
}

.bi-telephone-fill,
.bi-geo-alt-fill,
.bi-envelope-fill {
  font-size: 1.2rem;
  color: var(--primary-color) !important;
}

.bi-facebook,
.bi-instagram,
.bi-youtube {
  font-size: 1.5rem;
  color: #ffffff !important;
  transition: var(--transition-smooth);
}

.bi-facebook:hover,
.bi-instagram:hover,
.bi-youtube:hover {
  color: var(--primary-color) !important;
  transform: scale(1.2);
}

.bi-arrow-right,
.bi-chevron-right {
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.btn:hover .bi-arrow-right,
.btn:hover .bi-chevron-right {
  transform: translateX(5px);
}

.bi-check-circle-fill,
.bi-shield-lock,
.bi-person-check,
.bi-eye,
.bi-cookie,
.bi-info-circle,
.bi-share,
.bi-clock,
.bi-calendar3,
.bi-person-check-fill,
.bi-calendar-check-fill,
.bi-award-fill,
.bi-star-fill {
  color: var(--primary-color) !important;
}

/* Accordion */
.accordion {
  border: none !important;
}

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

.accordion-button {
  background-color: #f8f9fa !important;
  color: var(--secondary-color) !important;
  font-weight: 600 !important;
  padding: 1.5rem !important;
  font-size: 1.1rem !important;
  border: none !important;
  transition: var(--transition-smooth);
}

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

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

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

.accordion-button.collapsed::after {
  filter: none;
}

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

.accordion-collapse.show {
  border-top: none;
}

/* Forms */
.form-label {
  font-weight: 600 !important;
  color: var(--secondary-color) !important;
  margin-bottom: 0.75rem !important;
  font-size: 1rem !important;
}

.form-control,
.form-select {
  border: 2px solid #e0e0e0 !important;
  border-radius: 0.25rem !important;
  padding: 0.75rem 1rem !important;
  font-size: 1rem !important;
  transition: var(--transition-smooth) !important;
  background-color: #ffffff !important;
  color: var(--secondary-color) !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.15) !important;
  background-color: #ffffff !important;
}

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

.form-control::placeholder {
  color: var(--light-steel) !important;
  opacity: 0.7;
}

/* Alert */
.alert {
  border-radius: 0.5rem !important;
  padding: 1.25rem !important;
  border: none !important;
  background-color: rgba(211, 47, 47, 0.1) !important;
  color: var(--secondary-color) !important;
  border-left: 4px solid var(--primary-color) !important;
}

/* Progress */
.progress {
  height: 10px !important;
  border-radius: 10px !important;
  background-color: #e0e0e0 !important;
  overflow: visible !important;
}

.progress-bar {
  background-color: var(--primary-color) !important;
  border-radius: 10px !important;
  position: relative;
  transition: width 1s ease-in-out !important;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 16px;
  height: 16px;
  background-color: var(--primary-color);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 10px rgba(211, 47, 47, 0.5);
}

/* Carousel */
.carousel {
  border-radius: 0.5rem;
  overflow: hidden;
}

.carousel-item {
  transition: transform 0.6s ease-in-out !important;
}

.carousel-indicators [data-bs-target] {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background-color: var(--primary-color) !important;
  opacity: 0.5;
  transition: var(--transition-smooth);
}

.carousel-indicators .active {
  opacity: 1 !important;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5% !important;
  opacity: 0.8 !important;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1 !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(211, 47, 47, 0.8);
  border-radius: 50%;
  padding: 1.5rem;
  transition: var(--transition-smooth);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: var(--primary-color);
}

/* Footer */
footer {
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--dark-steel) 100%);
  color: rgba(255, 255, 255, 0.9) !important;
}

footer .list-unstyled {
  list-style: none;
  padding: 0;
}

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

footer a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none !important;
  transition: var(--transition-smooth);
  display: inline-block;
}

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

footer .small {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Ratio */
.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%;
}

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

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

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

.fixed-top {
  position: fixed !important;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.g-0 {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

.g-3 {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}

.g-4 {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

.g-5 {
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 3rem;
}

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

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

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !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;
}

.mt-lg-0 {
  margin-top: 0 !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;
}

.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;
}

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

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

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

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

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

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

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

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

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

/* Column Widths */
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
}

@media (min-width: 992px) {
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
}

/* Animations */
@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 fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-on-scroll {
  opacity: 0;
  transition: var(--transition-smooth);
}

.animate-on-scroll.animated {
  opacity: 1;
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsive Media Queries */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(33, 33, 33, 0.98);
    padding: 1.5rem;
    margin-top: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  .navbar-nav {
    gap: 0.5rem;
  }
  
  .navbar-dark .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .navbar-dark .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
  
  .display-1 {
    font-size: 2.5rem !important;
  }
  
  .display-3 {
    font-size: 2rem !important;
  }
  
  .display-4 {
    font-size: 1.8rem !important;
  }
  
  .lead {
    font-size: 1.1rem !important;
  }
  
  .btn-lg {
    padding: 0.875rem 2rem !important;
    font-size: 0.9rem !important;
  }
  
  .btn-outline-light {
    padding: 0.875rem 2rem !important;
    font-size: 0.9rem !important;
  }
  
  .py-5 {
    padding: 3rem 0 !important;
  }
  
  .position-sticky {
    position: relative !important;
    top: 0;
  }
  
  .program-card {
    height: 300px;
  }
}

@media (max-width: 767.98px) {
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .px-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .g-5 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
  }
  
  .gap-3 {
    gap: 0.75rem !important;
  }
  
  .flex-wrap {
    flex-direction: column;
  }
  
  .btn-lg,
  .btn-outline-light {
    width: 100%;
    margin-bottom: 0.75rem;
  }
  
  .text-lg-end,
  .text-md-start,
  .text-md-end {
    text-align: center !important;
  }
  
  footer .col-lg-2,
  footer .col-lg-3 {
    margin-bottom: 2rem;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .display-1 {
    font-size: 2rem !important;
  }
  
  .h2 {
    font-size: 1.5rem !important;
  }
  
  .lead {
    font-size: 1rem !important;
  }
  
  .bi-shield-check,
  .bi-people,
  .bi-gear,
  .bi-graph-up,
  .bi-bar-chart-line,
  .bi-trophy,
  .bi-lightning-charge-fill,
  .bi-people-fill,
  .bi-gear-fill,
  .bi-graph-up-arrow {
    font-size: 2rem !important;
  }
  
  .fs-1 {
    font-size: 2rem !important;
  }
  
  .program-card {
    height: 250px;
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  .p-4 {
    padding: 1.5rem !important;
  }
  
  .p-5 {
    padding: 2rem !important;
  }
}

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