/* ============================================================
   Product Detail Page Styles
   Path: /static/css/product-detail.css
   Used by: resources/views/home/p.blade.php
   ============================================================ */

/* === Fix parent flex layout so content takes full width === */
.msl_proThree1 {
  display: block !important;
}
.msl_proThree1 > div {
  width: 100%;
}

/* === Section Spacing === */
.msl_proThree1_l_01 .section-padding {
  padding: 56px 0;
}
.msl_proThree1_l_01 .section-padding.bg-light {
  background: linear-gradient(180deg, #f7f9fc 0%, #eef2f7 100%);
  padding:60px;
}

/* === Container (centered, max-width) === */
.msl_proThree1_l_01 .container {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* === Row (flexbox) === */
.msl_proThree1_l_01 .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -14px;
  margin-right: -14px;
}
.msl_proThree1_l_01 .row.g-4 {
  margin-left: -14px;
  margin-right: -14px;
}
.msl_proThree1_l_01 .row.g-4 > [class*="col-"] {
  padding-left: 14px;
  padding-right: 14px;
  margin-bottom: 28px;
}
.msl_proThree1_l_01 .align-items-center {
  align-items: center;
}

/* === Column Base === */
.msl_proThree1_l_01 [class*="col-"] {
  padding-left: 14px;
  padding-right: 14px;
  box-sizing: border-box;
  width: 100%;
}

/* === Medium Breakpoint (≥768px) === */
@media (min-width: 768px) {
  .msl_proThree1_l_01 .col-md-6 { width: 50%; }
}

/* === Large Breakpoint (≥992px) === */
@media (min-width: 992px) {
  .msl_proThree1_l_01 .col-lg-3 { width: 25%; }
  .msl_proThree1_l_01 .col-lg-4 { width: 33.333%; }
  .msl_proThree1_l_01 .col-lg-6 { width: 50%; }
  .msl_proThree1_l_01 .section-padding {
    padding: 64px 0;
  }
}

/* === Section Title === */
.msl_proThree1_l_01 .section-title {
  margin-bottom: 36px;
}
.msl_proThree1_l_01 .section-title.text-center {
  text-align: center;
}
.msl_proThree1_l_01 .section-title.text-center p{ max-width:1400px;}
.msl_proThree1_l_01 .section-title h2 {
  font-size: 30px;
  font-weight: 800;
  color: #111827;
  margin: 0;
  padding: 0;
  border: none;
  line-height: 1.3;
  letter-spacing: -0.3px;
  font-family: "Roboto-Black";
}
.msl_proThree1_l_01 .section-title h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--hue, #017ce5), var(--hue-dark, #005bb5));
  margin: 14px auto 0;
  border-radius: 2px;
}
.msl_proThree1_l_01 .section-title p {
  color: #6b7280;
  font-size: 18px;
  margin-top: 12px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* === Feature Box Cards === */
.msl_proThree1_l_01 .feature-box {
  background: #fff;
  border-radius: 14px;
  padding: 30px 26px;
 box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  
}

.align-items-center .feature-box,.msl_proThree1_l_01 .feature-box1{padding-left: 0; box-shadow:none; background:none;}
.msl_proThree1_l_01 .feature-box2{ padding:0;}
.msl_proThree1_l_01 .feature-box2 p{ padding:10px 30px;}
.msl_proThree1_l_01 .feature-box2 h4{ margin:10px 30px;}
.msl_proThree1_l_01 .feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.msl_proThree1_l_01 .feature-box:hover {
  transform: translateY(-6px);

}
.msl_proThree1_l_01 .feature-box:hover::before {
  opacity: 1;
}
.msl_proThree1_l_01 .feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 14px;
  padding: 0 0 12px;
  border: none;
  border-bottom: 2px solid #e8ecf1;
  line-height: 1.4;
  transition: border-color 0.3s ease;
  font-family: "Roboto-Black";
}
.msl_proThree1_l_01 .feature-box2{ padding-bottom:30px;}
.msl_proThree1_l_01 .feature-box2 h4{ margin:10px 30px;}
.msl_proThree1_l_01 .feature-box:hover h4 {

}
.msl_proThree1_l_01 .feature-box p {
  color: #555;
  line-height: 1.5;
  margin: 0;
  font-size: 18px;
}
.msl_proThree1_l_01 .feature-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.msl_proThree1_l_01 .feature-box ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  line-height: 1.65;
  color: #444;
  font-size: 15px;
}
.msl_proThree1_l_01 .feature-box ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--hue, #017ce5);
  font-weight: 700;
  font-size: 14px;
}

/* === Content Text & Headings === */
.msl_proThree1_l_01 h2 {
  font-size: 26px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 16px;
  padding: 0;
  border: none;
  line-height: 1.35;
  font-family: "Roboto-Black";
}
.msl_proThree1_l_01 h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--hue-dark, #005bb5);
  margin: 28px 0 12px;
  line-height: 1.4;
}
.msl_proThree1_l_01 h4 {
  font-size: 17px;
  font-weight: 600;
  color: #1f2937;
  margin: 20px 0 10px;
  font-family: "Roboto-Black";
}
.msl_proThree1_l_01 p {
  margin: 0 0 16px;
  line-height: 1.5;
  color: #374151;
  font-size: 18px;
}

/* === Introduction List — act as wider column in row === */
.msl_proThree1_l_01 .row > .col-lg-6:has(~ .Introduction-list) {
  flex: 0 0 40%;
  max-width: 40%;
}
.msl_proThree1_l_01 .row > .Introduction-list {
  flex: 0 0 60%;
  max-width: 60%;
  padding: 0 14px;
  box-sizing: border-box;
}

/* === Introduction List (image grid) === */
.Introduction-list { overflow: hidden; }
.Introduction-list ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.Introduction-list ul li { width: auto; margin: 0; float: none; }
.Introduction-list ul li p { margin: 0; }
.Introduction-list ul li img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 4/3;
}
.Introduction-list ul li img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}
@media (max-width: 991px) {
  .msl_proThree1_l_01 .row > .col-lg-6:has(~ .Introduction-list) {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .msl_proThree1_l_01 .row > .Introduction-list {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .Introduction-list ul {
    grid-template-columns: 1fr;
  }
}

/* === Utility Classes === */
.msl_proThree1_l_01 .text-center { text-align: center; }
.msl_proThree1_l_01 .mb-4 { margin-bottom: 24px; }
.msl_proThree1_l_01 .mb-5 { margin-bottom: 40px; }
.msl_proThree1_l_01 .mt-4 { margin-top: 24px; }

/* === Table Styling === */
.msl_proThree1_l_01 .msl_pro_page_table {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: 10px;
}
.msl_proThree1_l_01 .msl_pro_page_table table,
.msl_proThree1_l_01 .table-responsive table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.msl_proThree1_l_01 .msl_pro_page_table th,
.msl_proThree1_l_01 .table-responsive th {
  background: linear-gradient(180deg, #f0f4f8, #e8edf3);
  font-weight: 700;
  color: #1f2937;
  padding: 13px 18px;
  text-align: left;
  border-bottom: 2px solid #d1d9e3;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.msl_proThree1_l_01 .msl_pro_page_table td,
.msl_proThree1_l_01 .table-responsive td {
  padding: 12px 18px;
  border-bottom: 1px solid #eef0f3;
  color: #374151;
  font-size: 15px;
}
.msl_proThree1_l_01 .msl_pro_page_table tr:hover td,
.msl_proThree1_l_01 .table-responsive tr:hover td {
  background: #f0f5ff;
}

/* === Application Tags === */
.msl_proThree1_l_01 .application-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}
.msl_proThree1_l_01 .application-tags::before {
  content: '';
  display: none;
}
.msl_proThree1_l_01 .application-tags .tag,
.msl_proThree1_l_01 .application-tags span {
  display: inline-block;
  background: linear-gradient(135deg, #eef4ff, #e0ecff);
  color: var(--hue, #017ce5);
  padding: 7px 18px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #d0dffc;
  transition: background 0.2s ease;
}
.msl_proThree1_l_01 .application-tags:not(:has(span)):not(:has(.tag)) {
  background: linear-gradient(135deg, #f0f7ff, #e8f1ff);
  border-radius: 14px;
  padding: 18px 28px;
  color: #374151;
  font-size: 15px;
  line-height: 1.9;
  border: 1px solid #c8daf5;
}

/* === First Row (table header highlight) === */
.msl_proThree1_l_01 .firstRow th {
  background: linear-gradient(135deg, var(--hue, #017ce5), var(--hue-dark, #005bb5)) !important;
  color: #fff !important;
  font-weight: 700;
  border-bottom: none !important;
}

/* === Single-child row: expand col-lg-6 to full width === */
.msl_proThree1_l_01 .row > .col-lg-6:only-child {
  width: 100%;
}

/* === Responsive: Mobile === */
@media (max-width: 991px) {
  .msl_proThree1_l_01 .section-padding {
    padding: 36px 0;
  }
  .msl_proThree1_l_01 .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .msl_proThree1_l_01 .row {
    flex-direction: column;
  }
  .msl_proThree1_l_01 [class*="col-"] {
    width: 100% !important;
  }
  .msl_proThree1_l_01 .section-title h2 {
    font-size: 24px;
  }
  .msl_proThree1_l_01 .feature-box {
    padding: 24px 20px;
  }
}
