/* Floating Wrapper */
.apx-profile-wrapper {
    position: fixed;   /* 🔥 MAIN CHANGE */
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    z-index: 9999;
}

/* Circle */
.apx-profile-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f57a59;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    margin: auto;
    background: #fff;
}

.apx-profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Box */
.apx-profile-box {
    margin-top: 10px;
    background: #fff;
    padding: 10px 0;
    border-radius: 25px;
    width: 140px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Button */
.apx-profile-btn {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    display: block;
}

.apx-profile-btn:hover {
    color: #f57a59;
}

@media (max-width: 768px) {
    .apx-profile-wrapper {
        right: 5px;
        top: auto;
        bottom: 90px;
        transform: none;
    }

    .apx-profile-circle {
        width: 90px;
        height: 90px;
    }

    .apx-profile-box {
        width: 110px;
    }
}












/* ============= Register page ============= */
/* ============= Register page ============= */
.mp-reg {
      --mp-orange:      #E87722;
      --mp-orange-dark: #b85a10;
      --mp-green-dark:  #1a4731;
      --mp-green-mid:   #2d6a4f;
      --mp-green-light: #e6f4ec;
      --mp-white:       #ffffff;
      --mp-off-white:   #fdf8f3;
      --mp-text-dark:   #1a1a1a;
      --mp-text-muted:  #666666;
      --mp-border:      #e0d6ca;

      font-family: 'Nunito', sans-serif;
      background: var(--mp-off-white);
      color: var(--mp-text-dark);
      box-sizing: border-box;
    }

    .mp-reg *, .mp-reg *::before, .mp-reg *::after {
      box-sizing: inherit;
      margin: 0;
      padding: 0;
    }

    /* ── HERO ── */
    .mp-reg .hero {
      background: linear-gradient(135deg, var(--mp-green-dark), var(--mp-green-mid));
      padding: 120px 24px 40px;
      text-align: center;
    }
    .mp-reg .hero-tag {
      display: inline-block;
      background: var(--mp-orange);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 4px 14px;
      border-radius: 2px;
      margin-bottom: 14px;
    }
    .mp-reg .hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(32px, 6vw, 52px);
      color: #fff;
      letter-spacing: 2px;
      line-height: 1.1;
      margin-bottom: 8px;
    }
    .mp-reg .hero h1 span { color: #f9a34f; }
    .mp-reg .hero p { color: rgba(255,255,255,0.7); font-size: 14px; }

    /* ── PAGE WRAPPER ── */
    .mp-reg .page {
      max-width: 600px;
      margin: 0 auto;
      padding: 40px 20px 64px;
    }

    /* ── FORM CARD ── */
    .mp-reg .form-card {
      background: var(--mp-white);
      border-radius: 16px;
      border: 1px solid var(--mp-border);
      box-shadow: 0 4px 24px rgba(0,0,0,0.08);
      padding: 36px 40px;
    }
    @media (max-width: 520px) {
      .mp-reg .form-card { padding: 24px 20px; }
    }

    /* ── SECTION LABELS ── */
    .mp-reg .sec-tag {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 12px;
      letter-spacing: 2px;
      color: var(--mp-orange);
      margin-bottom: 4px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .mp-reg .sec-tag::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--mp-border);
    }
    .mp-reg .sec-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 24px;
      color: var(--mp-green-dark);
      letter-spacing: 1px;
      margin-bottom: 20px;
    }

    /* ── ROWS & FIELDS ── */
    .mp-reg .row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 14px;
    }
    .mp-reg .row.full { grid-template-columns: 1fr; }
    @media (max-width: 440px) {
      .mp-reg .row { grid-template-columns: 1fr; }
    }

    .mp-reg .field { display: flex; flex-direction: column; gap: 5px; }

    .mp-reg label {
      font-size: 13px;
      font-weight: 700;
      color: var(--mp-text-dark);
    }
    .mp-reg label .req { color: var(--mp-orange); margin-left: 2px; }

    .mp-reg input[type="text"],
    .mp-reg input[type="email"],
    .mp-reg input[type="tel"],
    .mp-reg input[type="number"],
    .mp-reg input[type="date"],
    .mp-reg select,
    .mp-reg textarea {
      width: 100%;
      padding: 10px 13px;
      border: 1.5px solid var(--mp-border);
      border-radius: 8px;
      font-family: 'Nunito', sans-serif;
      font-size: 14px;
      color: var(--mp-text-dark);
      background: var(--mp-off-white);
      outline: none;
      appearance: none;
      -webkit-appearance: none;
      transition: border-color .2s, box-shadow .2s;
    }
    .mp-reg input:focus,
    .mp-reg select:focus,
    .mp-reg textarea:focus {
      border-color: var(--mp-green-mid);
      box-shadow: 0 0 0 3px rgba(45,106,79,0.12);
      background: #fff;
    }
    .mp-reg select {
      background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
      padding-right: 34px;
      cursor: pointer;
    }
    .mp-reg textarea { resize: vertical; min-height: 80px; }

    /* ── SKILL PICKER ── */
    .mp-reg .skill-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-bottom: 18px;
    }
    @media (max-width: 440px) {
      .mp-reg .skill-grid { grid-template-columns: 1fr 1fr; }
    }
    .mp-reg .skill-opt input[type="radio"] { display: none; }
    .mp-reg .skill-opt label {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
      padding: 12px 6px;
      border: 1.5px solid var(--mp-border);
      border-radius: 10px;
      background: var(--mp-off-white);
      cursor: pointer;
      font-size: 12px;
      font-weight: 700;
      color: var(--mp-text-muted);
      text-align: center;
      transition: border-color .2s, background .2s, color .2s;
    }
    .mp-reg .skill-opt label .ico { font-size: 22px; }
    .mp-reg .skill-opt input:checked + label {
      border-color: var(--mp-orange);
      background: #fff5ec;
      color: var(--mp-orange-dark);
      box-shadow: 0 0 0 3px rgba(232,119,34,0.10);
    }

    /* ── DAYS GRID ── */
    .mp-reg .days-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-bottom: 18px;
    }
    .mp-reg .day-opt input[type="checkbox"] { display: none; }
    .mp-reg .day-opt label {
      display: block;
      text-align: center;
      padding: 9px 4px;
      border: 1.5px solid var(--mp-border);
      border-radius: 8px;
      background: var(--mp-off-white);
      cursor: pointer;
      font-size: 13px;
      font-weight: 700;
      color: var(--mp-text-muted);
      transition: border-color .2s, background .2s, color .2s;
    }
    .mp-reg .day-opt input:checked + label {
      border-color: var(--mp-green-mid);
      background: var(--mp-green-light);
      color: var(--mp-green-dark);
    }

    /* ── DIVIDER ── */
    .mp-reg .divider {
      border: none;
      border-top: 1px solid var(--mp-border);
      margin: 24px 0;
    }

    /* ── PRIVACY ── */
    .mp-reg .privacy-row {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 24px;
    }
    .mp-reg .privacy-row input[type="checkbox"] {
      width: 16px;
      height: 16px;
      accent-color: var(--mp-orange);
      flex-shrink: 0;
      margin-top: 2px;
      cursor: pointer;
      display: inline-block;
    }
    .mp-reg .privacy-row label {
      font-size: 12px;
      font-weight: 400;
      color: var(--mp-text-muted);
      cursor: pointer;
      line-height: 1.5;
    }
    .mp-reg .privacy-row label a { color: var(--mp-orange); text-decoration: none; }
    .mp-reg .privacy-row label a:hover { text-decoration: underline; }

    /* ── SUBMIT ── */
    .mp-reg .btn-submit {
      width: 100%;
      padding: 14px;
      background: var(--mp-orange);
      color: #fff;
      border: none;
      border-radius: 10px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 20px;
      letter-spacing: 2px;
      cursor: pointer;
      transition: background .2s, transform .1s;
    }
    .mp-reg .btn-submit:hover { background: var(--mp-orange-dark); }
    .mp-reg .btn-submit:active { transform: scale(0.98); }

    .mp-reg .form-note {
      text-align: center;
      margin-top: 12px;
      font-size: 12px;
      color: var(--mp-text-muted);
    }
    .mp-reg .form-note a { color: var(--mp-orange); text-decoration: none; }






  /* ==========================================
   BLOG DETAILS PAGE CSS
========================================== */

.ax-blog-details-page{
    background: #f5f7fb;
    overflow: hidden;
    position: relative;
}

/* =========================
   BLUR SIDE BACKGROUND
========================= */

.ax-blog-details-page::before,
.ax-blog-details-page::after{
    content: "";
    position: fixed;
    top: 0;
    width: 280px;
    height: 100%;
    background: rgba(13, 110, 253, 0.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 1;
}

.ax-blog-details-page::before{
    left: 0;
}

.ax-blog-details-page::after{
    right: 0;
}

/* =========================
   MAIN CENTER AREA
========================= */

.axbd-main-center{
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 950px;
    margin: auto;
    background: #fff;
    min-height: 100vh;
    box-shadow: 0 0 40px rgba(0,0,0,0.08);
}

/* HERO */
.axbd-hero-section{
    position: relative;
    width: 100%;
    height: 420px;
}

.axbd-hero-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.axbd-hero-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.60);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.axbd-hero-content{
    max-width: 850px;
    text-align: center;
    color: #fff;
}

.axbd-blog-badge{
    display: inline-block;
    background: #0d6efd;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
}

.axbd-hero-content h1{
    font-size: 52px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.axbd-blog-meta{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 15px;
}

/* CONTENT */
.axbd-blog-content-box{
    padding: 60px;
}

.axbd-blog-content-box h2{
    font-size: 34px;
    margin-bottom: 20px;
    color: #111;
}

.axbd-blog-content-box h3{
    font-size: 26px;
    margin: 35px 0 18px;
    color: #111;
}

.axbd-blog-content-box p{
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 20px;
}

.axbd-blog-content-box img{
    width: 100%;
    border-radius: 16px;
    margin: 30px 0;
}

.axbd-blog-quote{
    background: #eef4ff;
    border-left: 5px solid #0d6efd;
    padding: 30px;
    border-radius: 12px;
    margin: 35px 0;
}

.axbd-blog-quote p{
    margin: 0;
    font-size: 18px;
    color: #222;
    font-style: italic;
}

.axbd-back-btn{
    display: inline-block;
    padding: 14px 28px;
    background: #f57a59;
    color: #fff;
    border-radius: 10px;
    margin-top: 20px;
    transition: 0.3s;
    text-decoration: none;
}

.axbd-back-btn:hover{
    background: #f57a59e3;
    color: #fff;
}

/* =========================
   MOBILE VIEW
========================= */

@media(max-width: 991px){

    /* blur remove */
    .ax-blog-details-page::before,
    .ax-blog-details-page::after{
        display: none;
    }

    .axbd-hero-content h1{
        font-size: 38px;
    }

}

@media(max-width: 576px){

    .axbd-hero-section{
        height: 320px;
    }

    .axbd-hero-content h1{
        font-size: 28px;
    }

    .axbd-blog-content-box{
        padding: 25px;
    }

    .axbd-blog-content-box h2{
        font-size: 28px;
    }

}

@media (max-width: 576px) {
    .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content h1 {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }

    .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content h4,
    .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content p {
        display: none;
    }
}