/* Login Page */
body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: radial-gradient(circle at 50% 50%, #f7cfa2 0%, #ece2d7 80%);
}

.custom-container {
    min-height: 100vh;
    border-radius: 24px;
    background: radial-gradient(circle at 50% 40%, #f7cfa2 0%, #ece2d7 100%);
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    overflow: hidden;
}
/* body {
    font-family: Arial, sans-serif;
    background-color: #f7cfa2;
}
.container{
    background-color: #f7cfa2;
    margin: 0px;
} */

.bg-light-orange {
    background-color: #f7cfa2;
}

.form-box {
    max-width: 100%;
    border-radius: 12px;
}

.error {
    color: #c00;
    margin-bottom: 16px;
    text-align: center;
}

.btn-custom {
    padding: 10px 26px;
    background-color: #e2b07e;
    border: none;
    color: #333;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-custom:hover {
    background-color: #d9c2aa;
}

/* Responsive font sizes */

@media (max-width: 576px) {
    body {
        font-size: 14px;
    }
    .form-box h2 {
        font-size: 22px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    body {
        font-size: 15px;
    }
    .form-box h2 {
        font-size: 24px;
    }
}

@media (min-width: 769px) {
    body {
        font-size: 16px;
    }
    .form-box h2 {
        font-size: 26px;
    }
}

/* tracking page */

.p-3 {
    padding: 1rem !important;
    margin-bottom: 20px;
}
.hamburger-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #000;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    /* left: -100%; */
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 8px rgba(0,0,0,0.1);
    transition: left 0.3s ease;
    z-index: 999;
    padding-top: 60px;
    padding: 20px; /* universal padding */
}

.mobile-menu.open {
    left: 0;
}

.mobile-nav-list {
    list-style: none;
    padding: 0 20px;
}

.mobile-nav-list li {
    margin-bottom: 18px;
}

.mobile-nav-list a {
    text-decoration: none;
    font-size: 1.1rem;
    color: #000;
    font-weight: 500;
    display: block;
    transition: color 0.2s;
}

.mobile-nav-list a:hover,
.mobile-nav-list a:active {
    color: red;
}

/* index page */

body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: radial-gradient(circle at 50% 50%, #f7cfa2 0%, #ece2d7 80%);
}

.custom-container {
    min-height: 100vh;
    border-radius: 24px;
    background: radial-gradient(circle at 50% 40%, #f7cfa2 0%, #ece2d7 100%);
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    overflow: hidden;
}

.navbar {
    padding: 32px 48px 0 48px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    letter-spacing: 1px;
}

.nav-list {
    display: flex;
    gap: 36px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    font-size: 1.1rem;
    color: #222;
    cursor: pointer;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-item.active,
.nav-item:hover {
    color: #000;
    text-decoration: underline;
}

.nav-link {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 0 2px;
}

.profile-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ece2d7;
    border: 2px solid #d9c2aa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 24px;
}

.heading {
    font-size: 2.5rem;
    text-align: center;
    color: #000;
    font-weight: 700;
    letter-spacing: 1px;
}

.subscription-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    padding: 32px;
    margin-top: 32px;
    text-align: left;
}

.sub-title {
    font-size: 18px;
    font-weight: 600;
    color: #e2b07e;
    margin-bottom: 18px;
}

.sub-info {
    font-size: 14px;
    margin-bottom: 8px;
}

.sub-label {
    font-weight: bold;
    color: #333;
}

.sub-value {
    color: #555;
    font-weight: 500;
}

.btn-custom {
    padding: 10px 28px;
    background: #e2b07e;
    border: none;
    color: #333;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
    min-width: 145px;
    min-height: 35px;
}

.btn-custom:hover {
    background: #d9c2aa;
}

/* Mobile view */
@media (max-width: 576px) {
    .navbar {
        flex-direction: column;
        align-items: stretch;
        padding: 16px 5vw 0 5vw;
    }

    .logo-text {
        font-size: 1.2rem;
        text-align: center;
    }

    .nav-list {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-item {
        font-size: 1rem;
        padding: 8px 0;
    }

    .profile-icon {
        width: 32px;
        height: 32px;
        margin-left: 8px;
    }

    .heading {
        font-size: 1.8rem;
        margin-top: 24px;
    }

    .subscription-box {
        padding: 20px;
        margin-top: 24px;
        border-radius: 12px;
        box-shadow: 0 1px 6px rgba(0,0,0,0.07);
    }

    .btn-custom {
        width: 100%;
        padding: 10px 10px;
    }
}

/* coping page */

body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: radial-gradient(circle at 50% 50%, #f7cfa2 0%, #ece2d7 80%);
}

.custom-container {
    min-height: 100vh;
    border-radius: 24px;
    background: radial-gradient(circle at 50% 40%, #f7cfa2 0%, #ece2d7 100%);
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    overflow: hidden;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    letter-spacing: 1px;
}

.nav-list {
    display: flex;
    gap: 36px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    font-size: 1.1rem;
    color: #222;
    cursor: pointer;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-item.active,
.nav-item:hover {
    color: #000;
    text-decoration: underline;
}

.nav-link {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 0 2px;
}

.profile-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ece2d7;
    border: 2px solid #d9c2aa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 24px;
}

.main-content {
    margin-top: 60px;
    padding: 20px;
}

.coping-title {
    font-size: 20px;
    color: #000;
    font-weight: 600;
    margin-bottom: 32px;
}

.select-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin-bottom: 32px;
    max-width: 100%;
    max-height: 240px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #e2b07e #ece2d7;
}

.select-row::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}

.select-row::-webkit-scrollbar-thumb {
    background: #e2b07e;
    border-radius: 8px;
}

.select-row::-webkit-scrollbar-track {
    background: #ece2d7;
    border-radius: 8px;
}

.select-card {
    background: rgba(255,255,255,0.8);
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    padding: 14px 22px;
    min-width: 110px;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #1d1d1d;
    font-weight: 500;
    cursor: pointer;
    transition: box-shadow 0.15s, transform 0.15s, background 0.15s;
    border: 2px solid transparent;
    text-align: center;
    user-select: none;
}

.select-card.selected,
.select-card:hover {
    border: 2px solid #e2b07e;
    background: #fff6ee;
    box-shadow: 0 6px 18px rgba(0,0,0,0.10);
    transform: scale(1.03);
}

.exercise-content {
    background: rgba(255,255,255,0.85);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 24px;
    min-width: 100%;
    max-width: 400px;
    text-align: left;
    font-size: 16px;
    color: #333;
}

/* Responsive Design */
@media (max-width: 576px) {
    .main-content {
        margin-top: 40px;
        padding: 20px 10px;
    }

    .logo-text {
        font-size: 1.2rem;
        text-align: center;
    }

    .nav-list {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-item {
        font-size: 1rem;
        padding: 8px 0;
    }

    .profile-icon {
        width: 32px;
        height: 32px;
        margin-left: 8px;
    }

    .select-row {
        gap: 10px;
        max-width: 95vw;
        max-height: 180px;
    }

    .select-card {
        padding: 5px 5px;
        /* min-width: 95px; */
        font-size: 10px;
    }

    .exercise-content {
        padding: 14px;
        font-size: 10px;
    }
}

.hamburger-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #000;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 240px;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 8px rgba(0,0,0,0.1);
    transition: left 0.3s ease;
    z-index: 999;
    padding-top: 60px;
}

.mobile-menu.open {
    left: 0;
}

.mobile-nav-list {
    list-style: none;
    padding: 0 20px;
}

.mobile-nav-list li {
    margin-bottom: 18px;
}

.mobile-nav-list a {
    text-decoration: none;
    font-size: 1.1rem;
    color: #000;
    font-weight: 500;
    display: block;
    transition: color 0.2s;
}

.mobile-nav-list a:hover,
.mobile-nav-list a:active {
    color: red;
}

/* Princing Plan */

body {
    font-family: Arial;
    background: #f7cfa2;
    margin: 0;
}

.subtitle {
    font-size: 1.2em;
}

.plan-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: start;
    position: relative;
    height: 100%;
}

.plan-card.popular {
    background: #2176f7;
    color: #fff;
}

.plan-card.popular .popular-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #fff;
    color: #2176f7;
    border-radius: 10px;
    font-size: 0.85em;
    font-weight: bold;
    padding: 2px 12px;
}

.plan-title {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 4px;
    color: #2176f7;
}

.plan-card.popular .plan-title {
    color: #fff;
}

.plan-price {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 4px;
}

.plan-desc {
    font-size: 1em;
    margin-bottom: 18px;
}

.features-title {
    font-weight: bold;
    color: #2176f7;
    margin-bottom: 8px;
}

.plan-card.popular .features-title {
    color: #fff;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
}

.features-list li {
    margin-bottom: 7px;
    font-size: 1em;
    display: flex;
    align-items: center;
}

.features-list li .check {
    color: #2176f7;
    margin-right: 6px;
}

.plan-card.popular .features-list li .check {
    color: #fff;
}

.features-list li .cross {
    color: #999;
    margin-right: 6px;
}

.plan-card.popular .features-list li .cross {
    color: #fff;
}

.plan-btn {
    margin-top: auto;
    width: 100%;
    padding: 10px 0;
    border: none;
    border-radius: 7px;
    background: #2176f7;
    color: #fff;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
}

.plan-card.popular .plan-btn {
    background: #fff;
    color: #2176f7;
}

.plan-btn:hover {
    background: #1248a3;
}

.plan-card.popular .plan-btn:hover {
    background: #e2b07e;
    color: #2176f7;
}
