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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  background-image: url("../img/BG-center.png");
  background-repeat: repeat-y;
  background-size: contain;
  background-position: center center;
}

.ss-back {
  position: fixed;
  bottom: -280px;
  left: 0;
  background-image: url("../img/BG-bottom.png");
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  display: none;
}
@media (max-width: 768px) {
  .ss-back {
    display: block;
  }
}

.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-back {
  position: fixed;
  width: 100%;
}
.hero-back .section-content {
  width: 100%;
  height: 100%;
  background-image: url("../img/BG-left.png"), url("../img/BG-right.png");
  background-repeat: no-repeat, no-repeat;
  background-position: left top, right top;
  background-size: contain, contain;
}

/* Animated water particles */
.water-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: radial-gradient(circle, rgba(135, 206, 235, 0.8), rgba(135, 206, 235, 0));
  border-radius: 50%;
  animation: floatUp 8s infinite ease-in-out;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) scale(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) scale(1) rotate(360deg);
    opacity: 0;
  }
}
/* Morphing background shapes */
.morph-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.morph-shape {
  position: absolute;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(135, 206, 235, 0.2));
  border-radius: 50%;
  filter: blur(2px);
  animation: morphFloat 15s infinite ease-in-out;
}

.morph-shape:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.morph-shape:nth-child(2) {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 10%;
  animation-delay: 3s;
}

.morph-shape:nth-child(3) {
  width: 400px;
  height: 400px;
  bottom: 5%;
  left: 30%;
  animation-delay: 6s;
}

@keyframes morphFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    border-radius: 50%;
  }
  25% {
    transform: translate(50px, -30px) rotate(90deg) scale(1.2);
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  }
  50% {
    transform: translate(-30px, 40px) rotate(180deg) scale(0.8);
    border-radius: 70% 30% 30% 70%/70% 70% 30% 30%;
  }
  75% {
    transform: translate(70px, 20px) rotate(270deg) scale(1.1);
    border-radius: 40% 60% 60% 40%/60% 40% 40% 60%;
  }
}
/* Wave animation */
.wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 2;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,60 C150,90 350,30 600,60 C850,90 1050,30 1200,60 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.1)"/></svg>') repeat-x;
  animation: waveMove 10s infinite linear;
}

.wave:nth-child(2) {
  animation: waveMove 15s infinite linear reverse;
  opacity: 0.5;
}

@keyframes waveMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.hero-content {
  z-index: 3;
  max-width: 1200px;
  padding: 0 20px;
  animation: heroEnter 2s ease-out;
}
.hero-content .logo-container {
  display: flex;
  justify-content: center;
}
.hero-content .trens-logo {
  width: 220px;
  margin-bottom: 30px;
}
.hero-content .trens-logo img {
  width: 100%;
}

@keyframes heroEnter {
  0% {
    opacity: 0;
    transform: translateY(100px) scale(0.8);
  }
  50% {
    opacity: 0.5;
    transform: translateY(30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.conference-badge {
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.15), rgba(135, 206, 235, 0.3));
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 15px 35px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 30px;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: badgePulse 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.conference-badge::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 40px rgba(135, 206, 235, 0.6);
    transform: scale(1.05);
  }
}
@keyframes badgeRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 20px;
  font-weight: 800;
  background-size: 200% 200%;
  animation: subtitleFloat 4s ease-in-out infinite;
  line-height: 1.2;
  text-shadow: 0 0 15px rgb(0, 0, 0);
}

@keyframes titleShimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.subtitle {
  font-size: clamp(1.3rem, 3vw, 2rem);
  margin-bottom: 40px;
  opacity: 0.9;
  font-weight: 300;
  animation: subtitleFloat 4s ease-in-out infinite;
  text-shadow: 0 0 15px rgb(0, 0, 0);
}

@keyframes subtitleFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.event-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 50px 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.detail-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(135, 206, 235, 0.1));
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 35px;
  border-radius: 25px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  animation: cardFloat 6s ease-in-out infinite;
}

.detail-card:nth-child(1) {
  animation-delay: 0s;
}

.detail-card:nth-child(2) {
  animation-delay: 2s;
}

.detail-card:nth-child(3) {
  animation-delay: 4s;
}

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-15px) rotate(1deg);
  }
  66% {
    transform: translateY(10px) rotate(-1deg);
  }
}
.detail-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, transparent, transparent, transparent, transparent);
  background-size: 300% 300%;
  border-radius: 25px;
  z-index: -1;
  animation: borderGlow 4s ease-in-out infinite;
  opacity: 0;
}

@keyframes borderGlow {
  0%, 100% {
    background-position: 0% 50%;
    opacity: 0;
  }
  50% {
    background-position: 100% 50%;
    opacity: 1;
  }
}
.detail-card:hover {
  transform: translateY(-20px) scale(1.05) rotate(2deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.detail-card:hover::before {
  opacity: 1;
}

.detail-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  animation: iconSpin 8s ease-in-out infinite;
}

@keyframes iconSpin {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(5deg) scale(1.1);
  }
  50% {
    transform: rotate(0deg) scale(1);
  }
  75% {
    transform: rotate(-5deg) scale(1.1);
  }
}
.cta-button {
  background: linear-gradient(45deg, #5ca3a0, #5ca3a0, #5ca3a0);
  background-size: 200% 200%;
  color: white;
  padding: 20px 50px;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  animation: buttonPulse 2s ease-in-out infinite;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(33, 33, 33, 0.3);
  margin: 0.5rem 1rem;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

@keyframes buttonPulse {
  0%, 100% {
    background-position: 0% 50%;
    transform: scale(1);
  }
  50% {
    background-position: 100% 50%;
    transform: scale(1.05);
  }
}
.panels-section {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

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

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(10px, 10px);
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.section-title {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
  background: linear-gradient(45deg, #0066cc, #004080, #0066cc);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  animation: titleWave 4s ease-in-out infinite;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  border-radius: 2px;
  animation: underlineGrow 2s ease-out;
}

@keyframes titleWave {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes underlineGrow {
  0% {
    width: 0;
  }
  100% {
    width: 100px;
  }
}
.section-subtitle {
  text-align: center;
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 80px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.panels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.panel-card {
  background: white;
  border-radius: 25px;
  padding: 40px 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  animation: cardSlideIn 0.8s ease-out both;
}

.panel-card:nth-child(1) {
  animation-delay: 0.1s;
}

.panel-card:nth-child(2) {
  animation-delay: 0.2s;
}

.panel-card:nth-child(3) {
  animation-delay: 0.3s;
}

.panel-card:nth-child(4) {
  animation-delay: 0.4s;
}

.panel-card:nth-child(5) {
  animation-delay: 0.5s;
}

.panel-card:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes cardSlideIn {
  from {
    opacity: 0;
    transform: translateX(-50px) rotate(-5deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }
}
.panel-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.1), transparent);
  transition: left 0.6s ease;
}

.panel-card:hover::before {
  left: 100%;
}

.panel-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(45deg, #0066cc, #ff6b35);
  border-radius: 25px 25px 0 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.panel-card:hover::after {
  transform: scaleX(1);
}

.panel-card:hover {
  transform: translateY(-15px) scale(1.02) rotate(1deg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 102, 204, 0.3);
}

.panel-number {
  background: linear-gradient(45deg, #0066cc, #004080);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 25px;
  font-size: 1.4rem;
  animation: numberBounce 2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.panel-number::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.panel-card:hover .panel-number::before {
  width: 100px;
  height: 100px;
}

@keyframes numberBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.panel-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #333;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.panel-card:hover .panel-title {
  color: #0066cc;
}

.panel-description {
  color: #666;
  line-height: 1.7;
  font-size: 1rem;
}

.venue-section {
  background: linear-gradient(135deg, #001a2e, #002040, #003366);
  color: white;
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.venue-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.venue-particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: venueFloat 12s infinite ease-in-out;
}

@keyframes venueFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(100px, -50px) scale(1.5);
    opacity: 0.8;
  }
}
.venue-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.venue-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 40px;
  font-weight: 800;
  animation: venueGlow 3s ease-in-out infinite;
}

@keyframes venueGlow {
  0%, 100% {
    text-shadow: 0 0 20px rgba(135, 206, 235, 0.5);
  }
  50% {
    text-shadow: 0 0 40px rgba(135, 206, 235, 0.8), 0 0 60px rgba(255, 255, 255, 0.3);
  }
}
.venue-highlight {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(135, 206, 235, 0.1));
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  padding: 50px;
  border-radius: 30px;
  margin: 50px 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: highlightPulse 4s ease-in-out infinite;
  position: relative;
}

@keyframes highlightPulse {
  0%, 100% {
    box-shadow: 0 0 30px rgba(135, 206, 235, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 50px rgba(135, 206, 235, 0.5);
    transform: scale(1.02);
  }
}
footer {
  background: #000510;
  color: white;
  padding: 10px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.trends-logo {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 25px;
  background: linear-gradient(45deg, #0066cc, #87ceeb, #0066cc);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: logoShimmer 3s ease-in-out infinite;
}

@keyframes logoShimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
/* Scroll indicator with enhanced animation */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  animation: scrollBounce 2s infinite;
  cursor: pointer;
}

.scroll-arrow {
  font-size: 2.5rem;
  animation: arrowPulse 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-15px);
  }
  60% {
    transform: translateX(-50%) translateY(-8px);
  }
}
@keyframes arrowPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}
@media (max-width: 768px) {
  .event-details {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .panels-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .detail-card,
  .panel-card {
    padding: 30px 25px;
  }
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 80px 0;
  }
}
.conference-details {
  position: relative;
  padding: 4rem 0;
}
.conference-details .cd-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  color: white;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
}
@media (max-width: 920px) {
  .conference-details .cd-container {
    padding: 0 20px 0 50px !important;
  }
}
@media (max-width: 600px) {
  .conference-details .cd-container {
    padding: 0 20px 0 30px !important;
  }
}
.conference-details .cd-container h3 {
  font-weight: 500;
  font-size: 2.5rem;
}
.conference-details .cd-container .cd-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 20px;
  margin-top: 30px;
  width: 100%;
  padding: 2rem 0;
}
@media (max-width: 1400px) {
  .conference-details .cd-container .cd-grid {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    padding: 1.5rem;
    border-radius: 1rem;
  }
}
.conference-details .cd-container .cd-grid .cd-card {
  text-align: left;
  text-shadow: 0 0 5px rgb(0, 0, 0);
}
.conference-details .cd-container .cd-grid .cd-card.full {
  grid-column: span 10;
  font-size: 1.2rem;
  font-weight: 500;
}
.conference-details .cd-container .cd-grid .cd-card.time {
  grid-column: span 2;
  font-size: 0.9rem;
  font-weight: 500;
}
@media (max-width: 560px) {
  .conference-details .cd-container .cd-grid .cd-card.time {
    grid-column: span 10;
  }
}
.conference-details .cd-container .cd-grid .cd-card.details {
  grid-column: span 8;
  font-size: 1rem;
  font-weight: 500;
}
@media (max-width: 560px) {
  .conference-details .cd-container .cd-grid .cd-card.details {
    grid-column: span 10;
  }
}
.conference-details .cd-container .cd-grid .cd-card p {
  padding: 0.5rem 0;
}
.conference-details .cd-container .cd-grid .cd-card ul {
  padding: 1rem 0 1rem 2rem;
}
.conference-details .cd-container .cd-grid .cd-card ul li {
  padding: 0.3rem 0;
}

.cd-divider {
  background: linear-gradient(to right, white, transparent);
  height: 1px;
  width: 100%;
}

.register-container {
  position: relative;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  padding: 2rem;
}
.register-container h3 {
  font-size: 2rem !important;
}
.register-container .rc-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  padding: 2rem 0;
  width: 100%;
}
.register-container .rc-grid .rc-card {
  grid-column: span 6;
  padding: 0.5rem 1rem;
  /* For older browsers that may require vendor prefixes */
}
@media (max-width: 700px) {
  .register-container .rc-grid .rc-card {
    grid-column: span 12;
  }
}
.register-container .rc-grid .rc-card select,
.register-container .rc-grid .rc-card input[type=text],
.register-container .rc-grid .rc-card input[type=email] {
  -webkit-appearance: none; /* Remove Safari default */
  -moz-appearance: none; /* For Firefox */
  appearance: none;
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  margin-bottom: 10px;
}
.register-container .rc-grid .rc-card input::-moz-placeholder {
  color: #eae7e7; /* Sets the placeholder color to red using a hex code */
}
.register-container .rc-grid .rc-card input::placeholder {
  color: #eae7e7; /* Sets the placeholder color to red using a hex code */
}
.register-container .rc-grid .rc-card input::-webkit-input-placeholder { /* Chrome, Safari, Opera */
  color: #eae7e7;
}
.register-container .rc-grid .rc-card input::-moz-placeholder { /* Firefox 19+ */
  color: #eae7e7;
  opacity: 1; /* Ensures full opacity in Firefox, as it defaults to a lower opacity */
}
.register-container .rc-grid .rc-card input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #eae7e7;
}
.register-container .rc-grid .rc-card input::-ms-input-placeholder { /* Microsoft Edge */
  color: #eae7e7;
}
.register-container .rc-grid .rc-card.rc-full {
  grid-column: span 12;
  display: flex;
  align-items: center;
  justify-content: center;
}
.register-container .rc-grid .rc-card.select {
  flex-direction: column;
  align-items: start;
}
.register-container .rc-grid .rc-card.select label {
  text-align: left;
  padding-bottom: 0.5rem;
  color: #e3e2e2;
}
.register-container .rc-grid .rc-card .gd-choice {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.register-container .rc-grid .rc-card fieldset {
  border: none;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.register-container .rc-grid .rc-card fieldset label {
  letter-spacing: 0.1rem;
  text-align: center;
  padding: 0.5rem 0;
  cursor: pointer;
  font-size: 0.9rem;
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  position: relative;
  z-index: 1;
  display: block;
}
.register-container .rc-grid .rc-card fieldset label:hover {
  background: #5ca3a0;
}
.register-container .rc-grid .rc-card fieldset input[type=radio] {
  opacity: 0;
  position: absolute;
  cursor: pointer;
}
.register-container .rc-grid .rc-card fieldset input[type=radio]:checked ~ label {
  background: #5ca3a0;
  color: white;
  box-shadow: 0 0.2em 0.45em 0.1em rgba(0, 0, 0, 0.4);
  transform: scale(1.1);
  animation: checked 200ms 1;
  border: 1px solid rgb(67.2137096774, 143.7862903226, 67.2137096774);
  position: relative;
  z-index: 5;
}

.btn-liquid {
  background: linear-gradient(45deg, #5ca3a0, #5ca3a0, #5ca3a0);
  background-size: 200% 200%;
  color: white;
  padding: 20px 50px;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  animation: buttonPulse 2s ease-in-out infinite;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(33, 33, 33, 0.3);
}

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

.nav-dots {
  position: fixed;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  cursor: pointer;
  z-index: 99;
}
@media (max-width: 950px) {
  .nav-dots {
    display: none;
  }
}

.inner-dot {
  display: flex;
  flex-direction: row;
  padding: 0.5rem;
}
.inner-dot p {
  font-size: 0.8rem;
  padding: 0 0.5rem;
  color: #fff;
}

p.nav-dot {
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 50%;
  list-style: none;
  background: transparent;
  transition: all 0.3s;
  margin-top: 5px;
  padding: 0;
}

.nav-dot:hover, .nav-dot.is-active {
  transform: scale(1.6);
  background: transparent;
}

/* Scroll indicator */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1001;
}

.scroll-progress {
  height: 100%;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
  width: 0%;
  transition: width 0.1s ease;
}

/* Fixed Timeline Navigation  */
.timeline-nav {
  position: fixed;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
}
@media (max-width: 1200px) {
  .timeline-nav {
    left: 15px;
  }
}
@media (max-width: 600px) {
  .timeline-nav {
    left: 5px;
  }
}

.timeline-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 220px;
  background: linear-gradient(180deg, #221c35 0%, #221c35 25%, #00a19b 50%, #221c35 75%, #221c35 100%);
  border-radius: 2px;
}

.timeline-progress {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background: linear-gradient(180deg, #fff 0%, #ff6b6b 100%);
  border-radius: 2px;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  top: 0;
  height: 0;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.timeline-bullet {
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, white, transparent);
  border: 3px solid #221c35;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 30px 0;
  z-index: 2;
}

.timeline-bullet:hover {
  transform: scale(1.3);
  box-shadow: 0 0 25px rgba(102, 126, 234, 0.6);
  border-color: rgba(255, 255, 255, 0.8);
}

.timeline-bullet.active {
  background: linear-gradient(135deg, #4ead9f, #4ead9f);
  transform: scale(1.4);
  box-shadow: 0 0 30px rgba(255, 107, 107, 0.8);
  border-color: white;
}

.timeline-bullet::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.timeline-bullet:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

/* Tooltip */
.timeline-bullet .tooltip {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-bullet .tooltip::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right-color: rgba(0, 0, 0, 0.9);
}

.timeline-bullet:hover .tooltip {
  opacity: 1;
}

.day-navigations {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0 2rem 0;
}
@media (max-width: 390px) {
  .day-navigations {
    flex-direction: column;
  }
}
.day-navigations .day-navig {
  width: 200px;
  margin: 0.5rem;
}

.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999999999;
  display: none;
}
.loader .loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}
.loader .loading span {
  width: 8px;
  height: 40px;
  border-radius: 4px;
  display: inline-block;
  margin-left: 20px;
  margin-top: 10px;
  position: relative;
  background: #bb9a6f;
  color: #FFF;
  box-sizing: border-box;
  animation: animloader 0.3s 0.3s linear infinite alternate;
}
.loader .loading span::after, .loader .loading span::before {
  content: "";
  box-sizing: border-box;
  width: 8px;
  height: 40px;
  border-radius: 4px;
  background: #bb9a6f;
  position: absolute;
  bottom: 0;
  left: 20px;
  animation: animloader1 0.3s 0.45s linear infinite alternate;
}
.loader .loading span::before {
  left: -20px;
  animation-delay: 0s;
}

@keyframes animloader {
  0% {
    height: 40px;
    transform: translateY(0);
  }
  100% {
    height: 10px;
    transform: translateY(30px);
  }
}
@keyframes animloader1 {
  0% {
    height: 48px;
  }
  100% {
    height: 4.8px;
  }
}
#gradient {
  width: 100%;
  height: 100%;
  position: fixed;
  display: flex;
  z-index: 999999;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  align-items: center;
  justify-content: center;
}
#gradient div.message {
  width: 500px;
  max-width: 90%;
  height: 200px;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#gradient div.message h1 {
  font-weight: 700;
  color: #bb9a6f;
  font-size: 0.95rem;
  text-align: center;
  line-height: 2rem;
  margin: 0;
  text-shadow: none;
  animation: none;
}
#gradient div.message a {
  position: relative;
  display: inline-block;
  margin: 15px;
  padding: 10px 10px;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-decoration: none;
  color: #bb9a6f;
  background: transparent;
  cursor: pointer;
  transition: ease-out 0.5s;
  border: 2px solid #bb9a6f;
  border-radius: 10px;
  box-shadow: inset 0 0 0 0 #bb9a6f;
  font-weight: 700;
}
#gradient div.message a:hover {
  color: white;
  box-shadow: inset 0 -100px 0 0 #bb9a6f;
}
#gradient div.message a:active {
  transform: scale(0.9);
}/*# sourceMappingURL=style.css.map */