/* Common Styles for All Slides */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #fff;
  color: #1a1a1a;
}

/* .slide-1, .slide-2, .slide-3, .slide-4 {
  padding: 60px 20px;
} */
#creation-section .svgIcon {
  background-color: #ffe548;
  padding: 5px;
  border-radius: 5px;
}
#creation-section .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

#creation-section .column {
  flex: 1;
  min-width: 300px;
}

#creation-section .image {
  width: 100%;
  /* border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
}

#creation-section .textSide {
  padding: 20px;
  margin: 10px;
}

#creation-section .textSide h1 {
  font-size: 32px;
  color: #1e4df8;
  margin-bottom: 20px;
}

#creation-section .mil-icon-box-head {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

#creation-section .mil-icon-frame-sm img {
  width: 24px;
  height: 24px;
}

#creation-section .textSide h3 {
  font-size: 22px;
  margin: 0;
}

#creation-section .textSide p {
  font-size: 16px;
  line-height: 1.6;
  color: #49454E;
}

/* Slide 3 Specific: Case Study */
/* .slide-3 {
  padding: 60px 20px;
} */

#creation-section .slide-3 .row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
}

#creation-section .slide-3 .column {
  flex: 1;
  min-width: 300px;
}

#creation-section .slide-3 .image {
  width: 100%;
  /* border-radius: 12px; */
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
}

#creation-section .slide-3 .textSide {
  padding: 0 20px;
}

#creation-section .slide-3 .title {
  font-size: 32px;
  color: #1e4df8;
  margin-bottom: 30px;
}

#creation-section .slide-3 .case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

#creation-section .slide-3 .box {
  background: #f5f7ff;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#creation-section .slide-3 .number {
  display: inline-block;
  background: #ffe548;
  color: #1e4df8;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 16px;
  margin-bottom: 8px;
}

#creation-section .slide-3 .box h2 {
  display: inline-block;
  color: #1e4df8;
  font-size: 18px;
  margin-left: 10px;
  vertical-align: middle;
}

#creation-section .slide-3 .box p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .slide-3 .case-grid {
    grid-template-columns: 1fr;
  }
}


/* Slide 4: Metric Table */
#creation-section .slide-4 {
  padding: 60px 20px;
  background-color: #ffffff;
}

#creation-section .slide-4 .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

#creation-section .slide-4 .title {
  font-size: 42px;
  color: #1e4df8;
  margin-bottom: 40px;
}

#creation-section .metric-table {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  row-gap: 20px;
  column-gap: 20px;
  font-size: 17px;
  text-align: left;
  align-items: center;
}

#creation-section .metric-table .header {
  display: contents;
  font-weight: bold;
  font-size: 20px;
}

#creation-section .metric-table .header span {
  display: block;
  font-size: 14px;
  font-weight: normal;
  color: #555;
  margin-top: 4px;
}

#creation-section .metric-table .row {
  display: contents;
}

#creation-section .metric-table .label {
  background-color: #1e4df8;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: bold;
}

#creation-section .metric-table .value {
  padding: 12px 16px;
  background-color: #f9f9f9;
  border-radius: 8px;
  color: #1a1a1a;
}

#creation-section .metric-table .highlight {
  color: #1e4df8;
  font-weight: bold;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .metric-table {
    grid-template-columns: 1fr;
    row-gap: 15px;
    text-align: center;
  }

#creation-section  .metric-table .label,
  .metric-table .value {
    border-radius: 6px;
  }
}

/* metrics-bar */
#creation-section .slide-5 .metrics-bar {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
  flex-wrap: wrap;
}

#creation-section .slide-5 .metric-box {
  background-color: #f5f7ff;
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  min-width: 100px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-family: 'Segoe UI', sans-serif;
}

#creation-section .slide-5 .metric-box i {
  font-size: 24px;
  color: #1e4df8;
  margin-bottom: 8px;
  display: block;
}

#creation-section .slide-5 .metric-box h2 {
  font-size: 22px;
  margin: 0;
  color: #1e4df8;
}

#creation-section .slide-5 .metric-box.highlight {
  background-color: #1e4df8;
  color: #fff;
}

#creation-section .slide-5 .metric-box.highlight h2 {
  color: #fff;
}

#creation-section .slide-5 .metric-box.highlight span {
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  #creation-section .slide-5 .metrics-bar {
    flex-direction: column;
    align-items: center;
  }
}

/* joy metrix box */
#creation-section .slide-6 .image-metric-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 20px 0;
  flex-wrap: wrap;
}

#creation-section .slide-6 .metrics-bar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#creation-section .slide-6 .metric-box {
  background-color: #f5f7ff;
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  min-width: 120px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-family: 'Segoe UI', sans-serif;
}

#creation-section .slide-6 .metric-box i {
  font-size: 24px;
  color: #1e4df8;
  margin-bottom: 6px;
  display: block;
}

#creation-section .slide-6 .metric-box h2 {
  font-size: 22px;
  margin: 0;
  color: #1e4df8;
}

#creation-section .slide-6 .metric-box.highlight {
  background-color: #1e4df8;
  color: #fff;
}

#creation-section .slide-6 .metric-box.highlight h2 {
  color: #fff;
}

#creation-section .slide-6 .metric-box.highlight span {
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  #creation-section .slide-6 .image-metric-wrapper {
    flex-direction: column;
    align-items: center;
  }

  #creation-section .slide-6 .metrics-bar {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}
