:root {
  --gold: #d4af37;
  --gold-light: #f7d774;
  --gold-gradient: linear-gradient(135deg, #d4af37, #f7d774);

  --black: #080808;
  --white: #ffffff;

  --glass: rgba(255, 255, 255, 0.06);
  --border: rgba(212, 175, 55, 0.18);

  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

/* GLOBAL */
body {
  background: var(--black);
  color: #fff;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
}

/* =======================
   HERO SECTION
======================= */

.about-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 120px 0 80px;
  position: relative;
}

.about-hero h1 {
  font-size: 54px;
  font-weight: 900;
  line-height: 1.2;
  margin-top: 25px;
}

.about-hero h1 span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-hero p {
  max-width: 750px;
  margin: 20px auto 0;
  color: #cfcfcf;
  line-height: 1.8;
  font-size: 1.1rem;
}

/* PILLS */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 100px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--gold);
  font-weight: 600;
  backdrop-filter: blur(20px);
}

/* =======================
   SECTION TITLE
======================= */

.section-title {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
}

.section-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =======================
   GLASS CARDS
======================= */

.glass-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  height: 100%;
  backdrop-filter: blur(20px);
  transition: 0.4s;
  box-shadow: var(--shadow);
}

.glass-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
}

.glass-card h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
}

.glass-card p {
  color: #cfcfcf;
  line-height: 1.8;
}

/* ICON BOX */
.icon-box {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;

  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.icon-box i {
  font-size: 28px;
  color: var(--gold);
}

/* =======================
   WHO WE ARE SECTION
======================= */

.glass-card h4 i {
  color: var(--gold);
}

/* =======================
   CTA SECTION
======================= */

.cta-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 1),
    rgba(20, 20, 20, 1)
  );
  text-align: center;
}

.cta-section h2 {
  font-size: 44px;
  font-weight: 900;
}

.cta-section p {
  color: #cfcfcf;
  max-width: 700px;
  margin: 20px auto 40px;
  line-height: 1.8;
}

/* BUTTON (reuse your main theme button) */
.hero-register-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 16px 40px;
  border-radius: 100px;

  background: var(--gold-gradient);
  color: #000;
  font-weight: 700;
  text-decoration: none;

  transition: 0.4s;
}

.hero-register-btn:hover {
  transform: translateY(-5px);
  color: #000;
}

/* =======================
   RESPONSIVE
======================= */

@media (max-width: 991px) {
  .about-hero h1 {
    font-size: 36px;
  }

  .section-title {
    font-size: 28px;
  }

  .cta-section h2 {
    font-size: 30px;
  }

  .glass-card {
    padding: 22px;
  }
}


/* DARK OVERLAY */
.about-hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.92) 0%,
        rgba(0,0,0,0.75) 40%,
        rgba(0,0,0,0.35) 100%
    );

    z-index: 1;
}

/* CONTENT ABOVE IMAGE */
.about-hero-banner .container {
    position: relative;
    z-index: 2;
}

/* BREADCRUMB GLASS BOX */
.breadcrumb-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 18px;
   
    backdrop-filter: blur(20px);

    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.breadcrumb-box a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-box span {
    color: #ccc;
}

.breadcrumb-box .active {
    color: #fff;
    font-weight: 600;
}

/* HERO TITLE */
.about-hero-banner h1 {
    font-size: 54px;
    font-weight: 900;
    color: #fff;
    margin-top: 25px;
}

.about-hero-banner h1 span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* DESCRIPTION */
.about-hero-banner p {
    color: #d0d0d0;
    max-width: 600px;
    margin-top: 15px;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .about-hero-banner {
        text-align: center;
        min-height: 70vh;
    }

    .about-hero-banner h1 {
        font-size: 36px;
    }

    .about-hero-banner p {
        margin-left: auto;
        margin-right: auto;
    }

    .breadcrumb-box {
        justify-content: center;
    }
    
}

