/* =========================
   ABOUT PAGE
========================= */

.about-page{
  padding-top: 220px;
  padding-bottom: 120px;
}

.about-wrapper{
  max-width: 1100px;
  margin: auto;
}

/* =========================
   SECTION TITLE
========================= */

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

.section-title h2{
  line-height: 1.2;
}

.section-title::after{
  content: "";
  display: block;

  width: 120px;
  height: 4px;

  margin: 28px auto 0;

  border-radius: 20px;

  background: linear-gradient(
    90deg,
    transparent,
    #58d5ff,
    transparent
  );
}

.section-title p{
  max-width: 780px;
  margin: 0 auto;
}

/* =========================
   ABOUT CONTENT
========================= */

.about-content{
  margin-top: 60px;

  padding: 60px;

  border-radius: 35px;

  background: rgba(255,255,255,0.03);

  border: 1px solid rgba(255,255,255,0.05);

  backdrop-filter: blur(14px);

  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.about-content p{
  color: #b7c7d8;
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 32px;
  text-align: justify;
}

/* =========================
   SUBTITLE
========================= */

.about-subtitle{
  font-size: 32px;
  font-weight: 700;

  color: #ffffff;

  margin-top: 70px;
  margin-bottom: 30px;

  border-left: 4px solid #58d5ff;

  padding-left: 20px;
}

/* =========================
   HIGHLIGHT
========================= */

.about-highlight{
  margin-top: 60px;

  font-size: 22px;
  line-height: 1.8;
  font-weight: 600;

  background: linear-gradient(
      90deg,
      #58d5ff,
      #ffffff
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
  color: transparent;
}

/* =========================
   MODULE GRID
========================= */

.about-modules-grid{
  display: flex;
  flex-direction: column;

  gap: 24px;

  margin-top: 35px;
  margin-bottom: 60px;
}

/* =========================
   MODULE CARD
========================= */

.module-spec-card{
  position: relative;

  overflow: hidden;

  padding: 30px 34px;

  border-radius: 18px;

  background: linear-gradient(
    145deg,
    #0f1926,
    #09101a
  );

  border: 1px solid rgba(255,255,255,0.05);

  transition: all 0.35s ease;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.2);
}

.module-spec-card:hover{
  transform: translateY(-6px);

  border-color: rgba(88,213,255,0.2);

  box-shadow:
    0 20px 40px rgba(0,0,0,0.35),
    0 0 20px rgba(88,213,255,0.08);
}

/* LEFT BORDER */

.module-spec-card::before{
  content: "";

  position: absolute;

  left: 0;
  top: 0;
  bottom: 0;

  width: 5px;
}

/* =========================
   CARD TITLE
========================= */

.module-spec-card h3{
  display: flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 14px;

  font-size: 24px;
  font-weight: 700;

  color: white;
}

.module-spec-card h3 span{
  font-size: 16px;
  font-weight: 400;

  color: #8ca2bb;
}

.module-spec-card h3 i{
  font-size: 24px;
}

/* =========================
   CARD TEXT
========================= */

.module-spec-card p{
  margin: 0 !important;

  color: #9fb3c8 !important;

  font-size: 16px !important;

  line-height: 1.8 !important;

  text-align: left !important;
}

/* =========================
   COLOR VARIANTS
========================= */

.vdeck-border::before{
  background: #2563eb;
}

.vdeck-border i{
  color: #3b82f6;
}

.opsdeck-border::before{
  background: #059669;
}

.opsdeck-border i{
  color: #10b981;
}

.cydeck-border::before{
  background: #dc2626;
}

.cydeck-border i{
  color: #ef4444;
}

.workdeck-border::before{
  background: #d97706;
}

.workdeck-border i{
  color: #f59e0b;
}

/* =========================
   ACTIVE MENU
========================= */

.nav-menu a.active{
  color: #58d5ff;
}

.nav-menu a.active::after{
  width: 100%;
}

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

@media(max-width: 768px){

  .about-page{
    padding-top: 180px;
    padding-bottom: 80px;
  }

  .about-content{
    padding: 32px;
  }

  .about-subtitle{
    font-size: 26px;
  }

  .module-spec-card{
    padding: 24px;
  }

  .module-spec-card h3{
    flex-direction: column;
    align-items: flex-start;
  }

}