<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Premium UI</title>
<style>
.ui-section *{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Poppins', sans-serif;
}
.ui-section{
  background: linear-gradient(135deg,#1e293b,#0f172a);
  padding:50px 20px;
  color:#fff;
}
/* GRID */
.ui-wrapper{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap:20px;
}
/* LEFT CARD */
.ui-left{
  grid-row: span 2;
  background: linear-gradient(135deg,#06b6d4,#0ea5e9);
  border-radius:30px;
  padding:20px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
/* IMAGE FIX (PERFECT FIT) */
.ui-left img{
  width:100%;
  height:100%;
  max-height:320px;
  object-fit:contain; /* FIXED */
  border-radius:20px;
  z-index:2;
}
/* GLOW EFFECT */
.ui-left::before{
  content:"";
  position:absolute;
  width:250px;
  height:250px;
  background:rgba(255,255,255,0.15);
  border-radius:50%;
  top:-60px;
  left:-60px;
}
/* USERS */
.ui-users{
  position:absolute;
  bottom:15px;
  left:15px;
  background:#22c55e;
  border-radius:20px;
  padding:15px;
  width:85%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:3;
}
.ui-users img{
  width:30px;
  height:30px;
  border-radius:50%;
  margin-left:-8px;
  border:2px solid #22c55e;
}
/* TEXT CARD */
.ui-text{
  background:#475569;
  border-radius:30px;
  padding:30px;
  position:relative;
  box-shadow:0 10px 30px rgba(0,0,0,0.3);
}
.ui-text h2{
  font-size:28px;
  line-height:1.4;
  color:#fff; /* CHANGED TO WHITE */
}
/* ICON */
.ui-icon{
  position:absolute;
  top:15px;
  right:15px;
  background:#0f172a;
  padding:10px;
  border-radius:12px;
}
/* YELLOW CARD */
.ui-yellow{
  background:#facc15;
  color:#000;
  border-radius:30px;
  padding:25px;
  box-shadow:0 10px 30px rgba(0,0,0,0.2);
}
/* BUTTON */
.ui-btn{
  background:#000;
  color:#fff;
  padding:10px 18px;
  border-radius:25px;
  display:inline-block;
  margin:15px 0;
  text-decoration:none;
  transition:0.3s;
}
.ui-btn:hover{
  background:#1e293b;
}
/* SERVICES */
.ui-services{
  background:#475569;
  border-radius:30px;
  padding:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.3);
}
.ui-services h3{
  color:#fff; /* CHANGED TO WHITE */
}
.ui-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:10px;
}
.ui-tag{
  padding:6px 14px;
  border-radius:20px;
  font-size:12px;
  background:#1e293b;
  transition:0.3s;
}
.ui-tag:hover{
  background:#38bdf8;
}
/* CHART */
.ui-chart{
  background:#020617;
  border-radius:30px;
  padding:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.3);
}
.ui-chart h3{
  color:#fff;
}
/* BARS */
.ui-bars{
  display:flex;
  align-items:flex-end;
  gap:15px;
  height:140px;
  margin-top:20px;
}
.ui-bar{
  width:35px;
  border-radius:10px;
  transition:0.3s;
}
.ui-bar:hover{
  transform:scaleY(1.1);
}
.b1{height:60%; background:#38bdf8;}
.b2{height:80%; background:#facc15;}
.b3{height:50%; background:#38bdf8;}
.b4{height:90%; background:#38bdf8;}
/* RESPONSIVE */
@media(max-width:900px){
  .ui-wrapper{
    grid-template-columns:1fr;
  }
  .ui-left{
    grid-row: span 1;
  }
}
</style>
</head>
<body>
<section>
  <!-- LEFT -->
    <img decoding="async" src="https://images.unsplash.com/photo-1527980965255-d3b416303d12" alt="boy" title="Elementor #9852">
      <b>4200+</b> New Users
        <img decoding="async" src="https://i.pravatar.cc/30?img=12" alt="30?img=12" title="Elementor #9852">
        <img decoding="async" src="https://i.pravatar.cc/30?img=13" alt="30?img=13" title="Elementor #9852">
        <img decoding="async" src="https://i.pravatar.cc/30?img=14" alt="30?img=14" title="Elementor #9852">
  <!-- TEXT -->
    <h2>Digital Solutions tailored for your Success</h2>
  <!-- YELLOW -->
    <h3>Step into Digital Future</h3>
    <p>Download the App now and elevate your digital experience instantly.</p>
    <a href="#">Download App</a>
      41K+ Downloads
      27K+ Reviews
  <!-- SERVICES -->
    <h3>Our Services</h3>
      SEO
      Design
      Marketing
      Analytics
      Email
      Automation
  <!-- CHART -->
    <h3>Increase in Profits</h3>
</section>
</body>
</html>