.brt-section {
  /*background-color: #000814;*/
  background-color: #2e0848;
  color: #fff;
  padding: 60px 10%;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.brt-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.brt-content {
  flex: 1 1 55%;
}

.brt-title {
  font-size: 42px;
  font-weight: 700;
  color: #00b4d8;
  margin-bottom: 25px;
}

.brt-info-box {
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: 15px;
  padding: 25px 30px;
  box-shadow: 0 0 15px rgba(0, 180, 216, 0.4);
  transition: 0.3s;
}

.brt-info-box:hover {
  box-shadow: 0 0 25px rgba(0, 180, 216, 0.6);
}

.brt-info-box h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
}

.brt-info-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #d8e3e7;
}

.brt-info-box ul {
  list-style-type: disc;
  padding-left: 25px;
  margin: 15px 0;
}

.brt-info-box li {
  margin: 8px 0;
  color: #caf0f8;
  font-weight: 500;
}

.brt-image-box {
  flex: 1 1 35%;
  text-align: center;
}

.brt-robot {
  width: 350px;
  max-width: 100%;
  height: auto;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ✅ Mobile Responsive Fix */
@media (max-width: 992px) {
  .brt-section {
    padding: 40px 6%;
  }

  .brt-title {
    font-size: 36px;
    text-align: center;
  }

  .brt-info-box {
    padding: 20px;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .brt-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .brt-content {
    flex: 1 1 100%;
  }

  .brt-info-box {
    padding: 20px;
    font-size: 14px;
  }

  .brt-title {
    font-size: 28px;
  }

  .brt-robot {
    width: 300px;
    height: auto;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .brt-title {
    font-size: 24px;
  }

  .brt-info-box {
    padding: 18px;
  }

  .brt-robot {
    width: 250px;
  }
}

.about-section {
  background: radial-gradient(circle at top left, #000814, #001d3d);
  color: #fff;
  padding: 80px 10%;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.about-container {
  max-width: 1300px;
  margin: auto;
}

.about-title {
  text-align: center;
  margin-bottom: 60px;
}

.about-title p {
  font-size: 28px;
  font-weight: 600;
  color: #ccc;
}

.about-title .highlight {
  background: linear-gradient(90deg, #00b4d8, #90e0ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.about-content-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.about-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 191, 255, 0.3);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(0, 191, 255, 0.5);
}

.about-text {
  flex: 1;
  color: #dce3f0;
}

.about-text h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 700;
  position: relative;
}

.about-text h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #00b4d8, #48cae4);
  border-radius: 10px;
}

.about-text p {
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-text .intro {
  font-size: 18px;
  color: #f1f1f1;
}

.about-text .detail {
  color: #c9d6e3;
}

/* Responsive */
@media (max-width: 992px) {
  .about-content-wrap {
    flex-direction: column;
    text-align: center;
  }

  .about-text h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}


.brt-roadmap {
  background: radial-gradient(circle at top, #000015, #000);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.brt-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 60px;
  text-transform: uppercase;
}

.brt-title span {
  color: var(--accent-color);
}

.brt-container {
  max-width: 1200px;
  margin: 0 auto;
}

.brt-phases {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.brt-phase {
  flex: 1 1 calc(25% - 20px);
  background: rgba(255, 255, 255, 0.05);
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  transition: 0.3s ease;
}

.brt-phase:hover {
  transform: translateY(-8px);
  border-color: #ffce00;
  box-shadow: 0 0 25px #ffce00;
}

.brt-phase h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 20px;
}

.brt-phase h3 span {
  color: #00eaff;
  font-weight: 700;
}

.brt-phase ul {
  list-style: none;
  padding: 0;
}

.brt-phase ul li {
  /*color: #f0e68c;*/
  color:white;
  margin-bottom: 10px;
  font-weight: 500;
  text-align: left;
}

@media (max-width: 992px) {
  .brt-phase {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .brt-phase {
    flex: 1 1 100%;
  }
}

.brt-roadmap {
  background: radial-gradient(circle at top, #000015, #000);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.brt-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 60px;
  text-transform: uppercase;
}

.brt-title span {
  color: var(--accent-color);
}

.brt-container {
  max-width: 1200px;
  margin: 0 auto;
}

.brt-phases {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.brt-phase {
  flex: 1 1 calc(25% - 20px);
  background: rgba(255, 255, 255, 0.05);
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 0 20px rgba(0, 234, 255, 0.1);
  transition: 0.3s ease;
}

.brt-phase:hover {
  transform: translateY(-8px);
  border-color: #00eaff;
  box-shadow: 0 0 25px #00eaff;
}

.brt-phase h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 20px;
}

.brt-phase h3 span {
  color: #00eaff;
  font-weight: 700;
}

.brt-phase ul {
  list-style: none;
  padding: 0;
}

.brt-phase ul li {
  /*color: #f0e68c;*/
  color:white;
  margin-bottom: 10px;
  font-weight: 500;
  text-align: left;
}

@media (max-width: 992px) {
  .brt-phase {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .brt-phase {
    flex: 1 1 100%;
  }
}






