.align-text {
  text-align: justify;
}

.about-mkat {
  /* padding: 120px 0; */
  background: white;
  font-family: Arial;
  color: black;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* highlight word */

.fantastic-highlight {
  position: relative;
  color: #8d0b41;
  z-index: 1;
  padding: 0 6px;
}

/* svg style layer */

.fantastic-highlight::before {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  bottom: -4px;
  height: 60%;
  background: #8d0b41;
  opacity: 0.15;
  border-radius: 8px;
  z-index: -1;
  transform: skewX(-12deg);
}
/* intro */

.about-intro {
  text-align: center;
  margin-bottom: 70px;
}

.about-intro h2 {
  font-size: 44px;
  line-height: 1.2;
}

/* grid */

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* story */

.story-text h3 {
  color: #8d0b41;
  margin-bottom: 15px;
  font-size: 22px;
}

.story-text p {
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 14px;
}

.highlight {
  font-weight: 600;
}

/* loop */

.loop-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* responsive system */

.loop-system {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1/1;
}

/* svg */

.loop-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* center */

.loop-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #8d0b41;
  color: white;
  padding: 14px 18px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 0 16px rgba(141, 11, 65, 0.35);
  z-index: 2;
}

/* nodes */

.loop-node {
  position: absolute;
  background: white;
  border: 1px solid #eee;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 12px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* responsive positions */

.node1 {
  top: -3%;
  left: 50%;
  transform: translateX(-50%);
}

.node2 {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.node3 {
  bottom: -2%;
  left: 50%;
  transform: translateX(-50%);
}

.node4 {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media (max-width: 600px) {
  .loop-system {
    max-width: 260px;
  }

  .loop-node {
    font-size: 11px;
    padding: 5px 10px;
  }

  .loop-center {
    padding: 12px 14px;
    font-size: 12px;
  }
}
/* team intro */

.team-intro {
  max-width: 700px;
  margin: 100px auto 0;
  text-align: center;
}

.team-intro h3 {
  font-size: 32px;
  margin-bottom: 10px;
}

.team-intro h4 {
  color: #8d0b41;
  margin-bottom: 20px;
}

/* responsive */

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .loop-box {
    margin-top: 40px;
  }
}

/* //////// */

.team-section {
  position: relative;
  /* padding: 120px 0; */
  background: white;
  overflow: hidden;
}

/* base layer style */

.team-layer {
  position: absolute;
  fill: #8d0b41;
  opacity: 0.06;
  pointer-events: none;
}

/* layer positions */

.layer1 {
  top: 0;
  left: 0;
  width: 500px;
}

.layer2 {
  right: -100px;
  top: 120px;
  width: 400px;
}

.layer3 {
  bottom: 0;
  left: 0;
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

/* TEAM GRID */

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-bottom: 120px;
}

.team-card {
  background: white;
  border: 1px solid #eee;
  padding: 40px;
  border-radius: 14px;
  transition: 0.35s;
}

.team-card h3 {
  font-family: glacial;
  font-size: 35px;
  margin-bottom: 4px;
}

.team-card span {
  display: block;
  color: #8d0b41;
  font-weight: 600;
  margin-bottom: 15px;
}

.team-card p {
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 12px;
}

/* VALUES */

.values-section {
  text-align: center;
}

.values-section h2 {
  font-size: 36px;
  margin-bottom: 50px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  background: #fafafa;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #eee;
}

.value-card h4 {
  color: #8d0b41;
  margin-bottom: 10px;
}

.value-card p {
  opacity: 0.85;
  line-height: 1.6;
}

/* responsive */

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ////// */

.cta-section {
  padding: 90px 0;
  background: #8d0b41;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section .container {
  width: 90%;
  max-width: 900px;
  margin: auto;
}

/* text */

.cta-content h2 {
  font-size: 46px;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 20px;
  margin-bottom: 10px;
  opacity: 0.95;
}

.cta-text {
  font-size: 17px;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 35px;
}

/* button */

.cta-btn {
  display: inline-block;
  padding: 14px 36px;
  background: white;
  color: #8d0b41;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

/* background shapes */

.cta-bg-shape {
  position: absolute;
  border-radius: 50%;
  background: white;
  opacity: 0.08;
}

.shape1 {
  width: 300px;
  height: 300px;
  top: -120px;
  left: -120px;
}

.shape2 {
  width: 260px;
  height: 260px;
  bottom: -120px;
  right: -120px;
}

/* responsive */

@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 34px;
  }

  .cta-sub {
    font-size: 18px;
  }
}
