/* =========================
   SECTION
========================= */
.led-monitor {
  padding: 50px 0;
  background: linear-gradient(to right, #f9fbff, #eef5ff);
}

/* HEADER */
.led-title {
  font-size: 34px;
  font-weight: 700;
  color: #222;
  position: relative;
}

.led-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #007bff;
  position: absolute;
  left: 0;
  bottom: -8px;
}

/* BUTTON */
.led-btn {
  background: linear-gradient(45deg, #007bff, #00c6ff);
  color: #fff;
  border-radius: 6px;
  transition: 0.3s;
}

.led-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(45deg, #0056b3, #0096c7);
}

/* TEXT */
.led-text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

/* IMAGE */
.led-image {
  float: right;
  margin-right: 5px;
  width: 500px;
  border-radius: 10px;
  transition: 0.4s;
}

.led-image:hover {
  transform: scale(1.03);
}

.led-subtitle {
  display: block;
  margin-top: 15px;
  font-size: 18px;
  color: #040f66;
}

/* LIST */
.led-list {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.led-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 22px;
}

.led-list li::before {
  content: "✔";
  color: #007bff;
  position: absolute;
  left: 0;
}

/* FEATURES */
.led-features {
  margin-top: 50px;
  padding: 1px 25px 25px;
  border-radius: 12px;
  border: 1px solid #eeeeee;
}

.led-feature-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 35px;
  color: #1a1a1a;
}

.led-feature-title::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #007bff;
  display: block;
  margin-top: 15px;
}

.led-feature-box {
  background: #fff;
  padding: 25px 20px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid #e6ecff;
  transition: 0.35s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.led-feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.led-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, #007bff, #00c6ff);
  display: flex;
  align-items: center;
  justify-content: center;
}

.led-icon svg {
  width: 30px;
  height: 30px;
  stroke: #fff;
}

/* HERO */
.led-ultimate {
  padding: 60px 0;
  background: linear-gradient(135deg, #f5f9ff, #ffffff);
}

.led-hero-box {
  background: linear-gradient(135deg, #eef4ff, #ffffff);
  padding: 40px;
  border-radius: 16px;
}

.led-main-title {
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(45deg, #007bff, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.led-highlight {
  display: inline-block;
  background: linear-gradient(45deg, #007bff, #00c6ff);
  color: #fff;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 20px;
  line-height: 30px;
}

.led-sub-heading {
  margin-top: 15px;
  font-weight: 700;
  color: #0a1f44;
  border-left: 4px solid #007bff;
  padding-left: 10px;
  font-size: 22px;
  line-height: 28px;
}

.led-img-modern {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
}

/* BLOCK */
.led-block {
  margin-top: 50px;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
}

.led-block h3 {
  font-size: 26px;
  font-weight: 800;
  color: #09398f;
  margin-bottom: 30px;
}

.led-gradient {
  background: linear-gradient(135deg, #f0f6ff, #ffffff);
}

/* TICK */
.led-tick {
  list-style: none;
}

.led-tick li {
  margin-bottom: 15px;
  padding-left: 35px;
  position: relative;
}

.led-tick li::before {
  content: "✔";
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  background: linear-gradient(45deg, #007bff, #00c6ff);
  color: #fff;
  text-align: center;
  border-radius: 50%;
}

/* =========================
   MULTI PURPOSE (IMPROVED)
========================= */
.led-multi .row {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
}

/* COLUMN */
.led-multi .col-md-4 {
  flex: 1;
  max-width: 16.66%;
  padding: 0;
}

/* CARD */
.led-use-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px 8px;
  text-align: center;
  border: 1px solid #e3e8f0;
  height: 110px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  transition: all 0.3s ease;
}

/* ICON (UPDATED) */
.led-use-icon {
  font-size: 30px;   /* BIGGER */
  margin-bottom: 8px;
  color: #007bff;
  transition: all 0.3s ease;
}

/* TITLE */
.led-use-card h4 {
  font-size: 12px;
  color: #0a1f44;
  font-weight: 600;
}

/* HOVER EFFECT */
.led-use-card:hover {
  transform: translateY(-5px);
  border-color: #007bff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.led-use-card:hover .led-use-icon {
  transform: scale(1.2);
  color: #0056b3;
}

/* =========================
   WHY VISUAL
========================= */
.led-why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.led-visual-box {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e6ecff;
  transition: 0.3s;
}

.led-visual-box:hover {
  background: linear-gradient(45deg, #007bff, #00c6ff);
  color: #fff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .led-multi .row {
    flex-wrap: wrap;
  }

  .led-multi .col-md-4 {
    max-width: 48%;
  }
}

/* BANNER */
#banner {
  background: #b8cdf0 !important;
}