/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  height: 100%;
  width: 100%;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.about-bg-wrapper {
  background-image: url('../assets/images/bg-and-wave.png');
  background-position: center;
  background-size: 100% 100%;
}

/* ABOUT US SECTION */
.about-us-section {
  padding: 115px 0;
  text-align: center;
  background: #fff;
}

.about-title {
  font-size: 42px;
  margin-bottom: 20px;
}

.about-title span {
  background: linear-gradient(270deg, #2f47ac 2.39%, #792ef1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 900;
}

.about-desc {
  margin: 0 auto 16px;
  font-size: 18px;
  line-height: 128%;
  color: #464646;
}

/* Tabs */
.about-tabs {
  display: flex;
  gap: 40px;
  margin: 50px 0 20px;
  border-bottom: 1px solid transparent;
  border-image-source: linear-gradient(270deg,
      rgba(47, 71, 172, 0.33) 2.39%,
      rgba(121, 46, 241, 0.33) 100%);
  border-image-slice: 1;
}

.tab-btn {
  background: none;
  border: none;
  padding: 10px 18px;
  font-size: 14px;
  color: #949494;
  cursor: pointer;
  width: 185px;
  position: relative;
}

.tab-btn.active {
  color: #fff;
  font-weight: 600;
  background: linear-gradient(270deg, #2f47ac 2.39%, #792ef1 100%);
}

.tab-content-wrapper {
  margin-top: 40px;
  min-height: 300px;
}

.tab-content {
  display: none;
  max-width: 1000px;
  margin: 0 auto;
}

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

.mission-vision-text {
  font-size: 18px;
  line-height: 1.8;
  color: #464646;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

/* VALUES LAYOUT */
.values-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  margin-top: 40px;
}

/* LEFT TABS */
.values-tabs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

/* Tab button */
.value-tab {
  background: none;
  border: none;
  text-align: left;
  padding: 12px 16px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  border-radius: 8px;
  position: relative;
}

/* Active tab */
.value-tab.active {
  background: #f3efff;
  font-weight: 500;
  color: #464646;
}


/* Active blue indicator */
.value-tab.active::after {
  content: "";
  position: absolute;
  right: -21px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 22px;
  background: #4f46e5;
  border-radius: 2px;
}

/* RIGHT CONTENT */
.values-content {
  text-align: left;
}

.values-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #333;
}

.values-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #464646;
}

/* Panels */
.value-panel {
  display: none;
}

.value-panel.active {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .values-layout {
    grid-template-columns: 1fr;
  }

  .values-tabs::after {
    display: none;
  }

  .value-tab.active::after {
    display: none;
  }
}

/* CULTURE LAYOUT */
.culture-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  margin-top: 40px;
}

/* LEFT TABS */
.culture-tabs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}


/* Tab button */
.culture-tab {
  background: none;
  border: none;
  text-align: left;
  padding: 12px 16px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  border-radius: 8px;
  position: relative;
}

/* Active tab */
.culture-tab.active {
  background: #f3efff;
  font-weight: 500;
  color: #464646;
}

/* Active indicator */
.culture-tab.active::after {
  content: "";
  position: absolute;
  right: -21px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 22px;
  background: #4f46e5;
  border-radius: 2px;
}

/* RIGHT CONTENT */
.culture-content {
  text-align: left;
}

.culture-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #333;
}

.culture-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #464646;
}

/* Panels */
.culture-panel {
  display: none;
}

.culture-panel.active {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .culture-layout {
    grid-template-columns: 1fr;
  }

  .culture-tabs::after,
  .culture-tab.active::after {
    display: none;
  }
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .about-title {
    font-size: 30px;
  }

  .about-tabs {
    width: auto;
  }

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

.industries-section {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.industries-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #222;
}

.industries-title span {
  color: #4f46e5;
}

/* List container */
.industries-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Each row */
.industry-item {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  color: #3a3a3a;
  padding: 1rem 1rem 1.5rem 1rem;

  background-image: url("../assets/images/industry-section-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  /* 👈 critical */
  background-position: center;
}

/* Responsive */
@media (max-width: 768px) {
  .industries-title {
    font-size: 28px;
  }

  .industry-item {
    font-size: 14px;
  }
}

.what-sets-up-section {
  width: 100%;
}

.section-bg-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===================== */
/* GLOBAL RESPONSIVE FIX */
/* ===================== */

@media (max-width: 1200px) {
  .about-desc {
    font-size: 16px;
    line-height: 1.5;
  }

  .about-tabs {
    gap: 24px;
  }

  .tab-btn {
    width: auto;
    min-width: 140px;
  }
}

/* ===================== */
/* TABLET (<= 992px) */
/* ===================== */

@media (max-width: 992px) {
  .about-us-section {
    padding: 90px 16px;
  }

  .about-title {
    font-size: 34px;
  }

  .about-desc {
    font-size: 15px;
  }

  /* Tabs become scrollable */
  .about-tabs {
    overflow-x: auto;
    white-space: nowrap;
    gap: 16px;
    padding-bottom: 8px;
  }

  .tab-btn {
    flex: 0 0 auto;
    font-size: 13px;
    padding: 8px 14px;
  }

  /* Value & Culture layouts stack */
  .values-layout,
  .culture-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .values-tabs,
  .culture-tabs {
    padding-right: 0;
  }

  .values-tabs::after,
  .culture-tabs::after {
    display: none;
  }
}

/* ===================== */
/* MOBILE (<= 768px) */
/* ===================== */

@media (max-width: 768px) {
  .about-title {
    font-size: 28px;
  }

  .about-desc {
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
  }

  /* Center tab content */
  .tab-content {
    margin-top: 2rem;
    text-align: center;
  }

  /* Side tabs become cards */
  .value-tab,
  .culture-tab {
    font-size: 13px;
    padding: 10px 12px;
  }

  .value-tab.active,
  .culture-tab.active {
    background: linear-gradient(270deg,
        rgba(47, 71, 172, 0.08),
        rgba(121, 46, 241, 0.08));
  }

  .values-content h3,
  .culture-content h3 {
    font-size: 18px;
    text-align: center;
  }

  .values-content p,
  .culture-content p {
    font-size: 13px;
    text-align: center;
  }
}

/* ===================== */
/* SMALL MOBILE (<= 480px) */
/* ===================== */

@media (max-width: 480px) {
  .about-title {
    font-size: 24px;
  }

  .about-tabs {
    gap: 12px;
  }

  .tab-btn {
    font-size: 12px;
    padding: 6px 12px;
  }

  .industry-item {
    font-size: 13px;
    padding: 0.75rem 0.75rem 1rem;
  }
}

.about-bg-wrapper {
  background-image: url('../assets/images/bg-and-wave.png');
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: relative;
  padding-bottom: 120px;
  margin-top: -80px;
}

/* Hero layout */
.about-hero {
  padding: 85px 0 40px;
}

.about-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT CONTENT */
.about-hero-content {
  max-width: 560px;
}

.about-hero-content h1 {
  font-size: 40px;
  font-weight: 700;
  color: #1f1f1f;
}

.about-hero-content h1 span {
  color: #5b4bdb;
}

.about-desc {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.7;
  color: #6b6b7a;
}

/* RIGHT IMAGE */
.about-hero-image img {
  max-width: 480px;
  width: 100%;
  height: auto;
  display: block;
}

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

@media (max-width: 992px) {
  .about-hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .about-hero-content {
    max-width: 100%;
  }

  .about-hero-image img {
    max-width: 420px;
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .about-hero {
    padding-top: 120px;
  }

  .about-hero-content h1 {
    font-size: 30px;
  }

  .about-desc {
    font-size: 14px;
  }
}