/* ═══════════════════════════════════════════════════
   SHARED / COMMON
   ═══════════════════════════════════════════════════ */

/* Remove browser spin buttons on number inputs */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* Shared section box-sizing reset pattern — applied per section below */

/* Shared label style used across sections */
.aw-label,
.ms-label,
.ts-label,
.rg-label,
.tf-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
}

/* Section-specific label colors */
.aw-label { color: rgba(255,255,255,0.7); }
.ms-label,
.ts-label,
.rg-label,
.tf-label { color: #8B0000; }

/* Shared large title style */
.aw-title,
.tf-title,
.ms-title,
.ts-title,
.rg-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    text-align: center;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.aw-title,
.rg-title { color: #ffffff; }
.ms-title,
.ts-title { color: #0d1b2a; }

/* Shared description text */
.aw-desc,
.rg-desc {
    font-size: 1rem;
    text-align: center;
    max-width: 520px;
    margin: 0 auto 3.5rem auto;
    line-height: 1.7;
}
.aw-desc  { color: rgba(255,255,255,0.8); }
.rg-desc  { color: rgba(255,255,255,0.82); max-width: 560px; margin-bottom: 44px; }

/* Shared fade-up animation */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════
   VIDEO BANNER
   ═══════════════════════════════════════════════════ */

.hero-banner-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
}

.hero-banner-section *,
.hero-banner-section *::before,
.hero-banner-section *::after { box-sizing: border-box; }

.hero-banner-section .hb-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-banner-section .hb-content {
    position: relative;
    z-index: 2;
    padding: 100px 16px 60px;
    text-align: center;
}

.hero-banner-section .hb-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 8px 22px;
    margin-bottom: 36px;
}

.hero-banner-section .hb-title-1 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(2.4rem, 7vw, 5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.05;
    margin-bottom: 0;
}

.hero-banner-section .hb-title-2 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(2.4rem, 7vw, 5rem);
    font-weight: 800;
    color: #ffb3b3;
    line-height: 1.05;
    margin-bottom: 32px;
}

.hero-banner-section .hb-desc {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(255,255,255,0.78);
    max-width: 580px;
    margin: 0 auto 44px auto;
    line-height: 1.75;
}

.hero-banner-section .hb-btn-wrap {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 70px;
}

.hero-banner-section .hb-btn-primary,
.hero-banner-section .hb-btn-outline {
    border-radius: 50px;
    padding: 15px 36px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    text-decoration: none;
    display: inline-block;
    border: 2.5px solid #ffffff;
}

.hero-banner-section .hb-btn-primary {
    background: #ffffff;
    color: #8B0000;
}

.hero-banner-section .hb-btn-primary:hover {
    background: #f5e0e0;
    border-color: #f5e0e0;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-banner-section .hb-btn-outline {
    background: transparent;
    color: #ffffff;
}

.hero-banner-section .hb-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-banner-section .hb-stats {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 36px 16px;
}

.hero-banner-section .hb-stat-num {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 6px;
}

.hero-banner-section .hb-stat-label {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

.hero-banner-section .hb-stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.15);
    align-self: stretch;
}

@media (max-width: 575px) {
    .hero-banner-section .hb-content { padding: 80px 16px 40px; }
    .hero-banner-section .hb-btn-wrap { flex-direction: column; align-items: center; gap: 14px; margin-bottom: 50px; }
    .hero-banner-section .hb-btn-primary,
    .hero-banner-section .hb-btn-outline { width: 100%; max-width: 320px; text-align: center; }
    .hero-banner-section .hb-stat-divider { display: none; }
}

/* ═══════════════════════════════════════════════════
   TRANSFORMATIONS HEADER
   ═══════════════════════════════════════════════════ */

.transformations-section {
    padding: 70px 16px 60px;
    font-family: 'DM Sans', sans-serif;
}

.transformations-section *,
.transformations-section *::before,
.transformations-section *::after { box-sizing: border-box; }


.transformations-section .tf-desc {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: #888;
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}

@media (max-width: 575px) {
    .transformations-section { padding: 48px 16px 40px; }
}

/* ═══════════════════════════════════════════════════
   TIMELINE
   ═══════════════════════════════════════════════════ */

.speaking-timeline-section {
    background-color: #F4F2F0;
    padding: 3rem 1rem;
    font-family: 'DM Sans', sans-serif;
    color: #1a1a1a;
}

.speaking-timeline-section *,
.speaking-timeline-section *::before,
.speaking-timeline-section *::after { box-sizing: border-box; }

.speaking-timeline-section .tl-wrapper {
    position: relative;
    padding: 1rem 0;
}

.speaking-timeline-section .tl-wrapper::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: #D9B8B8;
}

.speaking-timeline-section .tl-item {
    display: flex;
    justify-content: space-around;
    padding-right: calc(50% + 40px);
    padding-left: 0;
    margin-bottom: 2.8rem;
    position: relative;
}

.speaking-timeline-section .tl-item.tl-right {
    justify-content: space-around;
    padding-right: 0;
    padding-left: calc(50% + 40px);
}

.speaking-timeline-section .tl-item::after {
    content: '';
    position: absolute;
    top: 26px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px; height: 14px;
    border-radius: 50%;
    background: #8B1A1A;
    border: 3px solid #F4F2F0;
    box-shadow: 0 0 0 2px #D9B8B8;
    z-index: 1;
}

.speaking-timeline-section .tl-card {
    background: #ffffff;
    border-radius: 14px;
    max-width: 370px;
    width: 100%;
    box-shadow: 0 2px 18px rgba(0,0,0,0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: fadeUp 0.5s ease both;
}

.speaking-timeline-section .tl-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(139,26,26,0.13);
}

.speaking-timeline-section .tl-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.4rem;
    margin-top: 0;
}

.speaking-timeline-section .tl-card-text {
    font-size: 0.875rem;
    color: #777;
    line-height: 1.6;
    margin: 0;
}

.speaking-timeline-section .tl-badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 0.75rem;
}

/* Shared badge base */
.speaking-timeline-section .tl-badge-year,
.speaking-timeline-section .tl-badge-type {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 20px;
    font-family: 'DM Sans', sans-serif;
}

.speaking-timeline-section .tl-badge-year {
    background: #8B1A1A;
    color: #fff;
    padding: 3px 12px;
    letter-spacing: 0.03em;
}

.speaking-timeline-section .tl-badge-type {
    border: 1.5px solid #8B1A1A;
    color: #8B1A1A;
    padding: 2px 12px;
    background: transparent;
    font-weight: 500;
}

/* Staggered animation delays */
.speaking-timeline-section .tl-item:nth-child(1) .tl-card { animation-delay: 0.05s; }
.speaking-timeline-section .tl-item:nth-child(2) .tl-card { animation-delay: 0.15s; }
.speaking-timeline-section .tl-item:nth-child(3) .tl-card { animation-delay: 0.25s; }
.speaking-timeline-section .tl-item:nth-child(4) .tl-card { animation-delay: 0.35s; }
.speaking-timeline-section .tl-item:nth-child(5) .tl-card { animation-delay: 0.45s; }

@media (max-width: 768px) {
    .speaking-timeline-section .tl-wrapper::before,
    .speaking-timeline-section .tl-item::after { display: none; }

    .speaking-timeline-section .tl-item,
    .speaking-timeline-section .tl-item.tl-right {
        justify-content: flex-start;
        padding-right: 0;
        padding-left: 0;
    }

    .speaking-timeline-section .tl-card { max-width: 100%; }
}

/* ═══════════════════════════════════════════════════
   AWARDS
   ═══════════════════════════════════════════════════ */

.awards-section {
    background-color: #8B0000;
    padding: 5rem 1rem;
    font-family: 'DM Sans', sans-serif;
    color: #ffffff;
}

.awards-section *,
.awards-section *::before,
.awards-section *::after { box-sizing: border-box; }

.awards-section .aw-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    height: 100%;
    transition: background 0.25s ease, transform 0.25s ease;
    animation: fadeUp 0.5s ease both;
}

.awards-section .aw-card:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-4px);
}

.awards-section .aw-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    line-height: 1;
}

.awards-section .aw-year {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.awards-section .aw-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.6rem;
    line-height: 1.35;
}

.awards-section .aw-card-text {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin: 0;
}

/* Staggered animation delays */
.awards-section .aw-col:nth-child(1) .aw-card { animation-delay: 0.05s; }
.awards-section .aw-col:nth-child(2) .aw-card { animation-delay: 0.12s; }
.awards-section .aw-col:nth-child(3) .aw-card { animation-delay: 0.19s; }
.awards-section .aw-col:nth-child(4) .aw-card { animation-delay: 0.26s; }
.awards-section .aw-col:nth-child(5) .aw-card { animation-delay: 0.33s; }
.awards-section .aw-col:nth-child(6) .aw-card { animation-delay: 0.40s; }

@media (max-width: 576px) {
    .awards-section { padding: 3rem 1rem; }
    .awards-section .aw-card { border-radius: 12px; padding: 1.3rem 1.2rem; }
}

/* ═══════════════════════════════════════════════════
   MENTOR
   ═══════════════════════════════════════════════════ */

.mentor-section {
    background-color: #ffffff;
    padding: 60px 16px 70px;
    font-family: 'DM Sans', sans-serif;
    color: #111;
}

.mentor-section *,
.mentor-section *::before,
.mentor-section *::after { box-sizing: border-box; }

.mentor-section .ms-title { margin-bottom: 56px; }

.mentor-section .ms-img-outer {
    width: 300px; height: 300px;
    border-radius: 50%;
    background: #8B0000;
    padding: 3px;
    flex-shrink: 0;
}

.mentor-section .ms-img-inner {
    width: 100%; height: 100%;
    border-radius: 50%;
    background: #7a0000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mentor-section .ms-img-inner img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.mentor-section .ms-name {
    font-size: 1.9rem;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 4px;
    line-height: 1.2;
}

.mentor-section .ms-role {
    font-size: 1rem;
    font-weight: 600;
    color: #8B0000;
    margin-bottom: 20px;
    line-height: 1.45;
}

.mentor-section .ms-bio {
    font-size: 0.97rem;
    color: #3a3a3a;
    line-height: 1.78;
    margin-bottom: 14px;
}

.mentor-section .ms-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.mentor-section .ms-tag {
    display: inline-block;
    border: 1.8px solid #c94040;
    color: #8B0000;
    background: #fff5f5;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 50px;
    padding: 5px 18px;
    white-space: nowrap;
}

.mentor-section .ms-quote {
    border-left: 4px solid #8B0000;
    padding-left: 18px;
    margin: 0;
}

blockquote::before { display: none; }

.mentor-section .ms-quote-text {
    font-size: 0.97rem;
    font-style: italic;
    color: #444;
    line-height: 1.75;
    margin: 0;
}

.mentor-section .ms-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.mentor-section .ms-left {
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.mentor-section .ms-right { flex: 1; min-width: 0; }

@media (max-width: 767px) {
    .mentor-section { padding: 40px 16px 50px; }
    .mentor-section .ms-row { flex-direction: column; gap: 32px; }
    .mentor-section .ms-img-outer { width: 200px; height: 200px; padding: 8px; }
    .mentor-section .ms-name { font-size: 1.45rem; }
    .mentor-section .ms-role { font-size: 0.9rem; }
    .mentor-section .ms-bio { font-size: 0.9rem; }
    .mentor-section .ms-title { margin-bottom: 36px; }
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════ */

.testimonials-section {
    background-color: #f0f2f5;
    padding: 70px 16px 80px;
    font-family: 'DM Sans', sans-serif;
    color: #111;
}

.testimonials-section *,
.testimonials-section *::before,
.testimonials-section *::after { box-sizing: border-box; }

.testimonials-section .ts-title { margin-bottom: 52px; }

.testimonials-section .ts-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 36px 32px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonials-section .ts-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 36px rgba(0,0,0,0.10);
}

.testimonials-section .ts-quote-mark {
    font-size: 1.6rem;
    font-weight: 900;
    color: #8B0000;
    line-height: 1;
    margin-bottom: 20px;
    font-family: Georgia, serif;
    letter-spacing: -2px;
}

.testimonials-section .ts-quote-text {
    font-size: 0.97rem;
    font-style: italic;
    color: #2a2a2a;
    line-height: 1.8;
    margin-bottom: 28px;
    flex: 1;
}

.testimonials-section .ts-divider {
    border: none;
    border-top: 1px solid #e8e8e8;
    margin-bottom: 20px;
}

.testimonials-section .ts-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonials-section .ts-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: #f2c8c8;
    color: #8B0000;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonials-section .ts-author-name {
    font-size: 1rem;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 2px;
    line-height: 1.2;
}

.testimonials-section .ts-author-role {
    font-size: 0.82rem;
    color: #888;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .testimonials-section { padding: 48px 16px 56px; }
    .testimonials-section .ts-title { margin-bottom: 36px; }
    .testimonials-section .ts-card { padding: 28px 24px 24px; }
}

/* ═══════════════════════════════════════════════════
   REGISTER FORM
   ═══════════════════════════════════════════════════ */

.register-section {
    background: radial-gradient(ellipse at center, #a00000 0%, #5a0000 100%);
    padding: 70px 16px 80px;
    font-family: 'DM Sans', sans-serif;
}

.register-section *,
.register-section *::before,
.register-section *::after { box-sizing: border-box; }

.register-section .rg-title { margin-bottom: 14px; }

.register-section .rg-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 40px 32px;
    max-width: 680px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.register-section .rg-label-field {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 6px;
    display: block;
}

.register-section .rg-label-field span { color: #8B0000; }

.register-section .rg-input {
    width: 100%;
    border: 1.5px solid #e2e2e2;
    border-radius: 10px;
    padding: 13px 16px;
    font-size: 0.92rem;
    color: #333;
    font-family: 'DM Sans', sans-serif;
    background-color: #ffffff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.register-section .rg-input::placeholder { color: #aaa; }

.register-section .rg-input:focus {
    border-color: #8B0000;
    box-shadow: 0 0 0 3px rgba(139,0,0,0.1);
    background-color: #ffffff;
}

.register-section select.rg-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888888' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px 8px;
    padding-right: 42px;
    cursor: pointer;
    color: #1a1a1a;
}

.register-section select.rg-input,
.register-section select.rg-input option { color: #1a1a1a; }

.register-section select.rg-input:hover,
.register-section select.rg-input:focus { background-color: #ffffff; }

.register-section select.rg-input:focus {
    border-color: #8B0000;
    box-shadow: 0 0 0 3px rgba(139,0,0,0.1);
}

.register-section .rg-btn {
    width: 100%;
    background: #8B0000;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 16px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: background 0.2s ease, transform 0.15s ease;
    margin-top: 6px;
}

.register-section .rg-btn:hover { background: #6a0000; transform: translateY(-1px); }
.register-section .rg-btn:active { transform: translateY(0); }

.register-section .rg-note {
    font-size: 0.78rem;
    color: #aaa;
    text-align: center;
    margin-top: 14px;
    margin-bottom: 0;
}

.register-section .rg-mb { margin-bottom: 18px; }

@media (max-width: 575px) {
    .register-section { padding: 48px 12px 56px; }
    .register-section .rg-card { padding: 28px 20px 24px; border-radius: 16px; }
}

/* ═══════════════════════════════════════════════════
   VIDEO CARD SECTION (recent-news/choose-bx)
   ═══════════════════════════════════════════════════ */

.shop-banner-video {
    width: 100%;
    height: 480px;
    display: block;
    object-fit: cover;
}

.error { color: red; font-size: 14px; }
.hidden { display: none; }
.recent-news .post-title {
    font-size: 21px;
}
.placeholder-text {
      text-align: center;
      color: #888;
      font-size: 15px;
      line-height: 1.6;
    }
 
    #registerBtn {
      position: fixed;
      bottom: 32px;
      right: 475px;
      background-color: #7a0a0a;
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 14px 28px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.35);
      transition: background-color 0.2s ease, transform 0.15s ease;
      z-index: 9999;
      letter-spacing: 0.3px;
    }
 
    #registerBtn:hover {
      background-color: #3d0404;
      transform: scale(1.04);
    }
 
    #registerBtn:active {
      transform: scale(0.97);
    }
 
    .dot {
      width: 10px;
      height: 10px;
      background: #ff6b6b;
      border-radius: 50%;
      display: inline-block;
      flex-shrink: 0;
    }
    @media (max-width: 1024px), (max-width: 768px), (max-width: 480px) {
  #registerBtn {
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    right: unset;
    white-space: nowrap;
  }
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;  /* ← add this */
}