/* ========= Eduva Global Theme ========= */
:root {
    --eduva-dark: #1a4042;
    --eduva-green: #76c487;
    --eduva-green-soft: #e9f7ef;
    --eduva-muted: #74848e;
    --bg: #ffffff;
    --card-radius: 20px;
    --shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

html,
body {
    width: 100%;
    height: 100%;
    background: var(--bg);
}

/* ======== onboarding (index.html) ======== */
.onboarding-root {
    width: 100%;
    height: 100%;
    background: #ffffff;
}

.screen-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.screen {
    position: absolute;
    inset: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(40px);
    pointer-events: none;
    transition: 0.35s ease;
}

.screen.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

/* ========== Splash Screen ========== */
.splash-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.splash-circle {
    width: 85vw;
    height: 85vw;
    max-width: 390px;
    max-height: 390px;
    background: linear-gradient(to bottom,
            #E9F9EC 0%,
            #FFFFFF 80%);
    border-radius: 50%;
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.splash-logo-mark {
    width: 45vw;
    height: 45vw;
    max-width: 150px;
    max-height: 150px;
    border-radius: 50%;
    background: var(--eduva-dark);
    position: relative;
}

.splash-logo-mark::before {
    content: "";
    position: absolute;
    inset: 30%;
    border-radius: 50%;
    background: white;
}

.splash-logo-mark::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--eduva-green);
}

.splash-brand {
    font-size: 30px;
    font-weight: 800;
    color: var(--eduva-dark);
}

.splash-brand span {
    color: var(--eduva-green);
}

.splash-tagline {
    color: var(--eduva-dark);
    font-size: 16px;
    font-weight: 600;
    padding-top: 6px;
}

.splash-text {
    padding-top: 120px;

}

/* ========== Intro Screens ========== */

.intro-header {
    display: flex;
    justify-content: flex-end;
}

.skip-btn {
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: var(--eduva-dark);
    cursor: pointer;
    padding: 10px;
}

.intro-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    padding-top: 90px;
    gap: 18px;
}

.intro-illustration {
    width: 85vw;
    height: 85vw;
    max-width: 390px;
    max-height: 390px;
    background: linear-gradient(to bottom,
            #E9F9EC 0%,
            #FFFFFF 80%);
    border-radius: 50%;
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-illustration img {
    width: 265px;
    height: 245px;
    top: 256px;
    left: 81px;
}

/* .intro-illustration {
  height: 80vw;
  width: 80vw;
  max-width: 386px;
  max-height: 386px;
  padding: 22px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0%, #e8f7ee 80%);
  
}

.intro-illustration img {
  width: 266px;
  height: 250px;
  top : 256px;
  left: 81px;
} */

.intro-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--eduva-dark);
}

.intro-subtitle {
    color: var(--eduva-dark);
    font-size: 14px;
    font-weight: 600;
    max-width: 80%;
}

/* Footer fixed bottom */
.intro-footer {
    margin-top: auto;
    width: 100%;
    padding: 0 10px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #d0d0d0;
}

.dot.active {
    width: 20px;
    background: var(--eduva-green);
}

.next-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--eduva-dark);
    color: white;
    font-size: 22px;
    border: none;
    cursor: pointer;
}

.get-started-btn {
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--eduva-dark);
    color: white;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}

.get-started-btn .circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: white;
    color: var(--eduva-dark);
    display: flex;
    justify-content: center;
    align-items: center;
}

.next-btn,
.next-btn:hover,
.next-btn:focus,
.next-btn:active,
.next-btn:focus-visible {
    background: var(--eduva-dark);
    color: white;
    outline: none;
    box-shadow: none;
}

.get-started-btn,
.get-started-btn:hover,
.get-started-btn:focus,
.get-started-btn:active,
.get-started-btn:focus-visible {
    background: var(--eduva-dark);
    color: white;
    outline: none;
    box-shadow: none;
}

button {
    -webkit-tap-highlight-color: transparent;
}



/* ============== HOME DASHBOARD  ============= */

.app {
    max-width: 480px;
    margin: 0 auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
    /* padding:  0 8px; */
    padding: 0 14px 0 14px;
}

.form-app {
    max-width: 480px;
    margin: 0 auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
    /* padding:  0 8px; */
    padding: 0 14px 0 14px;
}

.page {
    flex: 1;
    /* padding: 12px 16px 90px; */
    /* padding: 7px 7px 90px 7px; */
    overflow-y: auto;
    padding-bottom: 60px;

    overflow-x: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.page::-webkit-scrollbar {
    display: none;
}




/* ========= Tablet / iPad Responsive ========= */

/* Default (phone) */
:root {
    --app-max: 480px;
    --app-pad: 14px;
}

/* Tablet */
@media (min-width: 768px) {
    :root {
        --app-max: 920px;
        --app-pad: 24px;
        --bg: #f4f6f5;
        
    }

    
    .app,
    .form-app {
        max-width: var(--app-max);
        padding-left: var(--app-pad);
        padding-right: var(--app-pad);
        background: #fff;
        border-radius: 18px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    }

    .page {
        padding-bottom: 90px;
        
    }
}

/* Large tablet / desktop */
@media (min-width: 1024px) {
    :root {
        --app-max: 1100px;
    }
}



/* Status Row */
.status {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0 0.6rem 0;

    height: 64px;
    background: #fff;
}


.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}


.profile-photo {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    object-fit: cover;
    /* border: 2px solid rgba(0, 0, 0, 0.08); */
}

.user-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--eduva-dark);
    margin: 0;
}

.subtitle {
    font-size: 12px;
    font-weight: 500;
    color: var(--eduva-dark);
    margin-top: 4px;
    line-height: 1.4;
}

.greeting-text {
    font-size: 12px;
    font-weight: 600;
    color: #76BE81 !important;
    padding-bottom: 5px;
}

.header-logo-container {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.header-title {
    display: flex;
    align-items: center;
}


.header-logo {
    height: 28px;
    /* adjust to 26/30 if needed */
    max-width: 160px;
    object-fit: contain;
    display: block;
}


.header-title small {
    color: var(--eduva-dark);
    font-size: 20px;
    font-weight: 700;

}

.header-title p {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--eduva-dark);

}

.header-actions {
    display: flex;
    gap: 10px;
}

.icon-btn {
    position: relative;
    width: 42px;
    height: 42px;
    border: 0;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.avatar {
    width: 36px;
    height: 36px;
    background: var(--eduva-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 700;
}

/* Search */
.search-box {
    background: white;
    padding: 20px 5px 10px 5px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    /* box-shadow: var(--shadow); */
    /* margin-bottom: 15px; */
    /* height: 64px; */


}

.search-box input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 13px;
    font-weight: 500;
}

.search-icon {
    font-size: 20px;
    color: var(--eduva-dark);
}


/* .notification-icon {
    font-size: 22px;
    color: var(--eduva-dark);
    cursor: pointer;
} */

.notification-icon {
    font-size: 18px;
}

.filter-icon {
    font-size: 26px;
    color: var(--eduva-dark);
    cursor: pointer;
}


/* service */
.service-section {
    padding-top: 8px;
    padding-bottom: 10px;
}

.services {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 20px;
    align-items: center;

}

.service {
    padding: 7px 10px;
    border-radius: 14px;
    font-size: 12px;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    color: #1A4042;
    font-weight: 600;
    text-decoration: none;
    background-color: #E5E5E5;
}

/* Individual colors */
.service-1to1 {
    background: #D9493B;
}

.service-batch {
    background: #DD9531;
}

.service-matching {
    background: #3F9D4E;
}

.service.active {
    opacity: 1;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
}

.service:not(.active) {
    opacity: 0.85;
}


/* Promo */
.promo {
    background: var(--eduva-dark);
    border-radius: var(--card-radius);
    padding: 16px;
    display: flex;
    gap: 12px;
    margin: 18px 0;
    color: white;
}

.promo-img img {
    width: 100%;
    border-radius: 14px;
}

/* Sections */
.section {
    padding: 10px 0 20px 0;
}

.dash-section {
    padding: 1rem 0 1rem 0;
    width: 100%;
    /* display: flex;
    justify-content: center; */

}

.sec-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.sec-header h3 {
    color: var(--eduva-dark);
    font-size: 18px;
    font-weight: 700;
}


.see-all {
    font-size: 12px;
    font-weight: 800;
    color: var(--eduva-green);
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.see-all i {
    font-size: 10px;
    color: var(--eduva-green);
}


.see-all,
.see-all:hover,
.see-all:focus,
.see-all:active,
.see-all:focus-visible {
    font-size: 12px;
    font-weight: 800;
    color: var(--eduva-green);
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    outline: none;
}

.see-all i,
.see-all:hover i,
.see-all:focus i,
.see-all:active i {
    font-size: 10px;
    color: var(--eduva-green);
}

a {
    -webkit-tap-highlight-color: transparent;
}



/* Horizontal Scroll */
/* .hscroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    padding-top: 10px;
} */

.hscroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 0 8px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.hscroll::-webkit-scrollbar {
    display: none;
}



.course-card {
    min-width: 280px;
    background: white;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    text-decoration: none;
    display: block;
    color: inherit;
}

.course-card img {
    width: 100%;
    height: 115px;
    object-fit: cover;
}

.course-body {
    padding: 12px;
}

.course-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--eduva-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* .course-meta {
    font-size: 11px;
    color: var(--eduva-muted);
    display: flex;
    justify-content: space-between;
} */


.course-meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    font-size: 13px;
}


.course-meta-row .price {
    color: #4CAF50;
    font-weight: 700;
}


.course-meta-row .divider {
    width: 1px;
    height: 14px;
    background: #e0e0e0;
}


.course-meta-row .rating {
    color: #444;
    font-weight: 600;
}

.course-meta-row .rating i {
    color: #FFC107;
    margin-right: 4px;
}

/* Duration */
.course-meta-row .duration {
    color: #444;
}


/* TUTOR CARD */
.tutor-card {
    min-width: 280px;
    background: white;
    border-radius: var(--card-radius);
    padding: 12px;
    box-shadow: var(--shadow);
    display: block;
    text-decoration: none;
    color: inherit;
}


.tutor-top {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.tutor-info {
    flex: 1;
    min-width: 0;
}

/* Tutor Image */
.tutor-img {
    width: 100px;
    height: 150px;
    border-radius: 14px;
    overflow: hidden;
    background: #d1fae5;
    flex-shrink: 0;
}

.tutor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.tutor-info h4 {
    font-size: 14px;
    color: var(--eduva-dark);

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.tutor-info small {
    font-size: 11px;
    color: var(--eduva-muted);

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100%;
    margin-top: 2px;
}

/* Details section */
.tutor-details {
    font-size: 11px;
    color: var(--eduva-muted);
    margin-top: 18px;
    line-height: 1.4;
    max-width: 100%;
}

.tutor-details p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tutor-details strong {
    color: var(--eduva-dark);
    font-weight: 600;
}


.tutor-list-card {
    min-width: 280px;
    background: white;
    border-radius: var(--card-radius);
    padding: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 14px;

    display: block;
    text-decoration: none;
    color: inherit;
}


/* ============ Consulatation Banner =========== */

.consult-banner {
    position: relative;
    width: 100%;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: url("../images/mobilebanner.png") center/cover no-repeat;


}

/* .consult-banner {
  position: relative;
  width: 100%;
  height: 120px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);

  background-image: url("../images/consultation.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%; 
} */


.consult-overlay {
    position: absolute;
    inset: 0;
    padding: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: linear-gradient(90deg,
            #1A4042 0%,
            rgba(26, 64, 66, 0.95) 35%,
            rgba(26, 64, 66, 0.55) 58%,
            rgba(26, 64, 66, 0.20) 80%,
            rgba(255, 255, 255, 0) 100%);
}


.consult-text {
    max-width: 55%;
}

.consult-text h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.consult-text p {
    margin-top: 6px;
    color: #e9e9e9;
    font-size: 13px;
}

.consult-btn-cta {
    padding: 10px 20px;
    background: #ffffff;
    color: #1A4042;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}


@media (max-width: 480px) {
    .consult-text h3 {
        font-size: 16px;
    }

    .consult-text p {
        font-size: 12px;
    }

    .consult-btn-cta {
        padding: 7px 16px;
        font-size: 12px;
    }
}



/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    /* width: 100%; */
    /* max-width: 480px; */
    padding: 13px 13px;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.12);
    display: flex;
    justify-content: space-between;

    z-index: 9999;
    width: min(100%, var(--app-max));
    max-width: none;
    padding-left: var(--app-pad);
    padding-right: var(--app-pad);
    padding-bottom: calc(13px + env(safe-area-inset-bottom));

    /* height: 53px; */
}

.nav-item {
    flex: 1;
    text-align: center;
    color: #1a4042;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.nav-item.active {
    color: var(--eduva-green);
}

.nav-item .nav-icon i {
    font-size: 23px;
    /* margin-bottom: 4px; */
}



.bottom-nav a,
.bottom-nav a:hover,
.bottom-nav a:focus {
    background: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: inherit;
}

.bottom-nav a {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.bottom-nav {
    user-select: none;
    -webkit-user-select: none;
}

.nav-item * {
    pointer-events: none;
}



/* ===========================
   FILTER PANEL
=========================== */


/* .filter-overlay.active {
  display: block;
}


.filter-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 90;
}

.filter-panel {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: -100%;
    width: 100%;
    max-width: 480px;
    background: #fff;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    transition: 0.35s ease;
    z-index: 100;

}

.filter-panel.active {
    bottom: 0;
} */

.filter-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: 90;
}

.filter-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

body.sheet-open {
    overflow: hidden;
    height: 100%;
}

.filter-panel {
  position: fixed;
  left: 50%;
  bottom: var(--kb, 0px);

  width: min(100%, var(--app-max)); /* follow app width */
  max-width: none;

  background: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);

  padding: 20px;
  padding-left: var(--app-pad);
  padding-right: var(--app-pad);
  padding-bottom: calc(20px + env(safe-area-inset-bottom));

  transform: translateX(-50%) translateY(110%);
  transition: transform 0.35s ease;

  max-height: min(80dvh, 620px);
  overflow: auto;
  overscroll-behavior: contain;

  z-index: 10000;
}

.filter-panel.active {
  transform: translateX(-50%) translateY(0);
}


.filter-handle {
    width: 45px;
    height: 5px;
    border-radius: 10px;
    background: #ccc;
    margin: 0 auto 15px auto;
}

.filter-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--eduva-dark);
}

.filter-content label {
    display: block;
    font-size: 14px;
    margin-top: 12px;
    color: var(--eduva-dark);
}

.filter-content select {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border-radius: 10px;
    border: 1px solid #eee;
    font-size: 14px;
}

.apply-btn {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: var(--eduva-dark);
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;

}


/* ===================
   PROMO SLIDER 
====================== */

.promo-slider {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 20px;
    margin: 10px 0;
    overflow: hidden;
    background: #000;
    /* prevents white flash */
    box-shadow: var(--shadow);

    touch-action: pan-y;
}

/* slides stacked */
.promo-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.promo-slide.active {
    opacity: 1;
    z-index: 2;
}

.promo-slide:not(.active) {
    z-index: 1;
}

/* background image */
/* .promo-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
} */

.promo-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.9);
}


.promo-overlay {
    position: absolute;
    inset: 0;
    padding: 18px;
    background: linear-gradient(to right,
            rgba(26, 64, 66, 1) 0%,
            rgba(26, 64, 66, 0.625) 62.5%,
            rgba(26, 64, 66, 0) 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


.promo-badge {
    font-size: 15px;
    font-weight: 800;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 6px;
    color: #FFE135;
}

.promo-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
    padding-bottom: 5px;
}

.promo-text {
    font-size: 13px;
    max-width: 70%;
    font-weight: 600;
}



.promo-dots {
    position: absolute;
    bottom: 12px;
    right: 18px;
    display: flex;
    gap: 6px;
    z-index: 9999;
    /* left: 45%; */
}



.promo-dots span {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.6);
    transition: 0.3s ease;
}

.promo-dots .active {
    width: 14px;
    height: 6px;
    background: #fff;
    border-radius: 10px;
}

.promo-slide {
    z-index: 1;
}

.promo-overlay {
    z-index: 2;
}

.promo-bg {
    z-index: 0;
}



/* ====== FEATURED COURSE PAGE ======= */

.fc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0 15px 0;

}

.fc-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: #1a4042;
}

.fc-header i {
    font-size: 18px;
    color: #1a4042;
    cursor: pointer;
}


/* Hidden search bar */
.fc-search-bar {
    width: 100%;
    background: #ffffff;
    padding: 9px 8px 9px 8px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    transform: scale(0.9);
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.25s ease-in-out;
    margin-bottom: 10px;
}

.fc-search-bar.active {
    height: 60px;
    opacity: 1;
    transform: scale(1);
}

.fc-search-bar input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: #1a4042;
    font-weight: 500;
}

.fc-search-close {
    font-size: 20px;
    color: #1a4042;
    cursor: pointer;
}


.chips {
    display: flex;
    gap: 10px;
    padding: 6px 0 16px 0;
    overflow-x: auto;
}

.chip {
    padding: 7px 14px;
    border-radius: 14px;
    background: #edf3ed;
    color: #1a4042;
    font-size: 13px;
    white-space: nowrap;
    cursor: pointer;
}

.chip.active {
    background: #1a4042;
    color: white;
}


/* Course List */
.course-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Individual card */
.fc-card {
    background: white;
    border-radius: 16px;
    padding: 12px;
    display: flex;
    gap: 14px;
    align-items: center;
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.07);
    text-decoration: none;
    color: inherit;

}

.fc-thumb {
    width: 95px;
    height: 75px;
    border-radius: 12px;
    object-fit: cover;
}

.fc-info {
    flex: 1;
}

.fc-category {
    font-size: 11px;
    color: #76be81;
    font-weight: 600;
}

.fc-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a4042;
    margin-top: 3px;
    margin-bottom: 4px;
}

.fc-meta {
    display: flex;
    gap: 12px;
    font-size: 13px;
    align-items: center;
}

.fc-price {
    color: #1a4042;
    font-weight: 700;
}

.fc-rating i {
    color: #f3bb20;
    margin-right: 3px;
}

.fc-hours {
    color: #74848e;
}

.fc-bookmark {
    font-size: 18px;
    color: #74848e;
}



/* ==============
COURSE DETAILS PAGE
================= */

.course-banner {
    position: relative;
    width: 100%;
    height: 240px;
    border-radius: 20px 20px 20px 20px;
    overflow: hidden;
}

.course-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-back,
.course-share {
    position: absolute;
    top: 18px;
    width: 38px;
    height: 38px;
    background: #ffffffdd;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    text-decoration: none;
    color: #1a4042;
}

.course-back {
    left: 18px;
}

.course-share {
    right: 18px;
}

.course-info-box {
    background: white;
    padding: 18px 10px 10px 10px;
    margin-top: -10px;
    border-radius: 16px;
    /* box-shadow: var(--shadow); */
}

.course-category {
    color: var(--eduva-green);
    font-size: 12px;
    font-weight: 600;

}

.course-name {
    font-size: 20px;
    color: var(--eduva-dark);
    margin: 5px 0 10px;
}

.course-stats {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--eduva-muted);
    margin-bottom: 25px;
}

.course-rating {
    color: #f4b400;
    font-weight: 600;
}

/* Push price to right */
.course-price-container {
    margin-left: auto;
}

.course-price {
    color: var(--eduva-dark);
    font-weight: 700;
    color: #76BE81;
    font-size: 21px;
}



/* Tabs */
.course-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    background: #f0f0f0;
    color: var(--eduva-dark);
    cursor: pointer;
    font-weight: 500;
}

.tab.active {
    background: var(--eduva-dark);
    border: 1px solid var(--eduva-dark);
    font-weight: 600;
    color: #ffffff;
}

.tab-content {
    display: none;
    font-size: 14px;
    line-height: 1.5;
    color: var(--eduva-dark);
    padding: 20px 0;
}

.tab-content.active {
    display: block;
}


.course-section {
    background: white;
    padding: 18px 10px 10px 10px;
    margin-top: -10px;
    border-radius: 16px;
}

/* Instructor */
.instructor-card {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 10px;
}

.instructor-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

/* Features */
.course-features {
    list-style: none;
    padding-top: 10px;
}

.course-features li {
    display: flex;
    padding-top: 10px;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--eduva-dark);
}

.course-features i {
    width: 18px;
    color: var(--eduva-dark);
}

/* Reviews */
.review-card {
    display: flex;
    gap: 12px;
    padding: 14px;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow);
    margin-bottom: 12px;
}

.review-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.review-rating {
    color: #76c487;
    font-weight: 600;
}

/* Enroll Bar */

.course-enroll-bar{
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, var(--app-max));                   
  background: #fff;
  padding: 14px var(--app-pad);
  padding-bottom: calc(14px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.12);
  z-index: 9999;
}

.enroll-btn{
  width: 100%;
  padding: 14px;
  border: none;
  background: var(--eduva-dark);
  color: #fff;
  font-size: 15px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}



/* ========== ABOUT PAGE ========= */

.sub-header {
    display: flex;
    align-items: center;
    gap: 8px;
    /* padding: 8px 0 18px 0; */
    padding: 15px 0 15px 0;

}

.back-btn i {
    font-size: 18px;
    color: var(--eduva-dark);
}

.sub-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--eduva-dark);
    margin: 0;
}


/* Promo Banner */
.promo-about {
    position: relative;
    width: 100%;
    height: 170px;
    border-radius: 16px;
    overflow: hidden;
    margin: 20px 0;
}

.promo-about-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-about-overlay {
    position: absolute;
    inset: 0;
    padding: 20px;
    background: linear-gradient(to right, rgba(26, 64, 66, 0.85), rgba(26, 64, 66, 0.2), transparent);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.promo-about-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

/* Tabs */
.about-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    margin-bottom: 20px;
}

.about-tab {
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid #dcdcdc;
    background: #fff;
    white-space: nowrap;
    font-size: 14px;
    color: var(--eduva-dark);
    cursor: pointer;
    font-weight: 600;
}

.about-tab.active {
    background: var(--eduva-dark);
    border-color: var(--eduva-dark);
    font-weight: 700;
    color: #fff;
}

/* Content */
.about-section {
    margin-bottom: 20px;
    padding: 5px;

}

.about-content {
    display: none;
}

.about-content.active {
    display: block;
}

.about-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--eduva-dark);
}

.about-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 14px;
}


.consult-btn-section {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 80px;
}

.consult-main-btn {
    width: 90%;
    height: 55px;
    background: var(--eduva-dark);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
}

.arrow-circle {
    width: 32px;
    height: 32px;
    background: #fff;
    color: var(--eduva-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}





/* ---------- Form Layout ---------- */
.form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 20px;
}

label {
    font-size: 14px;
    color: var(--eduva-dark);
    font-weight: 700;

}

input,
textarea {
    width: 100%;
    padding: 18px;
    font-size: 15px;
    border-radius: 12px;
    border: none;
    background: #f2f4f5;
    outline: none;

}

/* ---------- Select Box ---------- */
.select-box {
    position: relative;
}

.select-box select {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: none;
    background: #f2f4f5;
    appearance: none;
    font-size: 14px;
    outline: none;
}

.select-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--eduva-dark);
    font-size: 14px;
}

/* ---------- Submit Button ---------- */
.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--eduva-dark);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    cursor: pointer;
}

/* .arrow-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  color: var(--eduva-dark);
  display: flex;
  justify-content: center;
  align-items: center;
} */




/* Tutor Page Header */
.tutor-header {
    padding: 14px 0 10px;
}

.tutor-header i {
    font-size: 18px;
    color: var(--eduva-dark);
}


.tutor-hero {
    background: var(--eduva-dark);
    color: white;
    text-align: center;
    padding: 30px 16px;
    border-radius: 0 0 20px 20px;
}

.tutor-profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    margin-bottom: 10px;
}

.tutor-name {
    font-size: 20px;
    font-weight: 700;
}

.tutor-degree {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 12px;
}

.tutor-stats,
.tutor-lang {
    display: flex;
    justify-content: center;
    gap: 14px;
    font-size: 13px;
    margin-bottom: 12px;
}

.tutor-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.tag {
    background: white;
    color: var(--eduva-dark);
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}


/* Tabs */
.tutor-tabs {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 10px;
}

.tutor-section {
    padding: 5px;
}

.tutor-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--eduva-dark);
}

.section-title {
    font-size: 16px;
    font-weight: 700;
    margin: 20px 0 10px;
}

.soft-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill {
    background: #F3F6F4;
    padding: 7px 14px;
    border-radius: 12px;
    font-size: 13px;
}

.certificates img {
    width: 45%;
    border-radius: 10px;
}

/* Request Button */
.bottom-btn-wrapper {
    padding: 30px 0 100px;
    display: flex;
    justify-content: center;
}

.request-btn {
    background: var(--eduva-dark);
    color: white;
    padding: 14px 20px;
    width: 85%;
    border-radius: 40px;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    text-decoration: none;
}

.arrow-circle {
    width: 28px;
    height: 28px;
    background: white;
    color: var(--eduva-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}





/* .login-container {
  max-width: 100%;
  text-align: center;
  padding: 7px;
} */

/* Logo */
.logo-box {
    margin-top: 40px;
    margin-bottom: 35px;
    text-align: center;
}

.eduva-logo {
    width: 140px;
    object-fit: contain;
}

.form-container {
    padding-top: 45px;
}

.login-title {
    text-align: left;
    font-size: 24px;
    font-weight: 600;
    color: #1a4042;
    margin-bottom: 20px;
}

/* .input-box {
    width: 100%;
    background: #f3f3f3;
    padding: 14px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    gap: 12px;
}

.input-box i {
    font-size: 16px;
    color: #74848e;
} */

/* .input-box input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    flex: 1;
} */

.toggle-pass {
    cursor: pointer;
}

.forgot-pass {
    display: block;
    text-align: right;
    font-size: 18px;
    color: #1a4042;
    margin-bottom: 22px;
}

.login-form a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.btn-primary {
    width: 100%;
    background: #1a4042;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    margin-bottom: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    cursor: pointer;
}

.btn-circle {
    background: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1a4042;
    font-size: 14px;
    margin-left: 8px;
}

.btn-outline {
    width: 100%;
    background: white;
    color: #1a4042;
    border: 2px solid #1a4042;
    padding: 14px;
    border-radius: 30px;
    font-size: 18px !important;
    font-weight: 700 !important;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.btn-circle.outline {
    background: #1a4042;
    color: #fff;
}




/* Page Layout */

.forget-container {
    max-width: 100%;
    padding: 7px;
}

.fp-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.fp-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1a4042;
}

.fp-back i {
    font-size: 18px;
    color: #1a4042;
}

.opt-section {
    padding-top: 35px;
}

.fp-instruction {
    text-align: center;
    font-size: 14px;
    color: #74848e;
    line-height: 20px;
    margin-bottom: 20px;
    font-weight: 500;
}

.fp-option {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fp-card {
    background: #f4f7f8;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.fp-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1a4042;
    font-size: 18px;
}

.fp-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1a4042;
}

.fp-info p {
    font-size: 12px;
    color: #74848e;
}

.fp-btn {
    margin-top: 30px;
}


.fp-illustration {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 5px 0 20px 0;
}

.fp-illustration-bg {
    width: 85vw;
    height: 85vw;
    max-width: 390px;
    max-height: 390px;

    background: linear-gradient(to bottom,
            #E9F9EC 0%,
            /* top color */
            #FFFFFF 80%
            /* bottom color */
        );

    border-radius: 50%;
    padding: 25px;

    display: flex;
    justify-content: center;
    align-items: center;
}


.fp-illustration-bg img {
    width: 265px;
    height: 245px;
    top: 256px;
    left: 81px;
}




/* OTP Screen */
.otp-text {
    text-align: center;
    font-size: 14px;
    color: #333;
    margin-top: 15px;
    margin-bottom: 25px;
}

.otp-text span {
    font-weight: 600;
}

.otp-box-wrapper {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
}

.otp-box {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    border: 1px solid #dcdcdc;
    outline: none;
}

.otp-box:focus {
    border-color: #1a4042;
}

.otp-resend {
    text-align: center;
    font-size: 14px;
    color: #444;
    margin-bottom: 40px;
}

.otp-resend span {
    color: #2a8f6a;
    font-weight: 600;
}

.otp-btn {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    margin-top: 10px;
}




/* Header */
.fp-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
}

.fp-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #0A342E;
}

.back-btn i {
    font-size: 20px;
    color: #0A342E;
}



.fp-subtitle {
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0 20px 0;
    color: #0A342E;
}

/* Form */
.input-box {
    display: flex;
    align-items: center;
    padding: 0 6px 0 12px;
    border-radius: 10px;
    background: #F4F6F8;
    margin-bottom: 14px;
    position: relative;
}

.input-box i {
    color: #838CA2;
    font-size: 16px;
}

/* .input-box input {
    flex: 1;
    border: none;
    outline: none;
    margin-left: 10px;
    background: transparent;
    font-size: 14px;
} */

.toggle-pass {
    position: absolute;
    right: 14px;
    cursor: pointer;
}




/* Profile Header*/
.profile-container {
    max-width: 100%;
    padding: 7px;
}

/* .fc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.fc-header .title-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--eduva-dark);
} */

/* Profile Top Section */
.profile-top {
    text-align: center;
    padding: 20px 0 10px;
}

.profile-photo-wrap {
    width: 95px;
    height: 95px;
    border-radius: 100%;
    background: #E9F9EC;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.profile-photo-big {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-name {
    margin-top: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--eduva-dark);
}

.profile-email {
    font-size: 14px;
    color: #666;
}


.profile-menu {
    margin-top: 15px;
    background: white;
    border-radius: 14px;
}

.profile-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    font-size: 15px;
    color: var(--eduva-dark);
    border-bottom: 1px solid #f1f1f1;
    text-decoration: none;
    font-weight: 500;
}

.profile-item:last-child {
    border-bottom: none;
}

.profile-item .left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.profile-item i {
    font-size: 18px;
    color: var(--eduva-dark);
}

.profile-item .right-text {
    margin-right: auto;
    margin-left: 10px;
    color: #4CAF50;
}

.logout {
    color: red !important;
}







/* Edit Page */

.edit-avatar-wrap {
    display: flex;
    justify-content: center;
    padding: 10px 0 20px;
}

.edit-avatar-bg {
    width: 120px;
    height: 120px;
    background: #E9F9EC;
    border-radius: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.edit-avatar {
    width: 90px;
    height: 90px;
    border-radius: 100%;
    object-fit: cover;
}

.edit-avatar-icon {
    width: 28px;
    height: 28px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    position: absolute;
    bottom: 5px;
    right: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}


/* Update Button */
.update-btn {
    margin-top: 25px;
    width: 100%;
}




/* ---- Completed Courses Page ---- */

.mc-tabs {
    display: flex;
    gap: 10px;
    margin: 30px 0 30px;
}

.mc-tab {
    flex: 1;
    background: #E7F3EB;
    padding: 10px 0;
    border-radius: 24px;
    border: none;
    font-size: 15px;
    font-weight: 800;
    color: #2C4F40;
    cursor: pointer;
    height: 48px;
}

.mc-tab.active {
    background: #76BE81;
    color: white;
}

.mc-card {
    display: flex;
    background: white;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    position: relative;
}

.mc-thumb {
    width: 90px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 12px;
}

.mc-info {
    flex: 1;
}

.mc-category {
    color: #709B8C;
    font-size: 13px;
    font-weight: 600;
}

.mc-title {
    font-size: 15px;
    font-weight: 700;
    margin: 4px 0;
}

.mc-meta {
    font-size: 12px;
    color: #2C4F40;
    display: flex;
    gap: 4px;
    align-items: center;
}

.mc-meta i {
    color: #FFD700;
}

.mc-certificate {
    font-size: 12px;
    color: #2C7A5A;
    font-weight: 600;
    margin-top: 6px;
    display: inline-block;
}

.mc-status {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #2C7A5A;
    font-size: 20px;
}




/* -------------------------
   ONGOING COURSES LIST
--------------------------*/

.og-card {
    display: flex;
    background: white;
    padding: 12px;
    border-radius: 14px;
    margin-bottom: 16px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.og-thumb {
    width: 90px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 12px;
}

.og-info {
    flex: 1;
}

.og-category {
    font-size: 12px;
    font-weight: 700;
}

/* Category Colors */
.og-category.uiux {
    color: #FF7A00;
}

.og-category.webdev {
    color: #0080FF;
}

.og-title {
    font-size: 15px;
    font-weight: 700;
    margin: 4px 0 6px 0;
    max-width: 180px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.og-meta {
    font-size: 12px;
    color: #2C4F40;
    display: flex;
    gap: 4px;
    align-items: center;
    margin-bottom: 6px;
}

.og-meta i {
    color: #F7C50D;
}


.og-progress {
    width: 100%;
    height: 6px;
    background: #E7F3E9;
    border-radius: 10px;
    overflow: hidden;
}

.og-progress-fill {
    height: 100%;
    background: #F7C50D;
    border-radius: 10px;
}

.og-progress-text {
    font-size: 12px;
    font-weight: 600;
    color: #2D4D42;
    margin-top: 6px;
}





/* Tutor Dashboard */

.dashboard-page {
    /* padding: 15px 7px 90px 7px; */
    padding: 15px 14px 80px 14px;
}

.td-tutor-box {
    background-color: #1A4042;
    padding: 20px;
    border-radius: 16px;
    color: #fff;
    margin-bottom: 20px;
}

.td-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.td-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.td-photo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
}

.td-info h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.td-info small {
    font-size: 12px;
    opacity: 0.9;
}

.td-settings {
    font-size: 20px;
    opacity: 0.9;
}


.td-meta {
    margin: 12px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
}

.td-meta i {
    margin-right: 5px;
}


.td-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.td-tag {
    background: rgba(255, 255, 255, 0.18);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
}

/* Earning Box */
.earning-box {
    background: linear-gradient(135deg, #0C3B2E, #1D6C52);
    /* background: #0C3B2E; */
    color: #fff;
    padding: 18px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.earning-box h2 {
    margin: 0;
    font-size: 26px;
}

.earning-box span {
    font-size: 14px;
}

.earning-icon {
    font-size: 28px;
}


.td-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

.td-stat-card {
    background: #F3F3F3;
    padding: 20px;
    text-align: center;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
}


.td-stat-card i {
    font-size: 26px;
    color: #76BE81;
    margin-bottom: 10px;
}

.td-stat-card h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.td-stat-card p {
    margin: 0;
    font-size: 13px;
    color: #6F6F6F;
}

/* Activities */
.section-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.td-activity-card {
    background: #fff;
    padding: 16px;
    border-radius: 14px;
}

.td-activity {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.td-activity:last-child {
    margin-bottom: 0;
}

.dot-list {
    width: 10px;
    height: 10px;
    background: #76c487;
    border-radius: 50%;
    margin-top: 4px;
}

.td-activity .time {
    font-size: 12px;
    color: #6F6F6F;
}



/* Running Style */

.rt-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    padding-top: 10px;
}

.rt-tab {
    padding: 8px 16px;
    border-radius: 25px;
    background: #F1F5F9;
    border: none;
    font-size: 14px;
    cursor: pointer;
}

.rt-tab.active {
    background: #3CAA79;
    color: #fff;
}

.rt-search-box {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 15px;
}

.rt-search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 500;
}

.rt-search-box i {
    padding-left: 10px;
    cursor: pointer;
}


.rt-card {
    display: flex;
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: var(--shadow);
    gap: 12px;
}

.rt-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.rt-info h4 {
    font-size: 18px;
    font-weight: 700;
}

.rt-class {
    color: #3CAA79;
    font-size: 13px;
    margin-bottom: 4px;
}

/* Hide sections */
.tab-section {
    display: none;
}

.tab-section.active {
    display: block;
}




/* Search student */

.chips-row {
    display: flex;
    padding: 10px 20px;
    gap: 10px;
    overflow-x: auto;
}


.chip-search {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    border: 1px solid #00000014;
    background: #00000014;
    font-weight: 700;
    cursor: pointer;
}

.chip-search.active {
    background: var(--eduva-dark);
    border-color: var(--eduva-dark);
    color: #fff;
}



/* Student List */

.student-card {
    background: #f7fdf9;
    border-radius: 14px;
    padding: 14px;
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);

}

.student-card-link {
    text-decoration: none;
    display: block;
    color: inherit;
}


.student-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin-right: 12px;
}

.student-info h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.class-text {
    margin: 3px 0;
    font-size: 13px;
    color: #3c6e71;
}

.sub-text {
    font-size: 13px;
    color: #444;
}

.view-btn {
    margin-left: auto;
    padding: 6px 14px;
    background: #d4f5e4;
    color: #0d7a3b;
    border-radius: 6px;
    font-size: 12px;
    text-decoration: none;
    font-weight: 500;
}



/* ---------- Student Details Page ---------- */

.student-detail-top {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.student-detail-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #E5F5E8;
    /* soft green ring */
    margin-bottom: 10px;
}

.student-name {
    font-size: 24px;
    font-weight: 800;
    color: #133D39;
}

.student-class {
    font-size: 16px;
    color: #666;
    margin-top: 2px;
    font-weight: 600;
}

/* Info Cards */
.info-card {
    background: #fff;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 15px;
}

.info-title {
    font-size: 20px;
    font-weight: 700;
    color: #76BE81;
    margin-bottom: 10px;
}


.student-detail-actions {
    display: flex;
    justify-content: space-between;
    margin: 30px 5px 40px;
}


.msg-btn {
    background: #F2F7F3;
    color: #133D39;
    padding: 12px 18px;
    border-radius: 25px;
    border: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.primary-btn {
    background: #0B3D2C;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.primary-btn .btn-circle {
    background: #fff;
    color: #0B3D2C;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}



/* Header */
.gd-header {
    background: var(--eduva-dark);
    color: white;
    padding: 18px;
    border-radius: 0 0 18px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 150px;
}

.gd-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gd-profile {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.gd-welcome {
    font-size: 14px;
    opacity: 0.9;
}

.gd-name {
    font-size: 20px;
    font-weight: 700;
}

.gd-icons i {
    font-size: 18px;
    margin-left: 14px;
    color: white;
}


.gd-child-card {
    background: white;
    margin-top: -20px;
    padding: 18px;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.gd-section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--eduva-dark);
    margin-bottom: 10px;
}

.gd-child-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gd-child-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.gd-child-text h4 {
    font-size: 18px;
    font-weight: 700;
}

.gd-child-text p {
    font-size: 14px;
    opacity: 0.8;
}

.gd-view-btn {
    margin-left: auto;
    background: #E8F8ED;
    color: var(--eduva-dark);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}


.gd-box {
    background: white;
    padding: 18px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    margin-top: 18px;
}

.gd-box-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--eduva-dark);
}

.dark {
    background: var(--eduva-dark);
    color: white;
}

.white {
    color: white;
}

.gd-line {
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 600;
}

.gd-line i {
    color: var(--eduva-green);
    margin-right: 8px;
}

.dark .gd-line i {
    color: #b9ffd0;
}

.highlight {
    color: var(--eduva-green);
    font-weight: 600;
}

.gd-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--eduva-green);
    font-weight: 600;
}


.gd-pay-btn {
    margin-top: 14px;
    display: inline-block;
    background: #E8F8ED;
    padding: 8px 16px;
    border-radius: 10px;
    color: var(--eduva-dark);
    font-weight: 600;
    text-decoration: none;
}

.gd-update {
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.good {
    color: #38A169;
}

.normal {
    color: #3B82F6;
}



/* Student Card */
.sr-student-card {
    padding: 16px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin: 10px 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sr-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sr-profile {
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

.sr-name {
    font-size: 17px;
    font-weight: 700;
}

.sr-total {
    font-size: 13px;
    opacity: .7;
}

.sr-notify {
    font-size: 20px;
    color: var(--eduva-dark);
}




/* Statistic Cards */
.sr-stats-row {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.sr-stat-card {
    flex: 1;
    padding: 14px;
    border-radius: 14px;
    color: white;
}

.sr-stat-card i {
    font-size: 20px;
    margin-bottom: 6px;
}

.sr-stat-card.green {
    background: #E8F9EC;
    color: #2F8F4E;
}

.sr-stat-card.blue {
    background: #E3F0FF;
    color: #377DFF;
}

.sr-stat-card.red {
    background: #FFE8E5;
    color: #E53935;
}

.sr-stat-card .label {
    font-size: 12px;
    opacity: 0.7;
}



/* Table */
.sr-table-box {
    background: white;
    padding: 14px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.sr-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.sr-table th {
    text-align: left;
    padding: 8px 0;
    color: var(--eduva-dark);
    font-weight: 600;
}

.sr-table td {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.pass {
    color: #2F8F4E;
    font-weight: 700;
}

.fail {
    color: #E53935;
    font-weight: 700;
}




/* Student result overview */

.sr-chart-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
}

.sr-pie {
    position: relative;
    width: 120px;
    height: 120px;
}

.pie-svg {
    width: 120px;
    height: 120px;
    transform: rotate(-90deg);
}

.pie-bg {
    fill: none;
    stroke: #E5E7EB;
    stroke-width: 4;
}

.pie-pass {
    fill: none;
    stroke: #4CAF50;
    stroke-width: 4;
    stroke-linecap: round;
    transition: stroke-dasharray .6s;
}

.pie-fail {
    fill: none;
    stroke: #FF5353;
    stroke-width: 4;
    stroke-linecap: round;
    transition: stroke-dasharray .6s;
}

.pie-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.pie-center h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1A4042;
}

.pie-center p {
    margin: 0;
    font-size: 12px;
    color: gray;
}


.sr-chart-legend {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.legend-item b {
    margin-left: auto;
    color: var(--eduva-dark);
}


.legend-item-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.green {
    background: #4CAF50;
}

.red {
    background: #FF5353;
}

.gray {
    background: #AFAFAF;
}




/* Franchisee Page */
.bf-location-card {
    background: var(--eduva-dark);
    color: #ffffff;
    padding: 16px;
    border-radius: 12px;
    margin-top: 15px;
}

.bf-location-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
}

.bf-location-card p {
    margin: 6px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}




/* ============================
      FREE TEST PAGE
============================ */

.ft-chip {
    padding: 6px 16px;
    background: #E6EFE9;
    border-radius: 20px;
    border: none;
    font-size: 14px;
    color: #0e3f36;
    cursor: pointer;
    font-weight: 700;
}

.ft-chip.active {
    background: #0e3f36;
    color: white;
}


.ft-search-box {
    margin-top: 15px;
    background: #F4F7F5;
    padding: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
}

.ft-search-box input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
}

.ft-search-box button {
    background: #0e3f36;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: none;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}


.ft-test-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.04);
    margin-top: 12px;
}

.ft-test-card img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

.ft-test-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1A4042;
}

.ft-test-info p {
    font-size: 13px;
    color: #76c487;
    margin-top: 2px;
}

.ft-right {
    margin-left: auto;
    text-align: right;
}

.ft-right .duration {
    display: block;
    font-size: 13px;
    color: #6f6f6f;
}

.start-btn {
    display: inline-block;
    margin-top: 6px;
    background: #76c487;
    padding: 5px 12px;
    border-radius: 20px;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    font-weight: 800;
}

.cw-question-card-row {
    padding-top: 15px;
}

.cw-question-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 14px;
    border-radius: 12px;
    margin-bottom: 10px;
    border: 1px solid #e6e6e6;
    transition: 0.3s ease;
    cursor: pointer;
}

.cw-question-card.active {
    border: 1.5px solid #51b37b;
    background: #f4fffa;
}

.cw-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    margin-right: 12px;
}

.cw-text-box {
    flex: 1;
}

.cw-question {
    font-size: 16px;
    font-weight: 700;
    color: #0d212b;
    margin-bottom: 6px;
}

.cw-details-box {
    display: none;
    margin-top: 8px;
}

.cw-details-box.show {
    display: block;
}

.cw-view-btn {
    background: #76BE81;
    color: #fff;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 12px;
    display: inline-block;
    text-decoration: none;
    font-weight: 800;
}

.cw-arrow {
    font-size: 18px;
    color: #1c1c1c;
}

.cw-chip {
    padding: 6px 14px;
    background: #f1f1f1;
    border-radius: 20px;
    border: none;
    margin-right: 6px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.cw-chip.active {
    background: var(--eduva-dark);
    color: #fff;
}


.result-box {
    background: var(--eduva-dark);
    color: #fff;
    padding: 22px;
    border-radius: 14px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;


}

.result-percent {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.result-msg {
    margin: 4px 0 0;
    font-size: 16px;
    font-weight: 700;
}

.result-msg .passed {
    color: #9BE2A6;
}

.result-test-name {
    font-size: 13px;
    margin-top: 3px;
    opacity: 0.9;
}

.result-check {
    font-size: 22px;
    color: #A4F3C2;
}

/* Summary Box */
.result-summary-box {
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.result-list {
    list-style: none;
    padding: 0;
    margin-top: 12px;
}

.result-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    font-size: 15px;
    justify-content: flex-start;
}


.result-list li i {
    margin-right: 10px;
    font-size: 16px;
}

.icon-green {
    color: #32C671;
}

.icon-red {
    color: #FF4B4B;
}

.icon-gray {
    color: #9DA4A8;
}


.result-back-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #76BE81;
    color: #fff;
    padding: 14px;
    margin: 25px 0;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
    gap: 10px;
    font-size: 16px;
}

.result-back-btn .circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: white;
    color: #76BE81;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
}



.gtw-text {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 25px;
}

.gtw-text h3 {
    font-size: 24px;
    font-weight: 800;
    padding-bottom: 10px;
}

.gtw-text p {
    font-size: 16px;
    opacity: 0.8;
}

.gtw-proceed {
    padding: 20px 5px 20px 5px;
}


.gtw-btn-primary {
    background: linear-gradient(135deg, #76BE81, #1A4042);
    width: 100%;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    margin-bottom: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    cursor: pointer;
}

/* .gtw-btn-primary .btn-circle {
    background: #fff;
    width: 34px;
    height: 34px;
    color: #1A8F5A;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
} */


.gtw-copy-btn {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: 2px solid #89BFFF;
    background: #E8F2FF;
    color: #000;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 20px;
    cursor: pointer;
}


.gtw-preview-box {
    text-align: center;
}

.gtw-preview-box img {
    width: 90%;
    border-radius: 12px;
    border: 1px solid #CFE8D9;
}

.gtw-link-text {
    margin-top: 8px;
    font-size: 14px;
    opacity: 0.7;
}


.toast {
    position: fixed;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a8f3c;
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 9999;
}

.toast.show {
    opacity: 1;
}



/* ===== Booking Modal ===== */

.booking-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.booking-modal.show {
    display: flex;
}

.booking-modal-inner {
    width: min(480px, 92vw);
    background: #004046;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}


.booking-modal-header {
    background: #76c487;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.booking-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.booking-close {
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
}

/* form body */
.booking-form {
    padding: 18px 18px 20px;
}

.booking-field {
    margin-bottom: 14px;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
    width: 100%;
    background: #003339;
    border-radius: 8px;
    border: 1px solid #0f555b;
    padding: 10px 14px;
    font-size: 14px;
    color: #f5f5f5;
    outline: none;
}

.booking-field input::placeholder,
.booking-field textarea::placeholder,
.booking-field select {
    color: #b2cbcd;
}

.booking-field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 20 20'%3E%3Cpath fill='%23b2cbcd' d='M5.5 7l4.5 4.5L14.5 7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
}

/* Submit button */
.booking-submit {
    width: 100%;
    margin-top: 6px;
    padding: 12px 18px;
    border-radius: 8px;
    border: none;
    background: #76c487;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
}

.booking-submit:hover {
    filter: brightness(1.05);
}




.subtitle {
    font-size: 14px;
    margin-top: -10px;
    margin-bottom: 25px;
    color: #6b6b6b;
}

.terms-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin: 10px 0 40px;
    cursor: pointer;
}

.checkbox {
    width: 16px;
    height: 16px;
    accent-color: #1a4042;
}

.signup-btn {
    width: 100%;
    background: #1A4042;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border: none;
    padding: 16px 22px;
    border-radius: 40px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.btn-text {
    position: relative;
    z-index: 2;
    font-size: 14px;
}

.btn-arrow {
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1A4042;
    font-size: 17px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.btn-arrow-outline {
    width: 35px;
    height: 35px;
    background: var(--eduva-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 17px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.signup-btn:active {
    transform: scale(0.97);
}

.or-text {
    text-align: center;
    font-size: 13px;
    margin: 18px 0;
    color: #777;
}

.social-row {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.social-btn {
    width: 48px;
    height: 48px;
    background: #f3f3f3;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-text {
    margin-top: 25px;
    text-align: center;
    font-size: 14px;
}

.bottom-text .link {
    color: #1a4042;
    font-weight: 600;
    margin-left: 5px;
}





.page-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-list li {
    padding: 6px 0;
}

.page-list a {
    color: var(--eduva-dark);
    text-decoration: none;
    font-size: 15px;
}

.page-list a:hover {
    text-decoration: underline;
}








/* === FILTER PAGE === */
/* .filter-panel1 {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform .35s ease;
  display: flex;
  flex-direction: column;
}

.filter-panel1.active {
  transform: translateY(0);
} */

.filter-panel1 {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;
    display: none;
}

.filter-panel1.active {
    display: block;
}

.filter-panel1 {
    animation: fadeIn 0.15s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}



/* HEADER*/
.filter-header {
    display: flex;
    align-items: left;
    justify-content: start;
    padding: 16px;
    /* border-bottom: 1px solid #eee; */
    gap: 12px;
}

.filter-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--eduva-dark);
    margin: 0;
}

.filter-header i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    color: var(--eduva-dark);
}

/* FILTER SEARCH */
.filter-search-container {
    padding: 16px;
    flex: 1;
    overflow-y: auto;
}

.filter-search-box {
    background: #fff;
    border-radius: 14px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
}

.filter-search-box input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 16px;
    font-weight: 500;
}

/* RECENT SEARCH */
.recent-search-area {
    /* margin-top: 16px; */
    background: #fff;
    border-radius: 14px;
    padding: 0 16px 16px 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
}

.recent-title {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}


#recentList>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

#recentList>div:last-child {
    border-bottom: none;
}

#recentList span {
    font-size: 15px;
    color: #1a4042;
    font-weight: 500;
}

#recentList i {
    font-size: 15px;
    color: #999;
}

#recentList i:hover {
    color: red;
}

/* SUGGESTIONS */
.filter-suggestions {
    margin-top: 12px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .1);
    display: none;
    max-height: 260px;
    overflow-y: auto;
}

.filter-suggestions div {
    padding: 14px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.filter-suggestions div:hover {
    background: #f3f3f3;
}





/* ---------------------- CATEGORY GRID ---------------------- */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding-bottom: 40px;
    padding-top: 40px;

}

.category-card {
    background: #fff;
    padding: 18px 6px;
    border-radius: 14px;
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.07);
    text-align: center;
}

.category-card img {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
}

.category-card p {
    font-size: 13px;
    color: #1a4042;
    font-weight: 600;
}






/* POPUP STYLES */

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-container {
    width: 90%;
    max-width: 500px;
    background: #f7fcf8;
    border-radius: 22px;
    padding: 26px 22px 28px;
    animation: popIn .45s ease;

}

@keyframes popIn {
    from {
        transform: scale(.9);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}


.popup-content {
    text-align: center;
}

.avatar-box {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 26px;
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #FFC107;
    padding: 12px;
    opacity: 1 !important;
}


.avatar-box.burst .avatar-img {
    animation: avatarPulse .45s ease;
}

@keyframes avatarPulse {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.06)
    }

    100% {
        transform: scale(1)
    }
}


.shape {
    position: absolute;
    transition:
        transform .8s cubic-bezier(.25, .8, .25, 1),
        opacity .6s ease;
}


.star {
    width: 13px;
    height: 13px;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%,
            79% 91%, 50% 70%, 21% 91%,
            32% 57%, 2% 35%, 39% 35%);
}


.star.red {
    background: #FF5252;
    left: -10px;
    top: 42px
}

.star.yellow {
    background: #FFC107;
    right: -10px;
    top: 32px
}

.star.green {
    background: #2ECC71;
    left: 20px;
    top: -12px
}

.star.blue {
    background: #3F51B5;
    right: 22px;
    top: -12px
}

.star.pink {
    background: #E91E63;
    left: -6px;
    bottom: 36px
}

.star.cyan {
    background: #00BCD4;
    right: -6px;
    bottom: 42px
}


.popup-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.popup-dot.orange {
    background: #FF9800;
    left: 22px;
    top: 32px
}

.popup-dot.brown {
    background: #6D4C41;
    right: 16px;
    top: 88px
}


.triangle.green {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 11px solid #2ECC71;
    right: -6px;
    bottom: 22px;
}

.triangle.blue {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 11px solid #3F51B5;
    left: 22px;
    bottom: 14px;
}


.avatar-box.burst .shape {
    opacity: 0
}

.avatar-box.burst .star.red {
    transform: translate(-40px, -20px) rotate(360deg) scale(1.4)
}

.avatar-box.burst .star.yellow {
    transform: translate(40px, -22px) rotate(-360deg) scale(1.4)
}

.avatar-box.burst .star.green {
    transform: translate(-6px, -50px) rotate(360deg) scale(1.4)
}

.avatar-box.burst .star.blue {
    transform: translate(8px, -52px) rotate(-360deg) scale(1.4)
}

.avatar-box.burst .star.pink {
    transform: translate(-36px, 32px) rotate(360deg) scale(1.4)
}

.avatar-box.burst .star.cyan {
    transform: translate(36px, 36px) rotate(-360deg) scale(1.4)
}

.avatar-box.burst .dot.orange {
    transform: translate(-24px, -32px) scale(1.3)
}

.avatar-box.burst .dot.brown {
    transform: translate(30px, 28px) scale(1.3)
}

.avatar-box.burst .triangle.green {
    transform: translate(30px, 28px) rotate(180deg) scale(1.4)
}

.avatar-box.burst .triangle.blue {
    transform: translate(-30px, 26px) rotate(-180deg) scale(1.4)
}


.popup-content h1 {
    font-size: 24px;
    color: #7BC89A;
    margin-bottom: 12px;
    font-weight: 700;
}

.popup-content p {
    font-size: 14px;
    color: #2f4f4f;
    line-height: 1.55;
    margin-bottom: 22px;
}


.popup-loader {
    width: 32px;
    height: 32px;
    border: 4px solid #dfeeee;
    border-top: 4px solid #1A4042;
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}


/* Green circle */
.popup-check-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #2ECC71;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: circlePop .5s ease forwards;
}

@keyframes circlePop {
    0% {
        transform: scale(.6)
    }

    80% {
        transform: scale(1.08)
    }

    100% {
        transform: scale(1)
    }
}


.popup-check-svg {
    width: 60px;
    height: 60px;
}

.popup-check-svg path {
    stroke: #fff;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: drawCheck .6s ease forwards;
    animation-delay: .3s;
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0
    }
}


.popup-check-circle {
    animation: pulse .45s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.08)
    }

    100% {
        transform: scale(1)
    }
}







/* ================= CURRICULUM ================= */
.curriculum-section {
    margin-bottom: 18px;
}

/* Section header */
.curriculum-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 12px;
}

.curriculum-header h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--eduva-dark);
}

.curriculum-header h4 span {
    color: var(--eduva-green);
}

.section-duration {
    font-size: 11px;
    color: var(--eduva-muted);
}

/* Lesson list */
.lesson-list {
    transition: max-height .35s ease;
}

.lesson-list.collapsed {
    display: none;
}

/* Lesson item */
.lesson-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .05);
    margin-bottom: 10px;
}

/* Left side */
.lesson-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Lesson number */
.lesson-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f2f6ff;
    color: var(--eduva-dark);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Lesson info */
.lesson-info h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--eduva-dark);
}

.lesson-info small {
    font-size: 11px;
    color: var(--eduva-muted);
}

/* Play button */
.lesson-play {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: var(--eduva-dark);
    color: #fff;
    cursor: pointer;
}

/* Status icons */
.lesson-status {
    font-size: 16px;
}

/* States */
.lesson-item.completed .lesson-number {
    background: #e7f6ee;
    color: var(--eduva-green);
}

.lesson-item.completed .lesson-status {
    color: var(--eduva-green);
}

.lesson-item.locked {
    opacity: .6;
}

.lesson-item.locked .lesson-status {
    color: var(--eduva-muted);
}







/* ================= VIDEO MODAL ================= */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.video-modal.show {
    display: flex;
}

.video-modal-inner {
    width: 92%;
    max-width: 420px;
    /* background: #000; */
    border-radius: 16px;
    position: relative;
    /* padding: 12px; */
}

/* Close button */
.video-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Maintain 16:9 ratio */
/* .video-wrapper{
  position: relative;
  width: 100%;
  padding-top: 56.25%; 
  border-radius: 12px;
  overflow: hidden;
}

.video-wrapper iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
} */


.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 12px;
    overflow: hidden;
}

.video-wrapper video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}







.dash-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 420px;


    width: 100%;
  max-width: 100%;  
}

.dash-tile {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 12px 14px;
    min-height: 64px;

    border-radius: 8px;
    border: 1px solid #dfeee3;
    background: #f6fbf7;
    text-decoration: none;
    color: inherit;

    cursor: pointer;
    text-align: left;
    transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}


.dash-tile:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.tile-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: grid;
    place-items: center;

    background: #76BE81;
    color: #ffffff;
    flex: 0 0 40px;
}

.tile-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}

.tile-icon i {
    font-size: 19px;
}

.tile-title {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.05;
    color: #1f3b2f;
}

/* Active tile */
.dash-tile.active {
    background: #79c487;
    border-color: #79c487;
}

.dash-tile.active .tile-title {
    color: #ffffff;
}

.dash-tile.active .tile-icon {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}



/* Small phones */
/* @media (max-width: 360px){
  .dash-grid{
    grid-template-columns: 2fr;
  }
} */

/* Big phones */
@media (min-width: 480px){
  .dash-grid{
    grid-template-columns: repeat(3, 1fr);
  }

}

/* Tablet */
@media (min-width: 768px){
  .dash-grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .dash-tile{
    padding: 14px 14px;
    min-height: 104px;
    border-radius: 12px;
  }

  .tile-icon{
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

  .tile-icon i{
    font-size: 20px;
  }

  .tile-title{
    font-size: 13px;
  }
}

/* Large tablet */
@media (min-width: 1024px){
  .dash-grid{
    grid-template-columns: repeat(3, 1fr); 
  }
}




/* .floating-consult{
  position: fixed;
  right: 0;
  top: 65%;
  transform: translateY(-50%);
  z-index: 99999;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 10px 14px 10px 10px;
  background: linear-gradient(135deg, #37583C 0%, #76BE81 100%);            
  color: #fff;
  text-decoration: none;

  border-radius: 999px 0 0 999px;      
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.floating-consult-icon{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #2f6f49;                 
  display: grid;
  place-items: center;
  flex: 0 0 42px;
}

.floating-consult-icon img{
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);     
}

.floating-consult-text{
  font-size: 14px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.floating-consult:hover{
  transform: translateY(-50%) translateX(-2px);
}

@media (max-width: 480px){
  .floating-consult{
    top: auto;
    bottom: 88px;                      
    transform: none;
  }
  .floating-consult:hover{
    transform: translateX(-2px);
  }
}

.filter-panel,
.filter-panel1{
  z-index: 100000;  
}

.floating-consult{
  z-index: 99999;
} */


/* Floating style */
/* .floating-consult{
  position: fixed;
  right: 0;
  top: 72%;
  transform: translateY(-50%);
  z-index: 99999;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 14px 10px 10px;
  background: linear-gradient(135deg, #37583C 0%, #76BE81 100%);
  color: #fff;
  text-decoration: none;

  border-radius: 999px 0 0 999px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);

  width: max-content;
  transform: translateY(-50%) translateX(calc(100% - 56px)); 
  transition: transform 0.25s ease;
  will-change: transform;

  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
} */

/* Floating style */
.floating-consult {
    position: fixed;
    right: 0;
    top: 72%;
    z-index: 99999;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 14px 10px 10px;
    background: linear-gradient(135deg, #37583C 0%, #76BE81 100%);
    color: #fff;
    text-decoration: none;

    border-radius: 999px 0 0 999px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);

    width: max-content;
    transform: translateY(-50%) translateX(calc(100% - 56px));
    /* keep hidden by default */
    transition: transform 0.25s ease;
    will-change: transform;

    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Mobile open state */
.floating-consult.open {
    transform: translateY(-50%) translateX(0);
}

/* Desktop hover only */
@media (hover: hover) and (pointer: fine) {
    .floating-consult:hover {
        transform: translateY(-50%) translateX(0);
    }
}

.floating-consult:active,
.floating-consult:focus-visible {
    transform: translateY(-50%) translateX(0) scale(0.98);
}


.floating-consult-icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #2f6f49;
    display: grid;
    place-items: center;
    flex: 0 0 44px;
}

.floating-consult-icon i {
    font-size: 25px;
    color: #fff;
    line-height: 1;
}

.floating-consult-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
}

.floating-consult-text {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.floating-consult:hover {
    transform: translateY(-50%) translateX(0);
}

/* .floating-consult:active,
.floating-consult:focus-visible{
  transform: translateY(-50%) translateX(0);
} */

.filter-panel,
.filter-panel1 {
    z-index: 100000;
}







/* .explore-tiles{
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 10px 2px 2px;
  -webkit-overflow-scrolling: touch;
}

.explore-tiles::-webkit-scrollbar{
  display: none;
}

.explore-tile{
  flex: 0 0 auto;
  width: 70px;
  height: 50px;
  border-radius: 10px;
  background: #f3f4f6;            
  text-decoration: none;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.explore-letter{
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  color: #76BE81;                
}

.explore-name{
  font-size: 12px;
  font-weight: 700;
  color: #1f3b2f;
}

.explore-tile.active{
  background: #e9f5ec;
  outline: 2px solid rgba(118,190,129,0.35);
} */


.explore-tiles {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    padding: 10px 2px 2px;

    overflow: visible;
    -webkit-overflow-scrolling: auto;
}


.explore-tiles::-webkit-scrollbar {
    display: none;
}


.explore-tile {
    width: 100%;
    height: 78px;
    border-radius: 10px;
    background: #f3f4f6;
    text-decoration: none;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;

    transition: transform 0.18s ease, background 0.18s ease, outline 0.18s ease;
}


.explore-tile:hover {
    transform: translateY(-1px);
}

.explore-letter {
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
    color: #76BE81;
}

.explore-name {
    font-size: 12px;
    font-weight: 700;
    color: #1f3b2f;
}

.explore-tile.active {
    background: #e9f5ec;
    outline: 2px solid rgba(118, 190, 129, 0.35);
}



@media (max-width: 420px) {
    .explore-tiles {
        grid-template-columns: repeat(5, 1fr);
    }

    .explore-tile {
        height: 76px;
    }

    .explore-letter {
        font-size: 30px;
    }

    .explore-name {
        font-size: 11px;
    }
}


/* Notification style */
.notif-btn {
    position: relative;
}

.notif-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #76BE81;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

.notif-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    background: #fff;
    z-index: 100200;
    transform: translateX(105%);
    transition: transform 0.25s ease;
    box-shadow: -12px 0 26px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
}

.notif-drawer.open {
    transform: translateX(0);
}

.notif-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.notif-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: #1A4042;
}

.notif-close {
    border: none;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
}

.notif-close:hover {
    background: rgba(0, 0, 0, 0.06);
}

.notif-list {
    padding: 10px 12px;
    overflow: auto;
    flex: 1;
}

.notif-item {
    display: flex;
    gap: 10px;
    padding: 12px;
    border-radius: 14px;
    background: rgba(118, 196, 135, 0.10);
    border: 1px solid rgba(26, 64, 66, 0.10);
    margin-bottom: 10px;
}

.notif-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #76C487;
    margin-top: 6px;
    flex: 0 0 10px;
}

.notif-item.read {
    background: #fff;
    opacity: 0.9;
}

.notif-item.read .notif-dot {
    background: rgba(26, 64, 66, 0.25);
}

.notif-content {
    flex: 1;
}

.notif-title {
    margin: 0;
    font-size: 13px;
    font-weight: 800;
    color: #1A4042;
}

.notif-text {
    margin: 4px 0 0;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.4;
}

.notif-time {
    margin-top: 6px;
    font-size: 11px;
    color: rgba(0, 0, 0, 0.45);
}

.notif-footer {
    padding: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.notif-clear {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-weight: 800;
    background: #1A4042;
    color: #fff;
}

.notif-clear:hover {
    opacity: 0.95;
}

.notif-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.30);
    z-index: 100100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.notif-overlay.show {
    opacity: 1;
    pointer-events: auto;
}



/* Input with icon style */
.input-with-icon {
    position: relative;
    flex: 1;
}

.input-with-icon .input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    opacity: 0.6;
    pointer-events: none;
}

.input-with-icon input {
    width: 100%;
    padding-left: 38px;
}




/* ==========================
   Privacy Policy Design
========================== */

.privacy-page{
  padding: 14px 14px 92px; /* bottom-nav space */
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.pp-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  margin-bottom: 12px;
}

.pp-hero{
  border: 1px solid rgba(118, 196, 135, 0.30);
  background: linear-gradient(180deg, rgba(118,196,135,0.14), rgba(26,64,66,0.03));
}

.pp-chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(118, 196, 135, 0.18);
  border: 1px solid rgba(118, 196, 135, 0.35);
  font-weight: 700;
  font-size: 13px;
  color: rgba(0,0,0,0.78);
  margin-bottom: 12px;
}


.pp-meta-plain{
  margin-top: 6px;
}

.pp-meta-plain .pp-line{
  font-size: 14px;
  line-height: 1.6;
  color: #111;
  margin: 2px 0;
}

.pp-meta-plain .pp-line b{
  font-weight: 800;
}

.pp-meta-plain a{
  color: #0b57d0;          
  text-decoration: underline;
  font-weight: 500;
}

.pp-meta-plain .pp-sep{
  display: inline-block;
  margin: 0 8px;
  color: #111;
  font-weight: 600;
}

.pp-meta-plain .pp-site{
  margin-top: 2px;
}



/* Headings + text */
.pp-h{
  font-size: 14px;
  font-weight: 800;
  color: #0f1f20;
  margin: 14px 0 8px;
}

.pp-h:first-child{
  margin-top: 0;
}

.pp-subh{
  font-size: 13px;
  font-weight: 800;
  color: #1A4042;
  margin: 0 0 8px;
}

.pp-p{
  font-size: 13px;
  line-height: 1.7;
  color: rgba(0,0,0,0.78);
  margin: 0 0 10px;
}

.pp-ul{
  margin: 8px 0 12px;
  padding-left: 18px;
}

.pp-ul li{
  font-size: 13px;
  line-height: 1.65;
  color: rgba(0,0,0,0.78);
  margin: 8px 0;
}

.pp-block{
  margin-top: 10px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(118,196,135,0.10);
  border: 1px solid rgba(118,196,135,0.22);
}

.pp-contact{
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(26,64,66,0.04);
  border: 1px solid rgba(0,0,0,0.05);
}

.pp-contact .row{
  font-size: 13px;
  line-height: 1.6;
  color: rgba(0,0,0,0.78);
}

.pp-space{
  height: 8px;
}



