*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Plus Jakarta Sans',sans-serif;
  background:#f5faf9;
  color:#1f1f1f;
}

.app-shell{
  min-height:100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(13,148,136,.08), transparent 40%),
    radial-gradient(circle at 88% 92%, rgba(20,184,166,.07), transparent 36%),
    #f5faf9;
}

.hero-section{
  position:relative;
  min-height:620px;
  background-image:url("https://ik.imagekit.io/64bqwzwqq/RSUD%20dr.%20Zubir%20Mahmud%20Idi.png");
  background-size:cover;
  background-position:center;
  overflow:hidden;
}

.hero-overlay,
.header-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(255,255,255,0.25) 0%,
    rgba(255,255,255,0.18) 100%
  );
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:1200px;
  margin:auto;
  padding:52px 20px 64px;
  text-align:center;
}

.hero-subtitle{
  margin-top:18px;
  font-size:21px;
  color:#374151;
  font-weight:500;
  letter-spacing:.2px;
}

.dashboard-section{
  max-width:none;
  width:100%;
  margin:-28px auto 0;
  padding:0 24px 60px;
}

.app-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.app-card{
  display:flex;
  flex-direction:column;
  background:rgba(255,255,255,.86);
  border:1px solid rgba(13,148,136,.18);
  border-radius:24px;
  padding:24px;
  min-height:250px;
  backdrop-filter:blur(8px);
  transition:.25s ease;
  box-shadow:0 12px 30px rgba(15,23,42,.1);
}

.app-card:hover{
  transform:translateY(-5px);
  border-color:rgba(13,148,136,.4);
  box-shadow:0 16px 36px rgba(13,148,136,.18);
}

.icon-wrap{
  width:68px;
  height:68px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:10px;
  background:rgba(13,148,136,.1);
  color:#0f766e;
}

.icon-wrap svg{
  width:32px;
  height:32px;
}

.icon-image{
  width:56px;
  height:56px;
  object-fit:contain;
}

.app-title{
  font-size:23px;
  font-weight:800;
  color:#0f172a;
  margin-bottom:8px;
}

.app-desc{
  color:#475569;
  line-height:1.65;
  font-size:15px;
}

.open-btn{
  margin-top:auto;
  width:100%;
  border:none;
  border-radius:16px;
  padding:14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:linear-gradient(120deg, rgba(13,148,136,.16), rgba(20,184,166,.22));
  border:1px solid rgba(13,148,136,.35);
  color:#0f766e;
  text-decoration:none;
  font-weight:700;
  cursor:pointer;
  transition:.2s ease;
}

.open-btn:hover{
  transform:translateY(-2px);
  background:linear-gradient(120deg, rgba(13,148,136,.24), rgba(20,184,166,.3));
  text-decoration:none;
  box-shadow:0 8px 20px rgba(13,148,136,.14);
}

.footer{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-top:18px;
  padding:24px;
  color:#0f172a;
}

.footer::before{
  content:"";
  position:absolute;
  top:0;
  left:24px;
  right:24px;
  border-top:1px solid rgba(15,23,42,.25);
}

.footer-left,
.footer-right{
  margin:0;
  color:#334155;
  font-size:14px;
  font-weight:600;
}

@media(max-width:1100px){
  .app-grid{grid-template-columns:repeat(3,1fr);}
}

@media(max-width:860px){
  .app-grid{grid-template-columns:repeat(2,1fr);}
  .hero-subtitle{font-size:19px;}
}

@media(max-width:560px){
  .hero-section{min-height:560px;}
  .app-grid{grid-template-columns:1fr;}
  .hero-content{padding:42px 16px 52px;}
  .hero-subtitle{font-size:17px;}
  .footer{flex-direction:column;align-items:flex-start;}
}
