.elementor-2129 .elementor-element.elementor-element-75884d39{--display:flex;}.elementor-2129 .elementor-element.elementor-element-75884d39:not(.elementor-motion-effects-element-type-background), .elementor-2129 .elementor-element.elementor-element-75884d39 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#E4D3D3;}.elementor-2129 .elementor-element.elementor-element-135c3faf{--display:flex;}/* Start custom CSS for html, class: .elementor-element-2b824100 */.industry-hero {
    padding: 120px 20px;
    color: #d1d5db;
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    letter-spacing: 2px;
    color: #94a3b8;
    margin-bottom: 30px;
}

.hero-label span {
    width: 40px;
    height: 1px;
    background: #64748b;
    display: inline-block;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    line-height: 1.1;
    font-weight: 500;
    color: #e5e7eb;
    margin-bottom: 25px;
}

.hero-subtext {
    max-width: 600px;
    font-size: 16px;
    line-height: 1.8;
    color: #9ca3af;
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-75884d39 */.elementor-2129 .elementor-element.elementor-element-75884d39
{
background: linear-gradient(135deg, #050b18 0%, #646e96 100%);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-493763cb */.industry-tabs {
  display: flex;
  gap: 50px;
  background: radial-gradient(circle at top left, #020617, #020617 60%, #01030a);
  padding: 100px 60px;
  color: #cbd5f5;
  font-family: 'Inter', sans-serif;
}

/* LEFT */
.tabs-left {
  width: 280px;
}

.tab {
  padding: 18px 20px;
  font-size: 15px;
  color: #7c8aa5;
  border: 1px solid rgba(255,255,255,0.04);
  margin-bottom: 12px;
  background: rgba(255,255,255,0.01);
  cursor: pointer;
  transition: 0.3s;
}

.tab.active {
  color: #fff;
  background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
}

/* RIGHT */
.tabs-content {
  flex: 1;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: #e6edf6;
  margin-bottom: 40px;
}

/* CARDS */
.cards {
  display: flex;
  gap: 30px;
}

.card {
  flex: 1;
  padding: 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #0b1220, #080e1a);
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 2px;
}

.card.green::before {
  background: linear-gradient(to right, #22c55e, transparent);
}

.card.orange::before {
  background: linear-gradient(to right, #f97316, transparent);
}

.card h4 {
  font-size: 11px;
  letter-spacing: 2px;
  color: #9fb3c8;
  margin-bottom: 20px;
}

.card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.card li {
  margin-bottom: 12px;
  font-size: 14px;
  color: #8aa0b6;
  position: relative;
  padding-left: 18px;
}

.card li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #22c55e;
}

.card.orange li::before {
  color: #f97316;
}

.card button {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: #cbd5f5;
  padding: 10px 18px;
  font-size: 12px;
  cursor: pointer;
}

.card.green button {
  border-color: rgba(34,197,94,0.5);
}

.card.orange button {
  border-color: rgba(249,115,22,0.5);
}

.btn-link {
  display: inline-block;
  text-decoration: none;
  border: 1px solid rgba(34,197,94,0.5);
  color: #cbd5f5;
  padding: 10px 18px;
  font-size: 12px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.btn-link:hover {
  background: rgba(255,255,255,0.05);
}

/* ORANGE STYLE */
.orange-btn {
  border-color: #f97316;
  color: #f97316;
}

/* HOVER EFFECT (important for premium feel) */
.orange-btn:hover {
  background: rgba(249,115,22,0.1);
  box-shadow: 0 0 12px rgba(249,115,22,0.3);
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* TABLET */
@media (max-width: 1024px) {

  .industry-tabs {
    flex-direction: column;
    padding: 60px 30px;
  }

  .tabs-left {
    width: 100%;
    display: flex;
    overflow-x: auto;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 10px;
  }

  .tab {
    white-space: nowrap;
    margin-bottom: 0;
    font-size: 14px;
  }

  .cards {
    flex-direction: column;
  }

  .tab-content h2 {
    font-size: 36px;
  }
}

/* MOBILE */
@media (max-width: 767px) {

  .industry-tabs {
    padding: 40px 20px;
  }

  .tabs-left {
    display: block;
  }

  .tab {
    font-size: 14px;
    padding: 14px;
  }

  .tab-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .card {
    padding: 20px;
  }

  .card li {
    font-size: 13px;
  }

  .card button,
  .btn-link {
    width: 100%;
    text-align: center;
  }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-135c3faf */.elementor-2129 .elementor-element.elementor-element-135c3faf {
    background: radial-gradient(circle at top left, #020617, #020617 60%, #01030a);
}/* End custom CSS */