/* GLOBAL RESET */
*{box-sizing:border-box;margin:0;padding:0}
body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg,#4b00ff 0%,#00bfff 100%);
  color:#102a43;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  -webkit-font-feature-settings: "liga" 1;
}

/* HEADER */
.header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 22px;
  background:linear-gradient(90deg,#4b00ff,#8e2de2);
  box-shadow:0 4px 18px rgba(11,20,40,0.08);
}
.logo-box{display:flex;align-items:center;gap:12px}
.logo{height:70px;width:auto;display:block}
.brand{color:#fff;font-size:22px;font-weight:700}
.login-btn{background:#fff;color:#4b00ff;padding:10px 16px;border-radius:10px;font-weight:700;text-decoration:none}

/* HERO */
.hero {text-align:center;padding:40px 16px;color:#fff}
.hero h1{font-size:36px;font-weight:800;margin-bottom:8px}
.hero p{font-size:18px;color:#e8f6ff}

/* CARD */
.card{
  background: rgba(255,255,255,0.98);
  width:90%;
  max-width:1100px;
  margin:18px auto;
  padding:22px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(11,20,40,0.06);
}

/* SECTION TITLE */
.sec-title{
  font-size:26px;
  font-weight:800;
  margin-bottom:12px;
  background:linear-gradient(90deg,#4b00ff,#8e2de2);
  -webkit-background-clip:text;
  color:transparent;
}

/* BASE text inside cards */
.card p{font-size:15.5px;color:#253245;line-height:1.6}
.card ul{margin:12px 0;padding-left:20px}
.card ul li{margin:8px 0}

/* ===== ICON + TEXT LAYOUT (FIXED) =====
   Use grid so icon and text always align properly.
   Applies to .kmsms-item and .kp blocks.
*/
.kmsms-list{display:flex;flex-direction:column;gap:12px}
.kmsms-item,
.kp {
  display:grid;
  grid-template-columns:56px 1fr; /* icon col (fixed) + content */
  gap:14px;
  align-items:start;
  padding:12px 14px;
  border-radius:10px;
  background:#ffffff;
  box-shadow:0 8px 20px rgba(11,20,40,0.04);
  transition:transform .18s ease,box-shadow .18s ease;
  overflow:visible;
}
.kmsms-item:hover,
.kp:hover{transform:translateY(-4px);box-shadow:0 16px 36px rgba(11,20,40,0.08)}

/* Icon circle - slightly larger for better visual */
.icon{
  width:56px;height:56px;border-radius:12px;display:flex;align-items:center;justify-content:center;
  color:#fff;font-weight:800;flex:0 0 56px;font-size:20px;
  line-height:1;
  box-shadow:0 8px 18px rgba(0,0,0,0.06);
}
.g1{background:linear-gradient(135deg,#4b00ff,#8e2de2)}
.g2{background:linear-gradient(135deg,#06b6d4,#00b3a6)}
.g3{background:linear-gradient(135deg,#ff7a00,#ff006e)}

/* TEXT CONTENT: keep inline/flow text (no forced block) */
.kp-text,
.kmsms-item .kp-text {
  line-height:1.25;
  color:#0f172a;
}
.kp-text strong,
.kmsms-item .kp-text strong { /* keep strong inline so icon stays left */
  display:inline;
  font-size:17px;
  color:#0f172a;
}
.kp-text .sub,
.kmsms-item .kp-text .sub{
  display:block;
  margin-top:6px;
  color:#556680;
  font-size:14px;
  line-height:1.45;
}

/* If content has multiple lines, grid keeps icon vertically top-aligned */
.kmsms-item > .icon,
.kp > .icon { align-self:start; }

/* adjust left border highlight to show variant color */
.kmsms-item.g1{border-left:6px solid rgba(75,0,255,0.12)}
.kmsms-item.g2{border-left:6px solid rgba(6,182,212,0.12)}
.kmsms-item.g3{border-left:6px solid rgba(255,122,0,0.12)}

/* Specific small tweaks for Why Choose list (so bullets visible) */
#why .kmsms-item .kp-text strong{font-size:18px}

/* Make list icons slightly smaller on narrow screens */
@media(max-width:760px){
  .hero h1{font-size:28px}
  .logo{height:60px}
  .icon{width:44px;height:44px;font-size:16px;border-radius:10px;flex:0 0 44px}
  .kmsms-item,.kp{grid-template-columns:44px 1fr;padding:10px}
  .card{padding:16px;margin:12px}
  .sec-title{font-size:20px}
}
