/* section 1 */
.au-hero {
  font-family: 'Bebas Neue', sans-serif;
  position: relative;
  height: 750px;
  overflow: hidden;
}

/* background image */
.au-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(6px);
  transform: scale(1.1);
  z-index: 0;
}

/* overlay */
.au-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

/* content center */
.au-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  height: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 0 20px;
}

/* typography */
.au-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  opacity: 0.8;
  margin-bottom: 10px;
}

.au-title {
  font-size: clamp(1.5rem, 4vw, 4rem);
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #00c6ff, #00bee0, #00c6ff); /* ปรับสีได้ */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* fallback สำหรับ browser บางตัว */
  background-clip: text;
  color: transparent;
}

.au-desc {
  font-size: 16px;
  max-width: 650px;
  line-height: 1.6;
  opacity: 0.9;
  text-align: center !important;
}

/* section 2 */
.cp-about {
  padding: 80px 20px;
  background: #1a1a1a;
  color: #fff;
}

.cp-about__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.cp-about__image {
  position: relative;
}

.cp-about__image-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.cp-about__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* BADGE */
.cp-about__badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  padding: 12px 18px;
  border-radius: 10px;
}

.cp-about__badge-num {
  font-size: 22px;
  font-weight: bold;
  display: block;
}

.cp-about__badge-text {
  font-size: 12px;
}

/* CONTENT */
.cp-about__label {
  font-size: 13px;
  letter-spacing: 2px;
  opacity: 0.7;
}

.cp-about__title {
  font-size: 40px;
  margin: 10px 0 20px;
  color: #0097b0;
}

.cp-about__text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.85);
}

/* SERVICES GRID */
.cp-about__services {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.cp-service {
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  font-size: 14px;
  background: rgba(255,255,255,0.03);
}

.cp-exp {
  padding: 80px 20px;
  background: linear-gradient(180deg, #1a1a1a, #05103d, #000);
  color: #fff;
}

.cp-exp__container {
  max-width: 1200px;
  margin: 0 auto;
}

.cp-exp__title {
  font-size: 40px;
  text-align: center;
  margin-bottom: 10px;
  color: #fff;
}

.cp-exp__subtitle {
  text-align: center;
  opacity: 0.7;
  margin-bottom: 50px;
}

/* GRID */
.cp-exp__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.cp-exp__card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 20px;
  transition: 0.3s;
}

.cp-exp__card:hover {
  transform: translateY(-5px);
  border-color: #00c6ff;
}

/* TITLE */
.cp-exp__card-title {
  font-size: 18px;
  margin-bottom: 15px;
  color: #00c6ff;
}

/* LIST */
.cp-exp__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cp-exp__list li {
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.05);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cp-exp__grid {
    grid-template-columns: 1fr;
  }
}

/* partner page */
.pt-partner {
  padding: 80px 20px;
  background: #0b1120;
  color: #fff;
}

.pt-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pt-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 10px;
  color: #fff;
}

.pt-subtitle {
  text-align: center;
  opacity: 0.7;
  margin-bottom: 50px;
}

/* GRID */
.pt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.pt-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 25px;
  text-align: center;
}

.pt-card .partner-logo {
  align-items: center;
}

/* LOGO */
.pt-card img {
  height: 50px;
  margin-bottom: 15px;
  object-fit: contain;
}

/* TITLE */
.pt-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #0097b0;

}

/* DESC */
.pt-card p {
  font-size: 13px;
  opacity: 0.7;
}

.pt-logo {
  height: 60px;           /* ความสูงเท่ากัน */
  display: flex;
  align-items: center;    /* จัดกลางแนวตั้ง */
  justify-content: center;/* จัดกลางแนวนอน */
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pt-grid {
    grid-template-columns: 1fr;
  }
}