/*--------------------------------------------------------------
# About Page Styles — Ternate Techsol
# Follows the same dark theme, glassmorphism, and color tokens
# as the home page (style.css)
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# About Hero / Page Banner
--------------------------------------------------------------*/
.about-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('../img/ternatebghome.png') center center / cover no-repeat;
  padding-top: 160px;
  padding-bottom: 80px;
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(2, 12, 27, 0.88) 0%,
      rgba(10, 22, 40, 0.82) 40%,
      rgba(5, 18, 36, 0.85) 100%);
  z-index: 0;
}

/* Particle container */
.about-hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.about-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(78, 168, 255, 0.6);
  animation: about-particle-float linear infinite;
}

@keyframes about-particle-float {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-120px) translateX(40px) scale(0.5);
    opacity: 0;
  }
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

.about-hero-label {
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4ea8ff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-hero-label i {
  font-size: 18px;
}

.about-hero h1 {
  font-family: "Jost", sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 24px;
  max-width: 640px;
  text-shadow: 0 2px 30px rgba(0, 80, 180, 0.2);
}

.about-hero h1 span {
  color: #4ea8ff;
}

.about-hero-sub {
  font-family: "Open Sans", sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(200, 220, 245, 0.8);
  max-width: 560px;
  margin-bottom: 0;
}

/* Scroll indicator */
.about-hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.about-hero-scroll span {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  position: relative;
}

.about-hero-scroll span::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #4ea8ff;
  border-radius: 4px;
  animation: about-scroll-pulse 1.8s ease-in-out infinite;
}

@keyframes about-scroll-pulse {

  0%,
  100% {
    top: 6px;
    opacity: 1;
  }

  50% {
    top: 20px;
    opacity: 0.3;
  }
}

.about-hero-scroll p {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

/* Hero responsive */
@media (max-width: 991px) {
  .about-hero {
    min-height: 70vh;
    padding-top: 140px;
    text-align: center;
  }

  .about-hero h1 {
    font-size: 36px;
    max-width: 100%;
  }

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

  .about-hero-label {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .about-hero h1 {
    font-size: 28px;
  }

  .about-hero-sub {
    font-size: 15px;
  }

  .about-hero {
    min-height: 65vh;
    padding-top: 130px;
  }
}

/*--------------------------------------------------------------
# Section Label (reusable numbered label)
--------------------------------------------------------------*/
.about-section-label {
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(30, 100, 180, 0.9);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-section-label span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(78, 168, 255, 0.12);
  border: 1px solid rgba(78, 168, 255, 0.25);
  color: rgba(30, 100, 180, 0.9);
  font-size: 12px;
  font-weight: 700;
}

/*--------------------------------------------------------------
# Company Overview Section
--------------------------------------------------------------*/
.about-overview {
  position: relative;
  background: #ffffff;
  padding: 140px 0;
}

.about-overview-content h2 {
  font-family: "Jost", sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #2B3A4A;
  margin-bottom: 24px;
}

.about-overview-content h2 span {
  color: rgba(30, 100, 180, 0.9);
}

.about-overview-lead {
  font-size: 17px;
  font-weight: 600;
  color: #2B3A4A;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-overview-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #6c757d;
}

/* Stats */
.about-overview-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid #eef1f5;
}

.about-stat-item {
  text-align: center;
  flex: 1;
}

.about-stat-item .about-stat-number {
  font-family: "Jost", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: rgba(30, 100, 180, 0.9);
  line-height: 1;
  display: inline;
}

.about-stat-item span {
  font-family: "Jost", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: rgba(30, 100, 180, 0.9);
}

.about-stat-item p {
  font-size: 13px !important;
  color: #8a95a5 !important;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 6px;
  margin-bottom: 0;
}

/* Visual cards grid */
.about-overview-visual {
  padding-left: 30px;
}

.about-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-visual-card {
  position: relative;
  background: linear-gradient(135deg, #0d1f3c 0%, #0a1628 100%);
  border: 1px solid rgba(60, 130, 220, 0.2);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.about-visual-card::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(50, 140, 255, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.4s ease;
}

.about-visual-card:hover {
  transform: translateY(-6px);
  border-color: rgba(30, 100, 180, 0.9);
  box-shadow:
    0 12px 40px rgba(0, 80, 200, 0.18),
    0 0 25px rgba(50, 130, 255, 0.06);
}

.about-visual-card:hover::before {
  width: 130px;
  height: 130px;
}

.about-visual-card i {
  font-size: 36px;
  color: #4ea8ff;
  margin-bottom: 14px;
  display: block;
  filter: drop-shadow(0 0 8px rgba(78, 168, 255, 0.3));
}

.about-visual-card h4 {
  font-family: "Jost", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.about-visual-card p {
  font-size: 13px;
  color: rgba(200, 220, 245, 0.7);
  margin-bottom: 0;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .about-overview {
    padding: 70px 0;
  }

  .about-overview-visual {
    padding-left: 0;
    margin-top: 40px;
  }

  .about-overview-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .about-visual-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-overview-stats {
    flex-direction: column;
    gap: 20px;
  }

  .about-overview-content h2 {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Core Values Section
--------------------------------------------------------------*/
.about-values {
  position: relative;
  background: linear-gradient(135deg, #020c1b 0%, #0a1628 30%, #0d1f3c 60%, #061224 100%);
  padding: 100px 0;
  overflow: hidden;
}

.about-values-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 15% 80%, rgba(0, 100, 200, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(0, 150, 255, 0.08) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(30, 80, 160, 0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Section header */
.about-values-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-values-header h2 {
  font-family: "Jost", sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0, 100, 200, 0.15);
}

.about-values-header h2 span {
  color: #4ea8ff;
}

.about-values-subtitle {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: rgba(180, 200, 230, 0.7);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Values grid */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 1050px;
  margin: 0 auto;
}

/* Individual value card */
.about-value-card {
  position: relative;
  background: rgba(10, 30, 60, 0.5);
  border: 1px solid rgba(60, 130, 220, 0.2);
  border-radius: 16px;
  padding: 36px 28px 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.about-value-card::before {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(50, 140, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.4s ease;
}

.about-value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(70, 150, 255, 0.4);
  box-shadow:
    0 16px 50px rgba(0, 80, 200, 0.2),
    0 0 30px rgba(50, 130, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.about-value-card:hover::before {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(50, 140, 255, 0.15) 0%, transparent 70%);
}

.about-value-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(78, 168, 255, 0.15) 0%, rgba(78, 168, 255, 0.05) 100%);
  border: 1px solid rgba(78, 168, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.35s ease;
}

.about-value-card:hover .about-value-icon {
  background: linear-gradient(135deg, rgba(78, 168, 255, 0.25) 0%, rgba(78, 168, 255, 0.1) 100%);
  box-shadow: 0 0 20px rgba(78, 168, 255, 0.2);
}

.about-value-icon i {
  font-size: 24px;
  color: #4ea8ff;
  filter: drop-shadow(0 0 6px rgba(78, 168, 255, 0.3));
}

.about-value-number {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: "Jost", sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: rgba(78, 168, 255, 0.06);
  line-height: 1;
  pointer-events: none;
  transition: color 0.35s ease;
}

.about-value-card:hover .about-value-number {
  color: rgba(78, 168, 255, 0.12);
}

.about-value-card h3 {
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  position: relative;
}

.about-value-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(200, 220, 245, 0.75);
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .about-values {
    padding: 70px 0;
  }

  .about-values-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-values-header h2 {
    font-size: 26px;
  }

  .about-value-card {
    padding: 28px 22px 26px;
  }
}

/*--------------------------------------------------------------
# Mission & Vision Section
--------------------------------------------------------------*/
.about-mission-vision {
  position: relative;
  background: #ffffff;
  padding: 100px 0;
}

/* Card container */
.about-mv-card {
  position: relative;
  background: linear-gradient(145deg, #f8fafd 0%, #eef3fa 100%);
  border: 1px solid rgba(200, 215, 235, 0.6);
  border-radius: 20px;
  padding: 44px 38px;
  height: 100%;
  overflow: hidden;
  transition: all 0.4s ease;
}

.about-mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 60, 130, 0.1);
}

/* Glow accent */
.about-mv-glow {
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(78, 168, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-mv-glow-alt {
  background: radial-gradient(circle, rgba(78, 168, 255, 0.1) 0%, transparent 70%);
  top: auto;
  bottom: -60px;
  left: auto;
  right: -60px;
}

.about-mv-content {
  position: relative;
  z-index: 1;
}

.about-mv-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(78, 168, 255, 0.6) 0%, rgba(78, 168, 255, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(78, 168, 255, 0.25);
  transition: all 0.35s ease;
}

.about-mv-card:hover .about-mv-icon-wrap {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(78, 168, 255, 0.3);
}

.about-mv-icon-alt {
  background: linear-gradient(135deg, #2680d6 0%, #4ea8ff 100%);
  box-shadow: 0 8px 24px rgba(38, 128, 214, 0.25);
}

.about-mv-card:hover .about-mv-icon-alt {
  box-shadow: 0 12px 30px rgba(38, 128, 214, 0.3);
}

.about-mv-icon-wrap i {
  font-size: 28px;
  color: #ffffff;
}

.about-mv-card h2 {
  font-family: "Jost", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #2B3A4A;
  margin-bottom: 18px;
}

.about-mv-card h2 span {
  color: rgba(78, 168, 255, 0.6);
}

.about-vision-card h2 span {
  color: #4ea8ff;
}

.about-mv-lead {
  font-size: 15px;
  line-height: 1.8;
  color: #5a6a7e;
  margin-bottom: 24px;
  font-weight: 500;
}

/* Checklist */
.about-mv-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-mv-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(200, 215, 235, 0.4);
  font-size: 14px;
  line-height: 1.6;
  color: #4a5568;
}

.about-mv-list li:first-child {
  border-top: none;
}

.about-mission-card .about-mv-list li i {
  color: rgba(78, 168, 255, 0.6)3;
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.about-vision-card .about-mv-list li i {
  color: #4ea8ff;
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .about-mission-vision {
    padding: 70px 0;
  }

  .about-mv-card {
    padding: 36px 28px;
    margin-bottom: 28px;
  }

  .about-mv-card h2 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .about-mv-card {
    padding: 28px 22px;
    border-radius: 16px;
  }

  .about-mv-card h2 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.about-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #020c1b 0%, #0a1628 50%, #0d1f3c 100%);
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255, 80, 3, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 50%, rgba(78, 168, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.about-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.about-cta-content h2 {
  font-family: "Jost", sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(0, 80, 180, 0.15);
}

.about-cta-content p {
  font-size: 16px;
  color: rgba(200, 220, 245, 0.7);
  line-height: 1.6;
  margin-bottom: 32px;
}

.about-cta-btn {
  display: inline-block;
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 14px 38px;
  border-radius: 50px;
  color: #ffffff;
  background: linear-gradient(135deg, #FF5003 0%, #ff6b2b 100%);
  border: none;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 6px 24px rgba(255, 80, 3, 0.3);
}

.about-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(255, 80, 3, 0.4);
  background: linear-gradient(135deg, #ff6b2b 0%, #FF5003 100%);
  color: #ffffff;
}

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

  .about-cta-content p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Support Pages — Services Cards Section
# Uses support- prefix to keep About page styles intact
--------------------------------------------------------------*/
.support-services {
  position: relative;
  background: linear-gradient(135deg, #020c1b 0%, #0a1628 30%, #0d1f3c 60%, #061224 100%);
  padding: 100px 0 120px;
  overflow: hidden;
}

.support-services-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(0, 100, 200, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(0, 150, 255, 0.07) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(30, 80, 160, 0.05) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Section header */
.support-services-header {
  text-align: center;
  margin-bottom: 64px;
}

.support-services-header h2 {
  font-family: "Jost", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 100, 200, 0.15);
}

.support-services-header h2 span {
  color: #4ea8ff;
}

.support-services-subtitle {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: rgba(180, 200, 230, 0.7);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Cards grid — 5 cards with auto-wrap */
.support-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1140px;
  margin: 0 auto;
}

/* Card link wrapper */
.support-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.support-card-link:hover {
  text-decoration: none;
  color: inherit;
}

/* Individual support card */
.support-card {
  position: relative;
  background: rgba(10, 30, 60, 0.55);
  border: 1px solid rgba(60, 130, 220, 0.2);
  border-radius: 18px;
  padding: 40px 30px 36px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.support-card::before {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(50, 140, 255, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.45s ease;
}

.support-card:hover {
  transform: translateY(-10px);
  border-color: rgba(78, 168, 255, 0.5);
  box-shadow:
    0 20px 60px rgba(0, 80, 200, 0.22),
    0 0 35px rgba(50, 130, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.support-card:hover::before {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(50, 140, 255, 0.15) 0%, transparent 70%);
}

/* Card glow orb */
.support-card-glow {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(78, 168, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.45s ease;
}

.support-card:hover .support-card-glow {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(78, 168, 255, 0.14) 0%, transparent 70%);
}

/* Card number watermark */
.support-card-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: "Jost", sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: rgba(78, 168, 255, 0.05);
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s ease;
}

.support-card:hover .support-card-number {
  color: rgba(78, 168, 255, 0.1);
}

/* Card icon */
.support-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(78, 168, 255, 0.15) 0%, rgba(78, 168, 255, 0.05) 100%);
  border: 1px solid rgba(78, 168, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.support-card:hover .support-card-icon {
  background: linear-gradient(135deg, rgba(78, 168, 255, 0.28) 0%, rgba(78, 168, 255, 0.12) 100%);
  box-shadow: 0 0 24px rgba(78, 168, 255, 0.25);
  transform: scale(1.06);
}

.support-card-icon i {
  font-size: 28px;
  color: #4ea8ff;
  filter: drop-shadow(0 0 8px rgba(78, 168, 255, 0.3));
}

/* Card text */
.support-card h3 {
  font-family: "Jost", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.support-card p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(200, 220, 245, 0.72);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

/* Card tags */
.support-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.support-card-tags span {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(78, 168, 255, 0.08);
  border: 1px solid rgba(78, 168, 255, 0.18);
  color: rgba(78, 168, 255, 0.85);
  transition: all 0.3s ease;
}

.support-card:hover .support-card-tags span {
  background: rgba(78, 168, 255, 0.14);
  border-color: rgba(78, 168, 255, 0.3);
}

/* Card arrow indicator */
.support-card-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

.support-card-arrow i {
  font-size: 20px;
  color: rgba(78, 168, 255, 0.4);
  transition: all 0.35s ease;
  transform: translateX(0);
}

.support-card:hover .support-card-arrow i {
  color: #4ea8ff;
  transform: translateX(6px);
}

/* Support cards responsive */
@media (max-width: 991px) {
  .support-services {
    padding: 70px 0 80px;
  }

  .support-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .support-services-header h2 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .support-cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .support-services-header h2 {
    font-size: 28px;
  }

  .support-card {
    padding: 32px 24px 28px;
  }
}

/*--------------------------------------------------------------
# Support CTA Section
--------------------------------------------------------------*/
.support-cta {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
}

.support-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 40px;
  background: linear-gradient(145deg, #f8fafd 0%, #eef3fa 100%);
  border: 1px solid rgba(200, 215, 235, 0.6);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.support-cta-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 60, 130, 0.1);
}

.support-cta-content h2 {
  font-family: "Jost", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #2B3A4A;
  margin-bottom: 14px;
}

.support-cta-content p {
  font-size: 16px;
  color: #5a6a7e;
  line-height: 1.7;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .support-cta-inner {
    padding: 40px 24px;
  }

  .support-cta-content h2 {
    font-size: 26px;
  }

  .support-cta-content p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Support Sub-page Back Link
--------------------------------------------------------------*/
.support-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(78, 168, 255, 0.8);
  text-decoration: none;
  margin-top: 24px;
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid rgba(78, 168, 255, 0.25);
  background: rgba(78, 168, 255, 0.06);
  transition: all 0.35s ease;
}

.support-back-link:hover {
  color: #ffffff;
  background: rgba(78, 168, 255, 0.15);
  border-color: rgba(78, 168, 255, 0.45);
  transform: translateX(-4px);
}

.support-back-link i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.support-back-link:hover i {
  transform: translateX(-3px);
}

/*--------------------------------------------------------------
# Support Sub-page Banner (simple dark banner with breadcrumb)
--------------------------------------------------------------*/
.support-subpage-banner {
  background: linear-gradient(135deg, #0a1628 0%, #0d1f3c 50%, #061224 100%);
  padding: 160px 0 50px;
  position: relative;
  overflow: hidden;
}

.support-subpage-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(78, 168, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.support-subpage-banner h1 {
  font-family: "Jost", sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.support-subpage-breadcrumb {
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(200, 220, 245, 0.5);
  margin-bottom: 0;
}

.support-subpage-breadcrumb a {
  color: #4ea8ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.support-subpage-breadcrumb a:hover {
  color: #ffffff;
}

.support-subpage-breadcrumb span {
  color: rgba(200, 220, 245, 0.5);
}

@media (max-width: 768px) {
  .support-subpage-banner {
    padding: 140px 0 40px;
  }

  .support-subpage-banner h1 {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Support Sub-page Content (white background, text + image)
--------------------------------------------------------------*/
.support-subpage-content {
  background: #ffffff;
  padding: 60px 0 80px;
}

.support-subpage-content h2 {
  font-family: "Jost", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #2B3A4A;
  margin-bottom: 10px;
}

.support-subpage-content hr {
  border: none;
  border-top: 2px solid #e0e5ec;
  margin-bottom: 24px;
  opacity: 1;
}

.support-subpage-content p {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: #5a6a7e;
  margin-bottom: 18px;
}

.support-subpage-content ul {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: #5a6a7e;
  margin-bottom: 18px;
  padding-left: 20px;
}

.support-subpage-content ul li {
  margin-bottom: 6px;
}

.support-subpage-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 10px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .support-subpage-content .col-lg-5 {
    margin-top: 32px;
  }

  .support-subpage-content h2 {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .support-subpage-content {
    padding: 40px 0 60px;
  }

  .support-subpage-content h2 {
    font-size: 22px;
  }

  .support-subpage-content p {
    font-size: 14px;
  }

  .support-subpage-content ul {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Partner Ecosystem Section
--------------------------------------------------------------*/
.partner-ecosystem {
  background: #f7f9fc;
  padding: 100px 0 120px;
}

.partner-section-header {
  text-align: left;
  margin-bottom: 50px;
}

.partner-section-header h2 {
  font-family: "Jost", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #2B3A4A;
  margin-bottom: 12px;
}

.partner-section-header h2 span {
  color: rgba(30, 100, 180, 0.9);
}

.partner-header-line {
  width: 60px;
  height: 3px;
  background: rgba(30, 100, 180, 0.9);
  border-radius: 2px;
  margin-bottom: 18px;
}

.partner-subtitle {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #6b7f96;
  max-width: 600px;
  line-height: 1.7;
}

/* Logo Grid — 6 columns */
.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

/* Individual logo card */
.partner-logo-card {
  background: #ffffff;
  border: 1px solid #e4e9f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  min-height: 110px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.partner-logo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(30, 100, 180, 0.9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-logo-card:hover {
  border-color: rgba(30, 100, 180, 0.35);
  box-shadow: 0 8px 30px rgba(30, 100, 180, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}

.partner-logo-card:hover::before {
  transform: scaleX(1);
}

.partner-logo-card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: 0.85;
  transition: all 0.35s ease;
}

.partner-logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.06);
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
  .partner-logo-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
}

@media (max-width: 991px) {
  .partner-ecosystem {
    padding: 80px 0 100px;
  }

  .partner-logo-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .partner-section-header h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .partner-logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .partner-logo-card {
    padding: 18px 12px;
    min-height: 90px;
  }

  .partner-logo-card img {
    max-height: 48px;
  }
}

@media (max-width: 480px) {
  .partner-ecosystem {
    padding: 60px 0 80px;
  }

  .partner-logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .partner-logo-card {
    padding: 16px 10px;
    min-height: 80px;
    border-radius: 8px;
  }

  .partner-logo-card img {
    max-height: 40px;
  }

  .partner-section-header h2 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Certificates Section
--------------------------------------------------------------*/
.certificates-section .certificate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.certificate-card {
  background: #ffffff;
  border: 1px solid #e4e9f0;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.certificate-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(30, 100, 180, 0.9), rgba(78, 168, 255, 0.7));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.certificate-card:hover {
  border-color: rgba(30, 100, 180, 0.3);
  box-shadow: 0 12px 40px rgba(30, 100, 180, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}

.certificate-card:hover::before {
  transform: scaleX(1);
}

.certificate-card-inner {
  padding: 28px 28px 24px;
}

.certificate-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(30, 100, 180, 0.08);
  border: 1px solid rgba(30, 100, 180, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.certificate-icon i {
  font-size: 22px;
  color: rgba(30, 100, 180, 0.9);
}

.certificate-card:hover .certificate-icon {
  background: rgba(30, 100, 180, 0.12);
  border-color: rgba(30, 100, 180, 0.3);
}

.certificate-card-inner h3 {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #2B3A4A;
  margin-bottom: 18px;
}

/* Certificate image wrapper */
.certificate-img-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e8ecf2;
}

.certificate-img-wrap a {
  display: block;
  position: relative;
}

.certificate-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.certificate-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 100, 180, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  gap: 8px;
}

.certificate-overlay i {
  font-size: 28px;
  color: #ffffff;
}

.certificate-overlay span {
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
}

.certificate-img-wrap:hover .certificate-overlay {
  opacity: 1;
}

.certificate-img-wrap:hover img {
  transform: scale(1.04);
}

/* Certificate responsive */
@media (max-width: 768px) {
  .certificates-section .certificate-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .certificate-card-inner {
    padding: 22px 20px 20px;
  }

  .certificate-card-inner h3 {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .certificate-card-inner {
    padding: 18px 16px 16px;
  }

  .certificate-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .certificate-icon i {
    font-size: 18px;
  }
}