.strategy-section {
  width: 100%;
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 580px;
  overflow: hidden;
}
/* LEFT PANEL */
.strategy-left {
  position: relative;
  background: #bbe3f2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 35px;
}
/* CARD */
.strategy-card {
  width: 100%;
  max-width: 500px;
  background: #fff;
  border-radius: 22px;
  padding: 34px 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  z-index: 10;
}
/* ICON */
.strategy-icon {
  font-size: 34px;
}
/* TAG */
.strategy-tag {
  display: block;
  margin-top: 12px;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: "Roboto", sans-serif;
}
/* NUMBER */
.strategy-card h2 {
  margin-top: 18px;
  font-size: 58px;
  line-height: 1;
  color: #2f8fff;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
}
/* TEXT */

.strategy-card p {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.65;
  color: #222;
  max-width: 420px;
  font-family: "Roboto", sans-serif;
}
/* BUTTON */
.strategy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 14px 26px;
  background: #2f8fff;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  transition: 0.3s ease;
}
.strategy-btn:hover {
  background: #ffa000;
  transform: translateY(-2px);
}
/* =========================
SLIDER BUTTONS
========================= */
.strategy-tabs {
  position: absolute;
  top: 50%;
  right: -35px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 100;
}
.strategy-tab {
  width: 68px;
  height: 68px;
  border: none;
  background: #00a8e8;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  transition: 0.3s ease;
}
.strategy-tab:hover,
.strategy-tab.active {
  background: #ffa000;
}
/* RIGHT IMAGE */
.strategy-right {
  position: relative;
  overflow: hidden;
}
.strategy-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s ease;
}
/* BOTTOM INFO */
.strategy-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72%;
  background: #fff;
  padding: 28px 28px;
  box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.05);
}
.strategy-bottom h3 {
  font-size: 34px;
  line-height: 1.15;
  color: #1e1e1e;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
}
.strategy-bottom p {
  margin-top: 10px;
  font-size: 17px;
  line-height: 1.6;
  color: #444;
  font-family: "Roboto", sans-serif;
}
/* =========================
LAPTOP
========================= */
@media (max-width: 1200px) {
  .strategy-section {
    min-height: 520px;
  }
  .strategy-card h2 {
    font-size: 48px;
  }
  .strategy-card p {
    font-size: 16px;
  }
  .strategy-bottom h3 {
    font-size: 28px;
  }
  .strategy-bottom p {
    font-size: 15px;
  }
}
/* =========================
TABLET
========================= */
@media (max-width: 992px) {
  .strategy-section {
    grid-template-columns: 1fr;
  }
  .strategy-left {
    padding: 30px 20px 90px;
  }
  .strategy-right {
    min-height: 360px;
  }
  .strategy-tabs {
    top: auto;
    bottom: 18px;
    right: 20px;
    transform: none;
    flex-direction: row;
  }
  .strategy-tab {
    width: 58px;
    height: 58px;
    font-size: 22px;
  }
  .strategy-bottom {
    width: 88%;
  }
}
/* =========================
MOBILE
========================= */
@media (max-width: 768px) {
  .strategy-section {
    min-height: auto;
  }
  .strategy-left {
    padding: 24px 14px 85px;
  }
  .strategy-card {
    padding: 24px 20px;
    border-radius: 18px;
  }
  .strategy-icon {
    font-size: 28px;
  }
  .strategy-card h2 {
    font-size: 38px;
  }
  .strategy-card p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.6;
  }
  .strategy-btn {
    width: 100%;

    margin-top: 22px;
    padding: 13px 18px;
    font-size: 13px;
  }
  .strategy-tabs {
    right: 14px;
    bottom: 14px;
  }
  .strategy-tab {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }
  .strategy-right {
    min-height: 300px;
  }
  .strategy-bottom {
    width: 100%;
    padding: 22px 18px;
  }
  .strategy-bottom h3 {
    font-size: 22px;
  }
  .strategy-bottom p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.55;
  }
}
/* =========================
SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .strategy-card h2 {
    font-size: 34px;
  }
  .strategy-bottom h3 {
    font-size: 19px;
  }
}
