.aw-section{
  position:relative;
  background:#000;
  padding:80px 20px;
  display:flex;
  justify-content:center;
  align-items:center;
  overflow:hidden;
}
.aw-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px 60px;
  z-index:2;
}
.aw-card{
  text-align:center;
}
.aw-card img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:12px;
  box-shadow:0 8px 24px rgba(0,0,0,0.6);
}
.aw-caption{
  margin-top:10px;
  font-weight:bold;
  color:#fff;
}
.aw-portrait-wrap{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  z-index:3;
}
.aw-portrait{
  width:280px;
  border-radius:8px;
  box-shadow:0 12px 30px rgba(0,0,0,0.7);
  position:relative;
  z-index:3;
}
.aw-ring{
  position:absolute;
  width:400px;
  height:400px;
  border:2px dashed #2bb59b;
  border-radius:50%;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  animation:spin 18s linear infinite;
  z-index:2;
}
@keyframes spin{from{transform:translate(-50%,-50%) rotate(0);}to{transform:translate(-50%,-50%) rotate(360deg);}}
.aw-bubbles{position:absolute;inset:0;z-index:1;}
.bubble{position:absolute;border-radius:50%;background:rgba(255,255,255,0.1);}
.b1{width:60px;height:60px;top:20px;right:20px;animation:floaty 6s ease-in-out infinite;}
.b2{width:40px;height:40px;bottom:60px;left:40px;animation:floaty 8s ease-in-out infinite;}
.b3{width:30px;height:30px;top:120px;left:200px;animation:floaty 10s ease-in-out infinite;}
@keyframes floaty{0%,100%{transform:translateY(0);}50%{transform:translateY(-20px);}}
@media(max-width:900px){
  .aw-grid{grid-template-columns:1fr;gap:20px;margin-top:280px;}
  .aw-portrait{width:200px;}
  .aw-ring{width:280px;height:280px;}
}
