body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #F6F8FF;
}

/* img{
    max-width: 100%;
    width: 100%;
    display: block;
    object-fit: cover;
} */
.custom-navbar {
    background: #fff;
    padding: 10px 0;
    box-shadow: 5px 0px 10px #888888;
}

.nav-logo {
    width: 40px;
}

.navbar-nav .nav-link {
    color: #000;
    font-weight: 700;
    margin: 0 15px;
    position: relative;
    transition: 0.3s;
}

.navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    width: 60%;
    height: 3px;
    background: #6c2bd9;
    bottom: 0px;
    left: 20%;
    border-radius: 10px;
}

.navbar-nav .nav-link:hover {
    color: #6c2bd9;
}

.register-btn {
    background: linear-gradient(45deg, #6819e6, #4b09b6);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0px -5px 4px 0px #FFFFFF4D inset;
}

.register-btn:hover {
    opacity: 0.9;
    color: #fff;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        padding: 20px;
    }

    .navbar-nav .nav-link {
        margin: 10px 0;
    }

    .register-btn {
        display: block;
        margin-top: 10px;
        text-align: center;
    }
}

/* Hero section */
.hero-section {
    min-height: 40vh;
    padding: 60px 20px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #555;
    line-height: 1.2;
}

.hero-subtitle {
    max-width: 700px;
    margin: 20px auto;
    font-size: 1.1rem;
    color: #444;
}

.hero-btn {
    margin-top: 20px;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    background: linear-gradient(45deg, #6819e6, #4b09b6);
    box-shadow: 0 8px 20px rgba(108, 43, 217, 0.3);
    /* box-shadow: 0px 14px 10px 0px #6819E64D; */
    box-shadow: 0px -5px 4px 0px #FFFFFF4D inset;
    transition: 0.3s;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(93, 0, 253, 0.4);
}

.hero-title {
    animation: fadeUp 1s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .hero-section {
        min-height: 80vh;
    }
}

/* Large Screens */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 3.8rem;
    }
}

/* Feature Section */
.features-section {
    padding: 40px 20px;
}

.features-tag {
    font-size: 16px;
    color: #555;
    position: relative;
    display: inline-block;
}

.features-tag::after {
    content: "";
    display: block;
    width: 50%;
    height: 3px;
    background: #6819e6;
    margin: 0px auto 0;
    border-radius: 10px;
}

.feature-item {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Bottom layer */
.feature-item::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background-color: #6819e6;
    transition: height 0.5s ease;
    z-index: -1;
    border-radius: 10px;
    /* optional for smooth edges */
}

/* Hover trigger */
.feature-item:hover::before {
    height: 100%;
}

.feature-item:hover h5,
.feature-item:hover p {
    color: #fff;
    transition: color 0.3s ease;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 10px 0 40px;
}

.features-box {
    background: #fff;
    border-radius: 30px;
    border: 1px solid #DBDBDB;
    padding: 0;
    overflow: hidden;
}

.feature-item {
    padding: 40px 30px;
    text-align: left;
}

.feature-item h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Tablet */
@media (max-width: 991px) {
    .feature-left {
        border-radius: 30px 30px 0 0;
        text-align: center;
    }

    .feature-item {
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .features-title {
        font-size: 1.8rem;
    }

    .feature-left,
    .feature-item {
        padding: 25px 20px;
    }
}

/* Benefit Section */
.benefits-section {
    padding: 40px 20px;
}

.benefits-tag {
    font-size: 16px;
    color: #555;
    position: relative;
    display: inline-block;
}

.benefits-tag::after {
    content: "";
    display: block;
    width: 50%;
    height: 3px;
    background: #8a3ffc;
    margin: 5px auto 0;
    border-radius: 10px;
}

.benefits-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 10px 0 40px;
}

.benefit-card {
    background: #fff;
    border-radius: 25px;
    padding: 30px;
    text-align: left;
    position: relative;
    border: 1px solid #e5e5e5;
    transition: 0.3s;
}

.top-line {
    height: 3px;
    width: 100%;
    background: linear-gradient(to right, #6c2bd9, transparent);
    border-radius: 10px;
    margin-bottom: 20px;
}

.small-title {
    color: #6c2bd9;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.benefit-card h4 {
    font-weight: 600;
    margin: 10px 0 15px;
}

.desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.benefit-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.benefit-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    background: #e9d5ff;
    color: #6c2bd9;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Mobile */
@media (max-width: 768px) {
    .benefits-title {
        font-size: 1.8rem;
    }

    .benefit-card {
        padding: 20px;
    }
}

/* Footer Section */
.footer-dark {
    background: #3f3f3f;
    color: #e5e5e5;
    font-family: 'Poppins', sans-serif;
}

.footer-text {
    max-width: 100%;
    line-height: 1.7;
    color: #d1d1d1;
}

.accordion-button {
    font-weight: 600;
    border: none;
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-item {
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.text-content {
    overflow: hidden;
    transition: all 0.4s ease;
}

.text-content.collapsed {
    max-height: 3.2em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.read-more-btn:active {
    transform: translateY(0);
}

.icon-box {
    width: 40px;
    height: 40px;
    background: #000;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.icon-box:hover {
    background: #0d6efd;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: #3a3a3a;
}

.footer-bottom a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-bottom a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-text {
        font-size: 14px;
    }
}

.modal-content {
    border-radius: 24px;
}

.form-control {
    height: 52px;
    border-radius: 12px;
}

.input-group-text {
    border-radius: 12px 0 0 12px;
}

.btn-dark {
    height: 52px;
    border-radius: 12px;
    font-weight: 600;
}

.tracking {
    letter-spacing: 10px;
}

@media (max-width: 991px) {

    .modal-dialog {
        margin: 1rem;
    }

}

/* Dashboard */

.logo-area {
    text-align: center;
    margin-bottom: 50px;

}

.logo-area img {
    margin-bottom: 10px;
    width: 45px;
}

.logo-area h3 {
    color: var(--primary);
    font-size: 35px;
    font-weight: 700;
}

/* =========================
   PREMIUM AUTH MODAL
========================= */
/* =========================
   MODAL
========================= */

#authModal .modal-dialog {
    max-width: 1050px;
}

#authModal .modal-content {
    border: 0;
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 25px 80px rgba(0, 0, 0, .18);
    animation: authModalZoom .35s ease;
}

.modal-backdrop.show {
    background: rgba(0, 0, 0, .65);
    backdrop-filter: blur(6px);
}

@keyframes authModalZoom {
    from {
        transform: scale(.92);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* =========================
   LEFT PANEL
========================= */

.auth-left-panel {
    background: linear-gradient(135deg, #0f172a, #111827, #1e293b);
    min-height: 560px;
    position: relative;
    overflow: hidden;
}

.auth-left-panel::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(59, 130, 246, .18);
    border-radius: 50%;
    top: -80px;
    left: -80px;
    filter: blur(40px);
}

.auth-left-panel::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(16, 185, 129, .18);
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
    filter: blur(40px);
}

.auth-left-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
}

.auth-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.auth-main-title {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
}

.auth-subtitle {
    font-size: 17px;
    line-height: 1.7;
    opacity: .78;
    margin-bottom: 32px;
}

.auth-feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-feature-item {
    display: flex;
    align-items: center;
}

.auth-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
}

.auth-feature-title {
    font-size: 15px;
    font-weight: 700;
}

.auth-feature-desc {
    font-size: 12px;
    opacity: .75;
}

.auth-stats {
    display: flex;
    gap: 35px;
    margin-top: 35px;
}

.auth-stat h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 2px;
}

.auth-stat span {
    font-size: 12px;
    opacity: .75;
    color: #fff;
}

/* =========================
   RIGHT PANEL
========================= */

.auth-form-wrapper {
    padding: 38px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-small-badge {
    display: inline-block;
    background: #eef2ff;
    color: #3730a3;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 18px;
}

.auth-form-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #111827;
}

.auth-form-subtitle {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 24px;
}

/* INPUTS */

.auth-input-label {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.auth-input-group {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: .3s;
}

.auth-input-group:focus-within {
    border-color: #111827;
    box-shadow: 0 0 0 4px rgba(17, 24, 39, .08);
}

.auth-input-group .input-group-text {
    background: #fff;
    border: 0;
    padding: 0 20px;
    font-weight: 600;
}

.auth-input-group .form-control {
    border: 0;
    height: 58px;
    font-size: 16px;
    box-shadow: none !important;
}

.auth-input {
    height: 56px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 0 16px;
    font-size: 15px;
}

.auth-input:focus {
    border-color: #111827;
    box-shadow: 0 0 0 4px rgba(17, 24, 39, .08);
}

.auth-otp-input {
    height: 64px;
    border-radius: 18px;
    text-align: center;
    font-size: 28px;
    letter-spacing: 8px;
    border: 1px solid #e5e7eb;
}

.auth-otp-input:focus {
    border-color: #111827;
    box-shadow: 0 0 0 4px rgba(17, 24, 39, .08);
}

/* BUTTON */

.auth-btn {
    height: 56px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #111827, #000);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    transition: .3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.auth-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}

.auth-trust-text {
    text-align: center;
    font-size: 12px;
    color: #6b7280;
    margin-top: 18px;
}

/* PAYMENT */

.auth-payment-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: #f3f4f6;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 18px;
}

.auth-payment-box {
    background: #f9fafb;
    border-radius: 20px;
    padding: 22px;
    margin-bottom: 24px;
}

.auth-payment-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.auth-price {
    font-size: 34px;
    font-weight: 800;
    color: #111827;
}

/* MOBILE HERO */

.mobile-finance-strip {
    background: linear-gradient(135deg, #111827, #1f2937);
    border-radius: 18px;
    padding: 15px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.mobile-finance-strip::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    background: rgba(59, 130, 246, .18);
    border-radius: 50%;
    top: -60px;
    right: -40px;
    filter: blur(25px);
}

.mobile-strip-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .12);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.mobile-strip-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.mobile-strip-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.mobile-strip-features span {
    background: rgba(255, 255, 255, .08);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 11px;
    color: #fff;
}

/* MOBILE */

@media(max-width:991px) {

    #authModal .modal-dialog {
        margin: 10px;
    }

    .auth-form-wrapper {
        padding: 22px;
    }

    .auth-form-title {
        font-size: 26px;
    }

    .auth-form-subtitle {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .auth-btn {
        height: 52px;
        font-size: 15px;
    }

    .auth-input-group .form-control {
        height: 52px;
    }

    .auth-input {
        height: 52px;
    }

    .auth-otp-input {
        height: 58px;
        font-size: 24px;
        letter-spacing: 6px;
    }

}

/* =========================
   TERMS & CONDITIONS
========================= */

.auth-terms {
    margin-bottom: 18px;
}

.auth-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.auth-checkbox input {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    accent-color: #111827;
    cursor: pointer;
}

.auth-checkbox span {
    font-size: 12px;
    line-height: 1.6;
    color: #6b7280;
}

.auth-checkbox a {
    color: #111827;
    font-weight: 600;
    text-decoration: none;
}

.auth-checkbox a:hover {
    text-decoration: underline;
}

/* MOBILE */

@media(max-width:991px) {

    .auth-checkbox span {
        font-size: 11px;
        line-height: 1.5;
    }

}

.resend-otp-btn{

    border:none;

    background:none;

    color:#6819e6;

    font-size:14px;

    font-weight:600;

    transition:0.3s;

    cursor:pointer;
}

.resend-otp-btn:hover{

    color:#E65DA1;
}

.resend-otp-btn:disabled{

    color:#9ca3af;

    cursor:not-allowed;
}