html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  color: white;
  overflow-x: hidden;
}


.heading-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 15px auto 0 auto; 
  padding:0 20px; 
  backdrop-filter: blur(3px);
}

.heading-wrapper {
  display: flex;
  justify-content: center;
}

.heading-container p {
  font-size: 1.1rem;
  text-align: center;
  color:grey;
}

.heading-container h1 {
  color: white;
  text-align: center;
  font-size: 3rem;
  font-weight: 100;
}

.center-page {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
  padding: 25px 16px 5px 16px;
  box-sizing: border-box;
}

.bolt-info {
  padding: 30px;
  flex: 1;
  max-width: 700px;
  min-width: 280px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bolt-swiper {
  width: 100%;
  margin: 0 0 32px 0;
}

.info-heading h3{
  margin-bottom: 35px;
  font-size: 3rem;
}

.info-para h5{
  margin-bottom: 25px;
  font-weight: bold;
  font-size: 1.5rem;
}

.bolt-swiper .info-para {
  text-align: left;
  padding: 20px;
  color: white;
  padding: 22px 0 8px 0px;
}

.swiper-pagination {
  position: relative !important;
  margin: 18px 0 0 0;
  bottom: auto !important;
  left: 0 !important;
}


.swiper-pagination-bullet {
  background: #ced4da !important;
  width: 14px;
  height: 14px;
  opacity: 1;
  border-radius: 50%;
  margin: 0 8px !important;
  transition: width 0.3s, background 0.2s;
}
.swiper-pagination-bullet-active {
  background: #111 !important;
  width: 28px;
  border-radius: 12px !important;
}

.swiper-button-next,
.swiper-button-prev {
  display: none;  
}


/* ---------- Robot Animation ---------- */

.robot-wrapper {
  display: flex;
  justify-content: center;      
  align-items: center;          
}

.robot-circle-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.robot {
  width: 300px;
  height: auto;
  display: block;
  margin: 05px auto;
  filter: drop-shadow(0 0 50px rgba(0, 195, 255, 0.6));
  animation: floatIdle 3s ease-in-out infinite, glowPulse 4s ease-in-out infinite;
  transition: transform 1s ease;
  cursor: pointer;
}

.robot-container img {
  display: block;
  margin: 0 auto;
  padding: 0;
}

/* ---------- Animations ---------- */

@keyframes floatIdle {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes glowPulse {
  0% {
    filter: drop-shadow(0 0 15px rgba(0, 195, 255, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 35px rgba(0, 195, 255, 1));
  }
  100% {
    filter: drop-shadow(0 0 15px rgba(0, 195, 255, 0.4));
  }
}

/* RESPONSIVE: Stack robot + text on mobile */
@media (max-width: 768px) {
  .center-page {
    flex-direction: column;
    align-items: center;
    padding: 0px 3vw 23px 3vw;
    gap: 25px;
  }

  .heading-container h1{
    font-size: 28px;
  }

  .heading-container p{
    font-size: 17px;
  }

  .info-heading h3{
    font-size: 28px;
  }

  .robot-circle-container, .bolt-info {
    width: 350px;
    min-width: 0;
    text-align: center;
  }

  .robot {
    width: 250px;
  }

  .robot-circle-container{
    margin-top: 30px;
  }

  .bolt-info {
    align-items: center;
    text-align: center;
    max-width: 350px;
  }

  .bolt-swiper .info-para {
    text-align: center;
  }
}
