 
/* Hero Slider Styles - Horizontal Layout (Not Full Screen) */
.hero-slider-section-fullscreen {
  padding: 0;
  background: #000;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

.hero-slider-wrapper-fullscreen {
  position: relative;
  width: 100%;
  height: 900px;
  overflow: hidden;
  max-width: 100%;
}

.hero-carousel-frame-fullscreen {
  position: relative;
  width: 100%;
  height: 900px;
  border: none;
  border-radius: 0;
  overflow: hidden;
  background-color: #000;
  box-shadow: none;
  max-width: 100%;
}

.hero-carousel-frame-fullscreen .carousel {
  height: 100%;
}

.hero-carousel-frame-fullscreen .carousel-inner {
  height: 100%;
}

.hero-carousel-frame-fullscreen .carousel-item {
  height: 900px;
  position: relative;
  width: 100%;
  transition: opacity 0.6s ease-in-out;
}

.hero-carousel-frame-fullscreen .carousel-item:not(.active) {
  opacity: 0;
}

.hero-carousel-frame-fullscreen .carousel-item.active {
  opacity: 1;
}

/* Image Wrapper - Full fit, no blur */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 900px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-carousel-frame-fullscreen .carousel-item img,
.hero-carousel-frame-fullscreen .hero-slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Default: cover for images that are 2560x1290 */
  object-position: center;
  display: block;
  z-index: 1;
}

/* Blur background - only for non-standard size images (not 2560x1290) */
.hero-image-wrapper.has-blur::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--slider-bg-image);
  background-size: cover;
  background-position: center;
  filter: blur(30px);
  z-index: 0;
  opacity: 0.8;
  transform: scale(1.1);
}

/* For non-standard size images, use contain with blur */
.hero-image-wrapper.has-blur .hero-slider-image {
  object-fit: contain !important; /* Contain for images that are not 2560x1290 */
  object-position: center center !important;
}

/* Video Styles */
.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}


.hero-video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 65vh;
  min-height: 500px;
  max-height: 700px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
}

/* Video Wrapper */
.hero-video-wrapper {
  position: relative;
  width: 100%;
  height: 900px;
  overflow: hidden;
  background: #000;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  /* Video oynatma sırasında transition yok - performans için */
  max-width: 100%;
  display: block;
  /* Video donma sorununu önlemek için optimizasyonlar */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  /* GPU acceleration */
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  /* Compositing layer oluştur */
  isolation: isolate;
  /* Video donma önleme */
  pointer-events: auto;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

/* Ses Kontrol Butonu */
.hero-video-sound-toggle {
  position: absolute;
  bottom: 100px;
  right: 30px;
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.hero-video-sound-toggle:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.hero-video-sound-toggle i {
  font-size: 20px;
}

.hero-video-sound-toggle.muted .fa-volume-up {
  display: none;
}

.hero-video-sound-toggle.muted .fa-volume-mute {
  display: block !important;
}

.hero-video-sound-toggle:not(.muted) .fa-volume-up {
  display: block;
}

.hero-video-sound-toggle:not(.muted) .fa-volume-mute {
  display: none;
}

@media (max-width: 768px) {
  .hero-video-sound-toggle {
    bottom: 80px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  
  .hero-video-sound-toggle i {
    font-size: 18px;
  }
}

.hero-carousel-frame-fullscreen .carousel-item:not(.active) .hero-video {
  opacity: 0;
  /* Video geçişlerinde smooth opacity değişimi */
  transition: opacity 0.3s ease;
}

.hero-carousel-frame-fullscreen .carousel-item.active .hero-video {
  opacity: 1;
  /* Video aktifken transition yok - performans için */
  transition: none;
}

.hero-video-container {
  transition: filter 0.6s ease, transform 0.6s ease;
}

.hero-carousel-frame-fullscreen .carousel-item:not(.active) .hero-video-container {
  opacity: 0;
}

.hero-carousel-frame-fullscreen .carousel-item.active .hero-video-container {
  opacity: 1;
}

.hero-video-iframe {
  transition: filter 0.6s ease, transform 0.6s ease;
}

.hero-carousel-frame-fullscreen .carousel-item:not(.active) .hero-video-iframe {
  opacity: 0;
  transform: translate(-50%, -50%);
}

.hero-carousel-frame-fullscreen .carousel-item.active .hero-video-iframe {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.hero-carousel-frame .carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.hero-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 50px 60px;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.hero-carousel-frame-fullscreen .hero-overlay-content {
  padding: 80px 60px;
}

@media (max-width: 1024px) {
  .hero-slider-wrapper-fullscreen {
    height: 800px;
  }
  
  .hero-carousel-frame-fullscreen {
    height: 800px;
  }
  
  .hero-carousel-frame-fullscreen .carousel-item {
    height: 800px;
  }
  
  .hero-image-wrapper {
    height: 800px;
  }
  
  .hero-image-wrapper.has-blur::before {
    filter: blur(25px);
  }
  
  .hero-image-wrapper.has-blur .hero-slider-image {
    object-fit: contain !important;
    object-position: center center !important;
  }
  
  .hero-video-wrapper {
    height: 800px;
  }
  
  .hero-video-iframe {
    height: 800px;
  }
}

@media (max-width: 768px) {
  .hero-slider-section-fullscreen {
    margin-left: 0;
    margin-right: 0;
  }
  
  .hero-slider-wrapper-fullscreen {
    height: 700px;
    max-width: 100vw;
    overflow: hidden;
  }
  
  .hero-carousel-frame-fullscreen {
    height: 700px;
    max-width: 100vw;
  }
  
  .hero-carousel-frame-fullscreen .carousel-item {
    height: 700px;
    max-width: 100vw;
  }
  
  .hero-image-wrapper {
    height: 700px;
  }
  
  .hero-image-wrapper.has-blur::before {
    filter: blur(20px);
  }
  
  .hero-carousel-frame-fullscreen .carousel-item img,
  .hero-carousel-frame-fullscreen .hero-slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  
  .hero-image-wrapper.has-blur .hero-slider-image {
    object-fit: contain !important;
    object-position: center center !important;
  }
  
  .hero-video-wrapper {
    height: 700px;
  }
  
  .hero-video {
    height: 100%;
    max-width: 100vw;
  }
  
  .hero-video-iframe {
    height: 700px;
    max-width: 100vw;
  }
  
  .hero-video-container {
    max-width: 100vw;
  }
  
  .hero-carousel-frame-fullscreen .hero-overlay-content {
    padding: 30px 20px;
  }
  
  .hero-overlay-content .hero-title {
    font-size: 2rem !important;
    letter-spacing: 1px;
  }
  
  .hero-overlay-content .hero-description {
    font-size: 1rem !important;
  }
}

.hero-content-wrapper {
  flex: 1;
  max-width: 70%;
}

.hero-overlay-content .hero-title {
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.5);
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-overlay-content .hero-description {
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.5);
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 0;
  font-weight: 400;
  max-width: 100%;
}

.hero-overlay-content .hero-register-btn {
  pointer-events: auto;
  background-color: #1c4179;
  color: #ffffff;
  border: none;
  padding: 16px 55px;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(28, 65, 121, 0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  white-space: nowrap;
}

.hero-overlay-content .hero-register-btn:hover {
  background-color: #1c4179;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(28, 65, 121, 0.5);
  color: #ffffff;
}

/* Register Button - Center of Slider */
.hero-register-btn-container {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: auto;
  text-align: center;
}

.hero-register-btn-center {
  background-color: #0088c7 !important;
  color: #ffffff !important;
  border: none !important;
  padding: 18px 60px;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 136, 199, 0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  white-space: nowrap;
  text-decoration: none !important;
  font-family: 'Akrobat', sans-serif;
  animation: pulse-attention 2s ease-in-out infinite;
}

@keyframes pulse-attention {
  0%, 100% {
    opacity: 0.85;
    transform: scale(1);
    box-shadow: 0 8px 30px rgba(0, 136, 199, 0.4), 0 0 0 0 rgba(0, 136, 199, 0.7);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(0, 136, 199, 0.6), 0 0 0 10px rgba(0, 136, 199, 0);
  }
}

.hero-register-btn-center:hover {
  background: rgba(0, 136, 199, 0.9) !important;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 136, 199, 0.6);
  color: #ffffff !important;
  text-decoration: none;
  opacity: 1 !important;
  border-color: rgba(255, 255, 255, 0.4);
  animation: none;
}

/* Responsive - Mobile */
@media (max-width: 767px) {
  .hero-register-btn-center {
    padding: 14px 40px;
    font-size: 1.1rem;
  }
  
  .hero-register-btn-container {
    top: 65%;
  }
}

/* Responsive - Tablet */
@media (min-width: 768px) {
  .hero-register-btn-center {
    padding: 18px 60px;
    font-size: 1.3rem;
  }
  
  .hero-content-wrapper {
    max-width: 75%;
  }
}

/* Responsive - Desktop */
@media (min-width: 992px) {
  .hero-register-btn-center {
    padding: 20px 70px;
    font-size: 1.4rem;
  }
  
  .hero-content-wrapper {
    max-width: 65%;
  }
}

@media (max-width: 576px) {
  .hero-slider-section-fullscreen {
    margin-left: 0;
    margin-right: 0;
  }
  
  .hero-slider-wrapper-fullscreen {
    height: 600px;
    max-width: 100vw;
    overflow: hidden;
  }
  
  .hero-carousel-frame-fullscreen {
    height: 600px;
    max-width: 100vw;
  }
  
  .hero-register-btn-center {
    padding: 12px 35px;
    font-size: 1rem;
  }
  
  .hero-carousel-frame-fullscreen .carousel-item {
    height: 600px;
    max-width: 100vw;
  }
  
  .hero-image-wrapper {
    height: 600px;
  }
  
  .hero-image-wrapper.has-blur::before {
    filter: blur(15px);
  }
  
  .hero-carousel-frame-fullscreen .carousel-item img,
  .hero-carousel-frame-fullscreen .hero-slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  
  .hero-image-wrapper.has-blur .hero-slider-image {
    object-fit: contain !important;
    object-position: center center !important;
  }
  
  .hero-video {
    height: 600px;
    max-width: 100vw;
  }
  
  .hero-video-iframe {
    height: 600px;
    max-width: 100vw;
  }
  
  .hero-video-container {
    max-width: 100vw;
  }
  
  .hero-carousel-frame-fullscreen .hero-overlay-content {
    padding: 25px 15px !important;
  }
  
  .hero-overlay-content .hero-title {
    font-size: 1.5rem !important;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
  }
  
  .hero-overlay-content .hero-description {
    font-size: 0.9rem !important;
    line-height: 1.3;
  }
  
  .hero-register-btn-container {
    width: 90%;
    max-width: calc(100vw - 20px);
  }
  
  .hero-content-wrapper {
    max-width: 100%;
  }
  
  .hero-register-btn-center {
    padding: 12px 30px;
    font-size: 0.9rem;
    width: 100%;
    letter-spacing: 1px;
  }
  
  .hero-carousel-frame-fullscreen .carousel-control-prev,
  .hero-carousel-frame-fullscreen .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  
  .hero-carousel-frame-fullscreen .carousel-indicators {
    bottom: 15px;
  }
}

@media (max-width: 400px) {
  .hero-slider-wrapper-fullscreen {
    height: 55vh;
    min-height: 360px;
    max-height: 540px;
  }
  
  .hero-carousel-frame-fullscreen {
    height: 55vh;
    min-height: 360px;
    max-height: 540px;
  }
  
  .hero-carousel-frame-fullscreen .carousel-item {
    height: 55vh;
    min-height: 360px;
    max-height: 540px;
  }
  
  .hero-image-wrapper {
    height: 55vh;
    min-height: 360px;
    max-height: 540px;
  }
  
  .hero-image-wrapper.has-blur::before {
    filter: blur(12px);
  }
  
  .hero-carousel-frame-fullscreen .carousel-item img,
  .hero-carousel-frame-fullscreen .hero-slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  
  .hero-image-wrapper.has-blur .hero-slider-image {
    object-fit: contain !important;
    object-position: center center !important;
  }
  
  .hero-video,
  .hero-video-iframe {
    height: 55vh;
    min-height: 360px;
    max-height: 540px;
  }
  
  .hero-carousel-frame-fullscreen .hero-overlay-content {
    padding: 20px 12px !important;
  }
  
  .hero-overlay-content .hero-title {
    font-size: 1.2rem !important;
  }
  
  .hero-overlay-content .hero-description {
    font-size: 0.8rem !important;
  }
  
  .hero-register-btn-container {
    width: 95%;
    max-width: calc(100vw - 10px);
  }
  
  .hero-content-wrapper {
    max-width: 100%;
  }
  
  .hero-register-btn-center {
    padding: 10px 25px;
    font-size: 0.85rem;
  }
}

.hero-carousel-frame .carousel-control-prev,
.hero-carousel-frame .carousel-control-next {
  z-index: 3;
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.hero-carousel-frame .carousel-control-prev:hover,
.hero-carousel-frame .carousel-control-next:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.3);
}

.hero-carousel-frame-fullscreen .carousel-indicators {
  z-index: 3;
  bottom: 30px;
}

.hero-carousel-frame-fullscreen .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-carousel-frame-fullscreen .carousel-indicators button.active {
  background-color: rgba(255, 255, 255, 1);
}

.hero-carousel-frame-fullscreen .carousel-control-prev,
.hero-carousel-frame-fullscreen .carousel-control-next {
  z-index: 3;
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.hero-carousel-frame-fullscreen .carousel-control-prev:hover,
.hero-carousel-frame-fullscreen .carousel-control-next:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.3);
}

/* Scroll Sections - Color Transitions */
.scroll-section {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.scroll-section.scroll-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section-specific background colors - White & Transparent Tones */
.scroll-section[data-section="hero"] {
  background: #000;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.scroll-section[data-section="hero"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.015) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0.6;
}

.scroll-section[data-section="hero"]::after {
  display: none;
}

.scroll-section[data-section="gallery"] {
  background: linear-gradient(135deg, #f3f3f3 0%, #f8f8f8 25%, #ffffff 50%, #fafafa 75%, #f5f5f5 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.scroll-section[data-section="gallery"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 30%, rgba(0, 0, 0, 0.01) 0%, transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(0, 0, 0, 0.008) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0.4;
}

.scroll-section[data-section="gallery"]::after {
  display: none;
}

.scroll-section[data-section="speakers"] {
  background: linear-gradient(135deg, #f0f0f0 0%, #f5f5f5 25%, #fafafa 50%, #f8f8f8 75%, #f3f3f3 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.scroll-section[data-section="speakers"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 20%, rgba(0, 0, 0, 0.015) 0%, transparent 60%),
    radial-gradient(circle at 30% 80%, rgba(0, 0, 0, 0.01) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0.5;
}

.scroll-section[data-section="speakers"]::after {
  display: none;
}

.scroll-section[data-section="events"] {
  background: linear-gradient(135deg, #f3f3f3 0%, #ffffff 20%, #fafafa 50%, #f8f8f8 80%, #f5f5f5 100%);
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.scroll-section[data-section="events"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.012) 0%, transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.008) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0.45;
}

.scroll-section[data-section="events"]::after {
  display: none;
}

.scroll-section[data-section="calendar"] {
  background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 25%, #ffffff 50%, #f8f8f8 75%, #f3f3f3 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.scroll-section[data-section="calendar"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 80% 30%, rgba(0, 0, 0, 0.01) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.008) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0.4;
}

.scroll-section[data-section="calendar"]::after {
  display: none;
}

/* Scroll to Top Button */
.scroll-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1c4179 0%, #1c4179 100%);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(28, 65, 121, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top-btn:hover {
  background: linear-gradient(135deg, #1c4179 0%, #1c4179 100%);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(28, 65, 121, 0.6);
}

.scroll-to-top-btn:active {
  transform: translateY(-2px) scale(0.95);
}

.scroll-to-top-btn i {
  transition: transform 0.3s ease;
}

.scroll-to-top-btn:hover i {
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .scroll-to-top-btn {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}

@media (max-width: 992px) {
  .hero-stats-wrapper {
    margin-top: 20px;
    display: flex;
    gap: 15px;
  }
  
  .hero-stat-card {
    flex: 1;
  }
}

@media (max-width: 992px) {
  .hero-carousel-frame {
    height: 450px;
    border-radius: 16px;
    border-width: 6px;
  }
  
  .hero-overlay-content {
    padding: 30px 25px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .hero-content-wrapper {
    max-width: 100%;
  }
  
  .hero-register-wrapper {
    margin-left: 0;
    align-self: flex-end;
  }
  
  .hero-overlay-content .hero-title {
    font-size: 2rem;
  }
  
  .hero-overlay-content .hero-register-btn {
    font-size: 1rem;
    padding: 12px 35px;
  }
}

@media (max-width: 768px) {
  .hero-carousel-frame {
    height: 400px;
    border-radius: 12px;
    border-width: 5px;
  }
  
  .hero-overlay-content {
    padding: 25px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .hero-content-wrapper {
    max-width: 100%;
  }
  
  .hero-register-wrapper {
    margin-left: 0;
    align-self: flex-end;
  }
  
  .hero-overlay-content .hero-title {
    font-size: 1.5rem;
    margin-bottom: 0;
    line-height: 1.2;
  }
  
  .hero-overlay-content .hero-register-btn {
    font-size: 0.9rem;
    padding: 10px 30px;
  }
  
  .hero-stats-wrapper {
    flex-direction: column;
    margin-top: 20px;
  }
}

/* Lazy Loading Styles */
img[data-lazy-src] {
  opacity: 0.3;
  transition: opacity 0.3s ease-in-out;
  background: #f0f0f0;
}

img[data-lazy-src].lazy-loaded,
img.lazy-loaded {
  opacity: 1;
}

img.lazy-error {
  opacity: 0.5;
  background: #ffebee;
}

/* Gallery images should be visible even when lazy loading */
.gallery-image[data-lazy-src] {
  opacity: 0.6;
  background: #f0f0f0;
}

.gallery-image[data-lazy-src].lazy-loaded {
  opacity: 1;
}

/* Gallery images without lazy loading should be fully visible */
.gallery-image:not([data-lazy-src]) {
  opacity: 1;
}

/* Lazy Component Styles */
.scroll-section[data-lazy-component] {
  min-height: 100px;
}

/* Smooth fade-in for lazy loaded images */
img[loading="lazy"] {
  transition: opacity 0.3s ease-in-out;
}

img[loading="lazy"]:not([src]),
img[data-lazy-src]:not([src]) {
  opacity: 0;
}