
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Inter,sans-serif;
}

body{
  background:#f3f3f3;
}

.section{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:80px;
  padding:80px 40px;
}

/* LEFT */
.left{
  width:320px;
}

.left h2{
  font-size:28px;
  margin-bottom:20px;
}

.left p{
  color:#555;
  line-height:1.7;
  margin-bottom:25px;
}

.btn{
  background:#0a1033;
  color:#fff;
  padding:14px 22px;
  border:none;
  border-radius:10px;
  cursor:pointer;
  transition:.3s;
}

.btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

/* PHONE */
.phone{
  width:380px;
  height:800px;
  background:#eee;
  border-radius:40px;
  /* padding:20px; */
  box-shadow:0 20px 40px rgba(0,0,0,0.15);
  position:relative;
  overflow:hidden;
}

.phone2{
  width:320px;
  height:600px;
  background:#eee;
  border-radius:40px;
  box-shadow:0 20px 40px rgba(0,0,0,0.15);
  position:relative;
  overflow:hidden;
  background-image: url("images/sos.jpeg");
  background-size: cover;
  background-repeat: no-repeat;

}
/* CAROUSEL */
.carousel{
  display:flex;
  width:100%;
  height:100%;
  transition:transform .6s ease;
}

.slide{
  min-width:100%;
  padding:20px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:20px;
  animation:fade .6s;
  background-image: url("images/WhatsApp Image.jpeg");

  background-size: cover;
  background-repeat: no-repeat;
}

/* .slide2{
  min-width:100%;
  padding:20px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:20px;
  animation:fade .6s;
  background-image: url("images/WhatsApp Image.jpeg");

  background-size: contain;
}
.slide3{
  min-width:100%;
  padding:20px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:20px;
  animation:fade .6s;
  background-image: url("images/WhatsApp Image.jpeg");

  background-size: contain;
} */

@keyframes fade{
  from{opacity:0; transform:translateX(30px);}
  to{opacity:1; transform:translateX(0);}
}

.balance{
  text-align:right;
  font-weight:600;
}

.pay-title{
  font-size:22px;
  font-weight:800;
  margin-top:80px;
}

.option{
  display:flex;
  align-items:center;
  gap:15px;
  padding:14px;
  border-radius:12px;
  background:#fff;
  transition:.3s;
  cursor:pointer;
}

.option:hover{
  transform:translateX(8px);
  box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

/* ARROWS */
.arrows{
  position:absolute;
  bottom:20px;
  width:100%;
  display:flex;
  justify-content:space-between;
  padding:0 20px;
}

.arrow{
  width:40px;
  height:40px;
  background:#111;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  cursor:pointer;
  transition:.3s;
}

.arrow:hover{
  transform:scale(1.1);
}

/* RIGHT */
.right{
  width:320px;
}

.block{
  margin-bottom:50px;
}

.block h3{
  margin-bottom:10px;
}

.block p{
  color:#555;
  line-height:1.6;
}

.learn{
  color:#ff4d00;
  margin-top:10px;
  display:inline-block;
  font-weight:600;
  cursor:pointer;
  transition:.3s;
  text-decoration: none;
}

.learn:hover{
  transform:translateX(5px);
}

@media(max-width:1000px){
.section{
  flex-direction:column;
}
}
