/* Crimson Forge Architecture Studio - Custom Styles */

:root {
  --primary-color: #D32F2F;
  --secondary-color: #212121;
  --accent-color: #FF5252;
  --light-gray: #F5F5F5;
  --dark-gray: #424242;
  --text-dark: #1A1A1A;
  --text-light: #FFFFFF;
  --transition-speed: 0.3s;
}

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

html {
  scroll-behavior: smooth;
}

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

/* Typography */
.display-1, .display-2, .display-3, .display-4, .display-5 {
  font-weight: 700 !important;
  letter-spacing: -1px;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 700;
  line-height: 1.2;
}

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

/* Navbar Styles */
.navbar {
  background-color: var(--secondary-color) !important;
  padding: 1rem 0;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.navbar-brand {
  color: var(--text-light) !important;
  font-size: 1.75rem;
  letter-spacing: 1px;
  transition: color var(--transition-speed) ease;
}

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

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

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

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem 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;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  transition: all var(--transition-speed) ease;
  position: relative;
}

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

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

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

/* Hero Video Section */
.hero-video-section {
  min-height: 100vh;
  overflow: hidden;
}

.video-background {
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.5);
  top: 0 !important;
  left: 0 !important;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(211, 47, 47, 0.7) 0%, rgba(33, 33, 33, 0.8) 100%);
}

.hero-overlay .text-white {
  color: var(--text-light) !important;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-overlay .display-1 {
  animation: fadeInUp 1s ease-out;
  font-size: clamp(2.5rem, 8vw, 5rem) !important;
}

.hero-overlay .lead {
  animation: fadeInUp 1.2s ease-out;
  color: rgba(255, 255, 255, 0.95) !important;
}

/* Buttons */
.btn {
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: all var(--transition-speed) ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  font-size: 0.9rem;
}

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

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

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

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

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

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

.btn-outline-dark:hover,
.btn-outline-dark:focus {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--text-light) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(33, 33, 33, 0.3) !important;
}

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

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

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

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

.btn-sm {
  padding: 0.375rem 1rem !important;
  font-size: 0.85rem !important;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 3;
}

.scroll-indicator .bi {
  font-size: 2.5rem;
  color: var(--text-light) !important;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

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

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

/* Service Cards */
.service-card {
  background: white;
  border-radius: 15px;
  transition: all var(--transition-speed) ease;
  border: 2px solid transparent;
  height: 100%;
  cursor: pointer;
}

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

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

.service-card:hover .icon-wrapper {
  transform: rotate(360deg) scale(1.1);
}

.icon-wrapper .bi {
  font-size: 2rem;
  color: var(--text-light) !important;
}

/* Sections */
section {
  padding: 5rem 0;
}

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

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

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

/* Images */
.img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

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

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

/* Cards */
.card {
  border-radius: 15px;
  overflow: hidden;
  transition: all var(--transition-speed) ease;
}

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

.card-body {
  padding: 2rem;
}

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

/* Testimonial Section */
.testimonial-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-gray) 100%);
  color: var(--text-light) !important;
}

.testimonial-section .card {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-section .card-body {
  color: var(--text-light) !important;
}

.bi-star-fill {
  color: #FFC107 !important;
  font-size: 1.2rem;
}

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

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

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

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 1rem;
}

footer a {
  color: rgba(255, 255, 255, 0.7) !important;
  transition: color var(--transition-speed) ease;
}

footer a:hover {
  color: var(--primary-color) !important;
  text-decoration: none;
}

.social-links a {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin: 0 0.5rem;
  transition: all var(--transition-speed) ease;
  border: 2px solid transparent;
}

.social-links a:hover {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color);
  transform: translateY(-5px);
  color: var(--text-light) !important;
}

.social-links .bi {
  font-size: 1.2rem;
}

/* Badges */
.badge {
  background-color: var(--primary-color) !important;
  color: var(--text-light) !important;
  font-weight: 600;
  border-radius: 50px;
  padding: 0.5rem 1rem !important;
}

/* Forms */
.form-control,
.form-select {
  border: 2px solid #E0E0E0;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all var(--transition-speed) ease;
  background-color: white;
}

.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;
  outline: none;
}

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

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

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

.form-check-input {
  border: 2px solid #E0E0E0;
  cursor: pointer;
}

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

.form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(211, 47, 47, 0.15) !important;
}

.form-check-label {
  cursor: pointer;
}

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

.alert-success {
  background-color: #4CAF50;
  color: white !important;
}

/* Accordion */
.accordion-item {
  border: 1px solid #E0E0E0;
  border-radius: 10px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

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

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

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

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

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

.accordion-body {
  padding: 1.5rem;
  background-color: #FAFAFA;
}

.accordion-collapse {
  border: none;
}

/* Breadcrumb */
.breadcrumb {
  background-color: transparent;
  padding: 1rem 0;
}

.breadcrumb-item {
  color: var(--dark-gray);
}

.breadcrumb-item.active {
  color: var(--primary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--dark-gray);
}

.breadcrumb-item a {
  color: var(--secondary-color) !important;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: var(--primary-color) !important;
}

/* Tables */
.table {
  background-color: white;
}

.table-bordered {
  border: 2px solid #E0E0E0;
}

.table-hover tbody tr {
  transition: all var(--transition-speed) ease;
  cursor: pointer;
}

.table-hover tbody tr:hover {
  background-color: rgba(211, 47, 47, 0.05);
}

.table thead {
  background-color: var(--secondary-color);
  color: var(--text-light) !important;
}

.table thead th {
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* Instructor Cards */
.instructor-card {
  border-radius: 15px;
  overflow: hidden;
  background: white;
  transition: all var(--transition-speed) ease;
  border: 2px solid transparent;
}

.instructor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
  border-color: var(--primary-color);
}

.instructor-card img {
  height: 250px;
  object-fit: cover;
  width: 100%;
}

.object-fit-cover {
  object-fit: cover !important;
}

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

.carousel-item img {
  height: 500px;
  object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  opacity: 0.8;
}

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

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

/* Progress Bar */
.progress {
  height: 30px;
  border-radius: 50px;
  background-color: #E0E0E0;
  overflow: visible;
}

.progress-bar {
  background-color: var(--primary-color) !important;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.6s ease;
}

/* Utility Classes */
.text-danger {
  color: var(--primary-color) !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.d-none {
  display: none !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-middle {
  vertical-align: middle !important;
}

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

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

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

.flex-fill {
  flex: 1 1 auto !important;
}

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

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

.ms-auto {
  margin-left: auto !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Icon Styles */
.bi {
  display: inline-block;
  vertical-align: middle;
}

.bi-check-circle-fill {
  color: #4CAF50 !important;
}

.bi-x-circle,
.bi-x-lg {
  color: var(--primary-color) !important;
}

.bi-check-lg {
  color: #4CAF50 !important;
}

.bi-fire,
.bi-lightning-charge-fill,
.bi-lightning-fill {
  color: var(--primary-color) !important;
}

/* Button Group */
.btn-group {
  border-radius: 50px;
  overflow: hidden;
}

.btn-check {
  display: none;
}

.btn-check:checked + .btn-outline-danger {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--text-light) !important;
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.8s ease-in;
}

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

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

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

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

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

/* Custom Classes for Theme */
.crimson-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
}

.dark-gradient {
  background: linear-gradient(135deg, var(--secondary-color), var(--dark-gray)) !important;
}

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

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

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

/* Hover Effects */
.hover-lift {
  transition: all var(--transition-speed) ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Bio Expanded */
.bio-expanded {
  max-height: 1000px;
  transition: max-height 0.5s ease;
}

.bio-collapsed {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: rgba(33, 33, 33, 0.98);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    border: 2px solid var(--primary-color);
  }
  
  .nav-link {
    padding: 0.75rem 1rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-link::after {
    display: none;
  }
  
  .hero-overlay .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;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .ps-lg-5 {
    padding-left: 1rem !important;
  }
  
  .carousel-item img {
    height: 300px;
  }
  
  .btn-lg {
    padding: 0.75rem 2rem !important;
    font-size: 0.95rem !important;
  }
  
  .sticky-lg-top {
    position: relative !important;
  }
}

@media (max-width: 767.98px) {
  .hero-overlay .display-1 {
    font-size: 2rem !important;
  }
  
  .lead {
    font-size: 1rem;
  }
  
  .icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .icon-wrapper .bi {
    font-size: 1.5rem;
  }
  
  .btn {
    font-size: 0.85rem;
  }
  
  .social-links a {
    width: 40px;
    height: 40px;
    margin: 0 0.25rem;
  }
  
  .text-md-start,
  .text-md-end {
    text-align: center !important;
  }
  
  .flex-md-row {
    flex-direction: column !important;
  }
  
  .mb-lg-0 {
    margin-bottom: 1.5rem !important;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .hero-overlay .display-1 {
    font-size: 1.75rem !important;
  }
  
  .display-3 {
    font-size: 1.5rem !important;
  }
  
  .btn-lg {
    padding: 0.625rem 1.5rem !important;
    font-size: 0.9rem !important;
  }
  
  section {
    padding: 2rem 0;
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  .table-responsive {
    font-size: 0.85rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .scroll-indicator,
  .btn,
  footer {
    display: none !important;
  }
  
  body {
    background-color: white;
  }
  
  .hero-video-section {
    min-height: auto;
  }
}