* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #f2f4f8;
}

/* Main Wrapper */
.wrapper {
  display: flex;
  min-height: 100vh;
  padding: 15px;
  gap: 5px;
}

/* LEFT PANEL */
.left-panel {
  flex: 2;
  background: #1f2f4f;
  border-radius: 12px;
  color: #fff;
  padding: 40px;
  position: relative;
}

.left-panel {
  background-image: url("../design-1a.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.logo {
  text-align: center;
  margin-top: 150px;
}

.logo img {
  max-width: 250px;
}

.tagline {
  text-align: center;
  margin-top: 25px;
  margin-bottom:30px;
}

.tagline span {
  background: #fff;
  color: #c40000;
  padding: 6px 14px;
  font-weight: 700;
  border-radius: 4px;
  display: inline-block;
  font-size:28px;
  font-family:Times New Roman;
}

.tagline h2 {
  margin-top: 15px;
  font-weight: 500;
   font-family:Times New Roman;
   font-size:30px;
}

.footer-info {
  position: absolute;
  bottom: 30px;
  left: 40px;
  right: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 17px;
}

.footer-info p {
  max-width: 60%;
  line-height: 1.5;
}

.contact {
  text-align: right;
}

.contact div {
  margin-top: 6px;
}

/* RIGHT PANEL */
.right-panel {
  flex: 1;
  background-image: url("../design-2a.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #243a5e; /* fallback color */
  border-radius: 12px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-box {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 380px;
  padding: 25px;
}

.payment-box h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #1f2f4f;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  font-size: 13px;
  color: #555;
  margin-bottom: 5px;
  display: block;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.pay-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.pay-btn {
    background: #b5122b;
    color: #fff;
    padding: 10px 43px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
}

.amount img{
  width:200px;
}
.right-panel{
  display:flex;
  flex-direction:column;
  align-items:center;
}

/* Logo section */
.logo-panel{
  text-align:center;
  margin-bottom:20px;
  color:#fff; /* dark background ke liye */
}

.logo-panel img{
  width:80%;
  margin-bottom:6px;
}

.logo-panel p{
  font-size:14px;
  font-weight:600;
  line-height:1.3;
}

/* Payment box */
.payment-box{
  background:#fff;
 
  padding:20px;
  border-radius:14px;
}



/* RESPONSIVE */
@media(max-width: 900px) {
  .wrapper {
    flex-direction: column;
  }

  .footer-info {
    position: static;
    margin-top: 40px;
  }

  .footer-info p,
  .contact {
    max-width: 100%;
    text-align: left;
    margin-top: 10px;
  }
}

.footer-info {
    color: #fff;
    padding: 25px 21px 12px 110px;
    font-size: 14px;
}

/* Top row */
.footer-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
}

/* Left */
.terms{
  max-width:60%;
  line-height:1.6;
}

/* Right */
.contact{
  text-align:left;
}

.contact a{
  color:#fff;
  text-decoration:none;
}

/* Bottom logo */
.bank-logo{
  margin-top:20px;
}

.bank-logo img{
  max-width:200px;
}

/* Mobile responsive */
@media(max-width:768px){
  .footer-top{
    flex-direction:column;
    gap:15px;
  }

  .contact{
    text-align:left;
  }
}

@media (max-width: 600px) {
.payment-box  {width:100%;}
.terms {max-width:100%;}
.amount img{
  width:100%;
}
.footer-info {
    color: #fff;
    padding: 4px 0px;
    font-size: 14px;
}
.logo {
    text-align: center;
    margin-top: 0px;
}
.right-panel {padding: 10px;}
.bank-logo img {
    max-width: 100%;
}
.pay-btn {
   
    padding: 10px 23px;
   
    font-size: 15px;
    font-weight: 700;
}
}