/* Crimson Steel Architecture Studio - Custom Styles */

:root {
  --primary-color: #D32F2F;
  --secondary-color: #212121;
  --primary-dark: #B71C1C;
  --primary-light: #EF5350;
  --text-dark: #212121;
  --text-light: #FFFFFF;
  --gray-light: #F5F5F5;
  --gray-medium: #9E9E9E;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

/* Typography */
.display-1, .display-3, .display-4, .display-5 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

/* Navbar Styles */
.navbar {
  background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(33, 33, 33, 0.95) 100%) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  padding: 1rem 0;
  z-index: 1050;
}

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

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

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

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

.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);
  transform: translateX(-50%);
}

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

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(211,47,47,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(100px, 100px); }
}

.hero-section .text-white {
  color: var(--text-light) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

.hero-section .display-1 {
  animation: fadeInUp 1s ease-out;
  color: var(--text-light) !important;
}

.hero-section .display-4 {
  color: var(--primary-color) !important;
  animation: fadeInUp 1.2s ease-out;
  font-weight: 600;
}

.hero-section .lead {
  animation: fadeInUp 1.4s ease-out;
  color: rgba(255, 255, 255, 0.9) !important;
}

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

.animate-bounce {
  animation: bounce 2s infinite;
}

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

/* Buttons */
.btn {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: 2px solid transparent;
  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.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

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

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

.btn-outline-light:hover {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--text-light) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(211, 47, 47, 0.3);
}

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

.btn-light:hover {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--text-light) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(211, 47, 47, 0.3);
}

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

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

.btn-outline-secondary {
  color: var(--secondary-color) !important;
  border-color: var(--gray-medium) !important;
}

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

.btn-lg {
  padding: 0.875rem 2rem;
}

.btn-sm {
  padding: 0.375rem 1rem;
}

/* Cards */
.card {
  border: none !important;
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  background: var(--text-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

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

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

.card-body {
  padding: 1.5rem;
}

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

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

/* Feature Boxes */
.p-4 {
  background: var(--text-light);
  border-radius: 12px;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
}

.p-4:hover {
  background: var(--secondary-color);
  color: var(--text-light) !important;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(211, 47, 47, 0.3);
  border-color: var(--primary-color);
}

.p-4:hover * {
  color: var(--text-light) !important;
}

.bi-lightning-charge-fill,
.bi-trophy-fill,
.bi-graph-up-arrow {
  color: var(--primary-color) !important;
  font-size: 2.5rem;
  transition: var(--transition);
}

.p-4:hover .bi-lightning-charge-fill,
.p-4:hover .bi-trophy-fill,
.p-4:hover .bi-graph-up-arrow {
  color: var(--text-light) !important;
  transform: scale(1.2) rotate(5deg);
}

/* Section Styles */
.py-5 {
  padding: 5rem 0;
}

section {
  position: relative;
}

/* About Hero */
.about-hero {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #424242 100%);
  color: var(--text-light) !important;
  padding: 6rem 0 4rem;
}

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

.about-hero .display-1 {
  color: var(--primary-color) !important;
}

/* Founder Story */
.founder-story {
  background: var(--gray-light);
}

.founder-intro {
  background: var(--text-light);
  padding: 2rem;
}

.badge {
  background: var(--primary-color) !important;
  color: var(--text-light) !important;
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.875rem;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
}

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

.timeline-item:last-child {
  border-left-color: transparent;
}

.timeline-dot {
  position: absolute;
  left: -9px;
  top: 0;
  width: 16px;
  height: 16px;
  background: var(--primary-color);
  border: 3px solid var(--text-light);
}

/* Philosophy Section */
.philosophy-section {
  background: var(--secondary-color);
  color: var(--text-light) !important;
}

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

.philosophy-content {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.philosophy-points .point {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.philosophy-points .point:hover {
  background: rgba(211, 47, 47, 0.2);
  transform: translateX(10px);
  border-color: var(--primary-color);
}

.bi-people-fill,
.bi-heart-pulse-fill {
  color: var(--primary-color) !important;
}

/* Gallery Section */
.gallery-section {
  background: var(--gray-light);
}

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

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

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

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(33, 33, 33, 0.9) 0%, rgba(33, 33, 33, 0) 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  color: var(--text-light) !important;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

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

/* Stats Section */
.stats-section {
  background: var(--primary-color);
  color: var(--text-light) !important;
  padding: 4rem 0;
}

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

.stat-item {
  text-align: center;
}

.counter {
  font-size: 3rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

/* Team Section */
.team-section {
  background: var(--text-light);
}

.team-card {
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  border: none !important;
}

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

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #424242 100%);
  color: var(--text-light) !important;
  padding: 5rem 0;
}

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

/* Footer */
.footer {
  background: var(--secondary-color);
  color: var(--text-light) !important;
  padding: 3rem 0 1rem;
}

.footer * {
  color: rgba(255, 255, 255, 0.8) !important;
}

.footer h3,
.footer h4,
.footer h5 {
  color: var(--text-light) !important;
}

.footer a {
  text-decoration: none;
  transition: var(--transition);
}

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

.bi-facebook,
.bi-instagram,
.bi-twitter,
.bi-youtube {
  font-size: 1.5rem;
  transition: var(--transition);
}

.bi-facebook:hover,
.bi-instagram:hover,
.bi-twitter:hover,
.bi-youtube:hover {
  color: var(--primary-color) !important;
  transform: translateY(-3px);
}

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

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

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

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

.form-check-input {
  border: 2px solid var(--gray-medium);
  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;
  cursor: pointer;
}

.invalid-feedback {
  color: var(--primary-color) !important;
  font-weight: 500;
  display: none;
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: var(--primary-color) !important;
}

.form-control.is-invalid ~ .invalid-feedback {
  display: block;
}

/* Alert */
.alert {
  border: none;
  border-radius: 8px;
  padding: 1rem 1.5rem;
}

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

.accordion-item {
  border: none !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
  background: var(--text-light);
}

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

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

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

.accordion-button:not(.collapsed)::after {
  filter: brightness(100);
}

.accordion-body {
  background: var(--gray-light);
  color: var(--text-dark) !important;
  padding: 1.5rem;
}

/* Pricing Toggle */
.pricing-toggle {
  background: var(--gray-light);
  padding: 0.5rem;
  border-radius: 50px;
  display: inline-flex;
  gap: 0.5rem;
}

.pricing-toggle .btn {
  border-radius: 50px;
  padding: 0.5rem 2rem;
}

/* Carousel */
.carousel {
  border-radius: 12px;
  overflow: hidden;
}

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

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: 0.8;
  transition: var(--transition);
}

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

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--primary-color);
  border-radius: 50%;
  padding: 1rem;
}

/* Nav Sidebar */
.nav-sidebar {
  position: sticky;
  top: 100px;
}

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

.nav-sidebar .nav-link {
  color: var(--text-dark) !important;
  padding: 0.75rem 1rem;
  border-left: 3px solid transparent;
  transition: var(--transition);
  font-weight: 500;
}

.nav-sidebar .nav-link:hover,
.nav-sidebar .nav-link.active {
  color: var(--primary-color) !important;
  border-left-color: var(--primary-color);
  background: var(--gray-light);
}

/* Class Card */
.class-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 250px;
  cursor: pointer;
}

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

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

.class-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(33, 33, 33, 0.95) 0%, rgba(33, 33, 33, 0) 100%);
  padding: 1.5rem;
  color: var(--text-light) !important;
}

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

/* Filter Buttons */
.filter-btn {
  margin: 0.25rem;
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
}

/* Time Filter */
.time-filter .btn {
  border-radius: 8px;
  min-width: 100px;
}

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

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

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

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

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

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

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

.border-light {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.border-opacity-25 {
  opacity: 0.25;
}

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

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

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

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

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

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

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

/* Icons */
.bi {
  vertical-align: middle;
}

.bi-chevron-down,
.bi-lightning-charge-fill,
.bi-trophy-fill,
.bi-graph-up-arrow,
.bi-geo-alt-fill,
.bi-telephone-fill,
.bi-envelope-fill,
.bi-people-fill,
.bi-heart-pulse-fill,
.bi-send,
.bi-clock,
.bi-circle-fill,
.bi-question-circle,
.bi-exclamation-triangle-fill,
.bi-person-check-fill,
.bi-calendar-check-fill,
.bi-heart-fill,
.bi-check-circle,
.bi-check-circle-fill,
.bi-printer,
.bi-calendar-check,
.bi-geo-alt,
.bi-telephone,
.bi-envelope,
.bi-sunrise,
.bi-sun,
.bi-moon-stars,
.bi-people,
.bi-x-circle,
.bi-clock-fill,
.bi-arrow-right {
  display: inline-block;
  transition: var(--transition);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(33, 33, 33, 0.98);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 8px;
    border: 1px solid var(--primary-color);
  }
  
  .navbar-nav {
    gap: 0.5rem;
  }
  
  .navbar-dark .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
  }
  
  .hero-section {
    min-height: 100vh;
    padding: 2rem 0;
  }
  
  .display-1 {
    font-size: 3rem;
  }
  
  .display-3 {
    font-size: 2.5rem;
  }
  
  .display-4 {
    font-size: 2rem;
  }
  
  .display-5 {
    font-size: 1.75rem;
  }
  
  .py-5 {
    padding: 3rem 0;
  }
  
  .gallery-item {
    height: 200px;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
  }
  
  .stat-item {
    margin-bottom: 2rem;
  }
  
  .counter {
    font-size: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .display-1 {
    font-size: 2.5rem;
  }
  
  .display-3 {
    font-size: 2rem;
  }
  
  .display-4 {
    font-size: 1.75rem;
  }
  
  .display-5 {
    font-size: 1.5rem;
  }
  
  .lead {
    font-size: 1.1rem;
  }
  
  .fs-1 {
    font-size: 2rem !important;
  }
  
  .fs-3 {
    font-size: 1.5rem !important;
  }
  
  .fs-4 {
    font-size: 1.25rem !important;
  }
  
  .fs-5 {
    font-size: 1.1rem !important;
  }
  
  .px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .px-5 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  
  .py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  
  .gap-3 {
    gap: 0.75rem !important;
  }
  
  .btn-lg {
    padding: 0.625rem 1.25rem;
    font-size: 1rem;
  }
  
  .card-img-top {
    height: 200px;
  }
  
  .gallery-item {
    height: 180px;
  }
  
  .class-card {
    height: 200px;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  .display-1 {
    font-size: 2rem;
  }
  
  .display-3 {
    font-size: 1.75rem;
  }
  
  .display-4 {
    font-size: 1.5rem;
  }
  
  .display-5 {
    font-size: 1.35rem;
  }
  
  .container,
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .py-5 {
    padding: 2rem 0;
  }
  
  .p-4 {
    padding: 1.5rem !important;
  }
  
  .counter {
    font-size: 2rem;
  }
  
  .btn {
    font-size: 0.875rem;
  }
}

/* Print Styles */
@media print {
  .no-print,
  .navbar,
  .btn,
  .footer {
    display: none !important;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  .container {
    max-width: 100%;
  }
}

/* Accessibility */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Focus Styles */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

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

a,
button,
.btn,
.card,
.nav-link {
  transition: all 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

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

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

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

/* Loading Animation */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

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

/* Scale Animation */
@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

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

/* Image Fit */
.object-fit-cover {
  object-fit: cover !important;
}

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

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

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

/* Position Utilities */
.sticky-lg-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

/* Background Opacity */
.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

/* Text Transform */
.text-uppercase {
  text-transform: uppercase !important;
}

/* Min Height */
.min-vh-100 {
  min-height: 100vh !important;
}

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