.conference-banner {
  position: relative;
  height: 50vh;
  background: linear-gradient(
              to right,
              rgba(0, 0, 0, 0.750),
              rgba(0, 0, 0, 0.854)
            ),
            url('../uploads/Pages/Regis/RegistrationBanner.jpg') no-repeat center center/cover;
}

.banner-content {
  padding-left: 80px;
  position: relative;
  z-index: 2;
}

.banner-title {
  font-family: "Libre Franklin", sans-serif;
  font-size: 70px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 30px;
  margin-left: 110px;
}
.reg-row {
  gap: 30px;
}
.banner-content {
  padding-left: 0;
}

.banner-title {
  font-size: 70px;
  margin-left: 80px;
}

/* Responsive Banner */
@media (max-width: 992px) {
  .banner-title {
    font-size: 50px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .conference-banner {
    height: 50vh;
  }

  .banner-title {
    font-size: 34px;
  }
}

/* Remove fixed left push */



/* Colors */
:root {
  --main: #1F346C;
  --blue: #155AA6;
}

/* Info bar */
.info-bar {
  border: 1px solid #ddd;
  color: var(--blue);
  font-weight: 500;
  font-size: 20px;
  padding: 12px 20px;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .info-bar {
    font-size: 14px;
    padding: 10px;
  }
}

/* Row spacing (tight layout) */
.reg-row {
  gap: 50px; /* controls spacing between elements */
}
.num {
  font-size: 60px;
  padding-left: 0;
}

/* Number */
.num {
  font-size: 70px;
  font-weight: 700;
  color: var(--main);
  padding-left: 80px;
}

/* Image */
.reg-img {
  width: 250px;
  height: auto;
  border-radius: 6px;
}

/* Title */
.title {
  color: #1F346C;
  font-weight: 600;
  font-size: 24px;
}

.desc {
  color: #155AA6;
  line-height: 1.8;
  font-size: 16px;
}

.register-btn {
  background-color: #155AA6 !important;
  color: #fff !important;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  
}

.register-btn:hover {
  background-color: #0b376a !important;
  color: #fff !important;
}

.price {
  color: #000;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
}
.btn-col {
  padding-right: 10px;   /* 🔥 reduce right space */
}

.btn-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn-box {
  transform: translateX(-10px);
}
/* Tablet */
@media (max-width: 992px) {
  .reg-row {
    gap: 20px;
  }

  .reg-img {
    width: 200px;
  }

  .title {
    font-size: 20px;
  }
}

/* Mobile Layout */
@media (max-width: 768px) {
  .reg-row {
    flex-direction: column;
    text-align: center;
  }

  .reg-img {
    width: 100%;
    max-width: 250px;
  }

  .btn-col {
    width: 100%;
    text-align: center;
    padding-right: 0;
  }

  .btn-box {
    transform: none;
  }

  .num {
    font-size: 40px;
  }
}
.registration-box-wrapper {
  position: relative;
  z-index: 10;
  margin-bottom: -100px;
  width: 100%;
  display: flex;
  justify-content: center; 
}

.registration-box {
  background-color: #155AA6;
  border-radius: 20px;
  padding: 40px 35px;
  color: #fff;
  max-width: 1100px; 
  width: 95%; 
  margin: 0 auto !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.reg-left h2 {
  font-weight: 600;         
  font-size: 42px;          
  line-height: 1.1;
  letter-spacing: -1px;
} 

.registration-box.row {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

.reg-right img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
}
/* Responsive */
@media (max-width: 992px) {
  .registration-box {
    padding: 30px 20px;
  }

  .reg-left h2 {
    font-size: 28px;
  }

  .reg-right img {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 768px) {
  .registration-box {
    text-align: center;
  }

  .reg-left,
  .reg-center,
  .reg-right {
    margin-bottom: 20px;
  }

  .reg-right img {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .reg-center h4 {
    font-size: 14px;
  }

  .reg-center p {
    font-size: 13px;
  }
}