.speaker-contacts-bottom {
  border-top: 1px solid rgba(43,140,255,0.13);
  border-bottom: 1px solid rgba(43,140,255,0.13);
  margin-bottom: 0;
}
.speaker-contact-box {
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  padding: 18px 24px;
  margin: 8px 0;
  box-shadow: 0 2px 12px rgba(43,140,255,0.07);
  min-width: 270px;
  max-width: 420px;
}
.speaker-contact-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #2B8CFF;
  background: #fff;
}
.speaker-contact-name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.05rem;
}
.speaker-contact-role {
  color: #2B8CFF;
  font-size: 0.92rem;
  font-weight: 500;
}
.speaker-contact-phone {
  color: #fff;
  font-size: 0.98rem;
  font-weight: 500;
}
.speaker-contact-phone i {
  color: #2B8CFF;
  margin-right: 4px;
}
.speaker-phone-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.speaker-phone-link:hover {
  color: #2B8CFF;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .speaker-contact-box {
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left;
    padding: 16px 10px;
  }
  .speaker-contact-img {
    margin-bottom: 10px;
    margin-right: 0 !important;
  }
}
@keyframes wave-animation {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 1200px 0, 0 0;
  }
}

body {
  position: relative;
  background: linear-gradient(140deg, #0E0E0E 0%, #1C1C1C 100%);
  font-family: 'Inter', sans-serif !important;
  font-weight: 400;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='2400' height='1000' viewBox='0 0 2400 1000' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cfilter id='glow'%3E%3CfeGaussianBlur stdDeviation='3' result='coloredBlur'/%3E%3CfeMerge%3E%3CfeMergeNode in='coloredBlur'/%3E%3CfeMergeNode in='SourceGraphic'/%3E%3C/feMerge%3E%3C/filter%3E%3C/defs%3E%3Cpath d='M0 100 Q 300 50, 600 100 T 1200 100 T 1800 100 T 2400 100' stroke='rgba(43, 140, 255, 0.3)' stroke-width='2' fill='none' filter='url(%23glow)'/%3E%3Cpath d='M0 180 Q 300 130, 600 180 T 1200 180 T 1800 180 T 2400 180' stroke='rgba(43, 140, 255, 0.25)' stroke-width='2' fill='none' filter='url(%23glow)'/%3E%3Cpath d='M0 260 Q 300 210, 600 260 T 1200 260 T 1800 260 T 2400 260' stroke='rgba(43, 140, 255, 0.35)' stroke-width='2' fill='none' filter='url(%23glow)'/%3E%3Cpath d='M0 340 Q 300 290, 600 340 T 1200 340 T 1800 340 T 2400 340' stroke='rgba(43, 140, 255, 0.3)' stroke-width='2' fill='none' filter='url(%23glow)'/%3E%3Cpath d='M0 550 Q 300 500, 600 550 T 1200 550 T 1800 550 T 2400 550' stroke='rgba(43, 140, 255, 0.35)' stroke-width='2' fill='none' filter='url(%23glow)'/%3E%3Cpath d='M0 630 Q 300 580, 600 630 T 1200 630 T 1800 630 T 2400 630' stroke='rgba(43, 140, 255, 0.3)' stroke-width='2' fill='none' filter='url(%23glow)'/%3E%3Cpath d='M0 710 Q 300 660, 600 710 T 1200 710 T 1800 710 T 2400 710' stroke='rgba(43, 140, 255, 0.4)' stroke-width='2' fill='none' filter='url(%23glow)'/%3E%3Cpath d='M0 790 Q 300 740, 600 790 T 1200 790 T 1800 790 T 2400 790' stroke='rgba(43, 140, 255, 0.25)' stroke-width='2' fill='none' filter='url(%23glow)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  animation: wave-animation 30s linear infinite;
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.header {
  animation: fadeInDown 1s ease-out;
}

.logo {
  max-width: 180px;
  height: auto;
  transition: all 0.3s ease;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.club-section{
  color: #FFFFFF;
}

.hero-section {
  color: #FFFFFF;
  animation: fadeInScale 1.2s ease-out 0.3s backwards;
}

.hero-section h1 {
  animation: slideInLeft 1s ease-out 0.6s backwards;
}

.hero-section h4 {
  animation: slideInLeft 1s ease-out 0.8s backwards;
}

.hero-section .slider-container {
  animation: slideInUp 1s ease-out 1s backwards;
}

.club-section .container {
  border-radius: 12px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url(/assets/images/cto-club-banner.webp);
  background-position: center 30%;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}

.hero-section .container {
  border-radius: 12px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url(/assets/images/cto-banner.webp);
  background-position: center 30%;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}

/* Mobile Responsive для Hero Section */
@media (max-width: 768px) {
  .logo {
    max-width: 220px;
  }

  .club-section .container {
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85)), url(/assets/images/cto-club-banner.webp);
    background-position: center center;
  }
  
  .hero-section .container {
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85)), url(/assets/images/cto-banner.webp);
    background-position: center center;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section h4 {
    font-size: 1.1rem;
  }
  
  .hero-section .row {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 576px) {
  .logo {
    max-width: 240px;
  }

  .hero-section .container {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url(/assets/images/cto-banner.webp);
    padding-left: 0;
    padding-right: 0;
  }
  
  .hero-section h1 {
    font-size: 1.75rem;
    padding: 0 15px;
  }
  
  .hero-section h4 {
    font-size: 1rem;
    padding: 0 15px;
  }
}

/* Agenda & Speakers Section */
.agenda-speakers-section {
  padding: 80px 0;
  opacity: 1;
  transform: translateY(0);
}

.speaker-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(43, 140, 255, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
}

.speaker-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(43, 140, 255, 0.3);
  border-color: rgba(43, 140, 255, 0.6);
}

.speaker-image-placeholder {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(43, 140, 255, 0.2), rgba(43, 140, 255, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(43, 140, 255, 0.3);
  transition: all 0.3s ease;
}

.speaker-card:hover .speaker-image-placeholder {
  border-color: #2B8CFF;
  box-shadow: 0 0 20px rgba(43, 140, 255, 0.5);
}

.speaker-image-placeholder i {
  font-size: 60px;
  color: #2B8CFF;
}

.speaker-name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.speaker-title {
  color: #2B8CFF;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.speaker-bio {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
  flex-grow: 1;
}

/* Mini Speaker Cards */
.speaker-card-mini {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 15px 10px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(43, 140, 255, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.speaker-card-mini .btn-read-more {
    margin-top: auto;
    display: inline-block;
    width: auto;
    min-width: unset;
    max-width: 180px;
    align-self: center;
}

.speaker-card-mini:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(43, 140, 255, 0.2);
  border-color: rgba(43, 140, 255, 0.4);
}

.speaker-image-mini {
  width: 90px;
  height: 90px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(43, 140, 255, 0.2), rgba(43, 140, 255, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(43, 140, 255, 0.3);
}

.speaker-image-mini i {
  font-size: 30px;
  color: #2B8CFF;
}

.speaker-image-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.speaker-name-mini {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
  font-size: 0.8rem;
  line-height: 1.2;
}

.speaker-title-mini {
  color: #2B8CFF;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.65rem;
  line-height: 1.2;
}

.btn-read-more {
  background: transparent;
  border: 1px solid #2B8CFF;
  color: #2B8CFF;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-read-more:hover {
  background: #2B8CFF;
  color: #fff;
  transform: scale(1.05);
}

/* Speaker Modal */
.speaker-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  animation: fadeIn 0.3s ease;
  backdrop-filter: blur(5px);
}

.speaker-modal-content {
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(10px);
  margin: 5% auto;
  padding: 45px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideDown 0.4s ease;
  scrollbar-width: thin;
  scrollbar-color: #2B8CFF rgba(255, 255, 255, 0.1);
}

/* Custom Scrollbar for Webkit browsers (Chrome, Safari, Edge) */
.speaker-modal-content::-webkit-scrollbar {
  width: 8px;
}

.speaker-modal-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.speaker-modal-content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2B8CFF, #1a6dd8);
  border-radius: 10px;
  border: 2px solid rgba(20, 20, 20, 0.95);
}

.speaker-modal-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #3d9cff, #2B8CFF);
}

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

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

.speaker-modal-close {
  color: rgba(255, 255, 255, 0.6);
  float: right;
  font-size: 32px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
}

.speaker-modal-close:hover {
  color: rgba(255, 255, 255, 0.95);
  transform: rotate(90deg);
}

#modalBody h3 {
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.4rem;
  font-weight: 600;
}

#modalBody h4 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  font-weight: 400;
}

#modalBody p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 0.95rem;
  text-align: justify;
}

/* Timeline Styles */
.agenda-timeline {
  margin-top: 60px;
}

.agenda-timeline h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}

.timeline-item {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid #2B8CFF;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  background: rgba(43, 140, 255, 0.1);
  transform: translateX(5px);
}

.timeline-time {
  font-weight: 700;
  color: #2B8CFF;
  min-width: 140px;
  font-size: 1.1rem;
}

.timeline-content h5 {
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.4;
}

.timeline-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.95rem;
}

.timeline-content strong {
  color: #2B8CFF;
}

/* Demo Badge */
.demo-badge {
  display: inline-block;
  background: linear-gradient(135deg, #2B8CFF, #1a6dd8);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  vertical-align: middle;
  box-shadow: 0 2px 8px rgba(43, 140, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  line-height: 1;
}

.demo-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(43, 140, 255, 0.35);
}

/* Expand Button */
.btn-expand {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-top: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-expand:hover {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-expand.expanded {
  background: rgba(43, 140, 255, 0.1);
  border-color: #2B8CFF;
  color: #2B8CFF;
}

/* Expanded Content */
.expanded-content {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.expanded-content p {
  margin-bottom: 12px;
}

.expanded-content em {
  color: rgba(255, 255, 255, 0.9);
  font-style: normal;
  font-weight: 500;
}

@media (max-width: 768px) {
  .timeline-item {
    flex-direction: column;
    gap: 10px;
  }
  
  .timeline-time {
    min-width: auto;
  }
  
  .speaker-card {
    margin-bottom: 20px;
  }
  
  .speaker-modal-content {
    padding: 30px 20px;
    margin: 10% auto;
  }
  
  #modalBody h3 {
    font-size: 1.2rem;
  }
  
  #modalBody h4 {
    font-size: 0.85rem;
  }
}

/* Vision Section Animations */
.vision-section {
  opacity: 1;
  transform: translateY(0);
}

.vision-item {
  padding: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.vision-item:hover {
  transform: scale(1.15);
}

.vision-item i {
  transition: all 0.3s ease;
}

.vision-item:hover i {
  transform: scale(1.2);
  color: #2B8CFF;
}

/* Who Attends Section Animations */
.attends-section {
  opacity: 1;
  transform: translateY(0);
}

.attends-card {
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.attends-card i {
  transition: all 0.3s ease;
}

.attends-card:hover i {
  color: #2B8CFF;
  transform: scale(1.2) rotate(10deg);
}

/* Participation Section Animations */
.participation-section {
  opacity: 1;
  transform: translateY(0);
}

.participation-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(43, 140, 255, 0.3);
  border-radius: 15px;
  padding: 40px 30px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.participation-card:hover {
  border-color: rgba(43, 140, 255, 0.6);
  box-shadow: 0 10px 40px rgba(43, 140, 255, 0.2);
}

.participation-left h2 {
  font-size: 3.5rem;
  color: #2B8CFF;
  font-weight: 800;
  margin-bottom: 0;
}

.participation-right {
  text-align: center;
}

.partner-box {
  background: rgba(43, 140, 255, 0.1);
  border-radius: 10px;
  padding: 20px 15px;
  transition: all 0.3s ease;
}

.partner-box:hover {
  background: rgba(43, 140, 255, 0.15);
  transform: scale(1.02);
}

.voucher-benefits .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.voucher-benefits .benefit-item i {
  flex-shrink: 0;
  margin-top: 2px;
}

.voucher-benefits .benefit-item span {
  flex: 1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .participation-card {
    padding: 30px 20px;
  }
  
  .participation-left h2 {
    font-size: 2.5rem;
  }
  
  .participation-left,
  .participation-right {
    margin-bottom: 20px;
  }
}

.cta-button {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #2B8CFF;
  border: none;
  box-shadow: 0 4px 15px rgba(43, 140, 255, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(43, 140, 255, 0.5);
  background: #1a7de8;
}

.cta-button:active {
  transform: translateY(-1px) scale(1.02);
}

.slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  background-color: #fafafa;
  border-radius: 0;
}

.slider-container .slider {
  display: flex;
  gap: 100px;
  align-items: center;
  list-style: none;
  margin: 0
}

.slider-container .slider__slide {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease-in-out;
  -moz-filter: grayscale(100);
  filter: grayscale(100);
}

.slider-container .slider__slide:hover {
  filter: none;
  transform: scale(1.2);
  -webkit-filter: none;
  -moz-filter: none;
  cursor: pointer
}

.slider-container .slider .slider__slide .slider__content div img {
  width: 100px !important;
  height: auto !important;
  max-width: 100px !important;
  max-height: 60px !important;
  object-fit: contain !important;
  transition: all .3s ease-in-out;
  -moz-filter: grayscale(100);
  filter: grayscale(100);
}

.slider {
  --slider-inner-width: 1200px;
  --slider-speed: 20s
}

@-webkit-keyframes scroll {
  0% {
    transform: translateX(-5%)
  }

  100% {
    transform: translateX(calc(0px - var(--slider-inner-width) - 5%))
  }
}

@keyframes scroll {
  0% {
    transform: translateX(-5%)
  }

  100% {
    transform: translateX(calc(0px - var(--slider-inner-width) - 5%))
  }
}

.slider {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-animation: scroll linear infinite var(--slider-speed);
  animation: scroll linear infinite var(--slider-speed);
  width: calc(2*var(--slider-inner-width));
  transition: -webkit-animation-play-state ease .3s;
  transition: animation-play-state ease .3s;
  transition: animation-play-state ease .3s, -webkit-animation-play-state ease .3s
}

.slider:hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused
}

.slider-container .slider__slide:hover .slider__content img {
  filter: none;
}

h4 {
  letter-spacing: 1.5px;
}

h5 {
  letter-spacing: 2px;
}

i {
  color: #fff;
}

.btn-primary {
  padding: 12px 28px;
  font-size: 1.2rem;
}


/* Footer Animations */
.footer-section {
  opacity: 1;
  transform: translateY(0);
}

.footer-link {
  transition: all 0.3s ease;
  position: relative;
}

.footer-link:hover {
  color: #2B8CFF !important;
  transform: translateX(3px);
}

.linkedin-icon {
  display: inline-block;
  transition: all 0.3s ease;
}

.linkedin-icon:hover {
  color: #2B8CFF !important;
  transform: scale(1.2) rotate(5deg);
}