@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@600;700&display=swap');

:root {
    /* =========================================
       BRAND COLORS (MATCHING LOGO)
    ========================================= */

    --primary: #1d22b5;
    --primary-dark: #15198c;

    --accent: #a30000;
    --accent-dark: #7d0000;

    /* =========================================
       NEUTRALS
    ========================================= */

    --text: #1f2937;
    --muted: #6b7280;

    --border: #e5e7eb;

    --bg: #f5f7fb;
    --white: #ffffff;

    /* =========================================
       EFFECTS
    ========================================= */

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);

    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
}

/* =========================================
   GLOBAL
========================================= */

body {
    background: var(--bg);
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
    padding: 0;
}

.container,
.container-fluid {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.justify_txt {
    text-align: justify;
}

span.req {
    color: var(--accent);
}

div.errors {
    padding-top: 1em;
}

/* =========================================
   TYPOGRAPHY
========================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.02em;
    margin-bottom: 0.7rem;
}

h1 {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
}

h2 {
    color: var(--bg);
    font-size: 1.5rem;
    font-weight: 700 !important;
}

h2.accordion-header {
    font-weight: 700;
}

h3 {
    color: #374151;
    font-size: 1.2rem;
    font-weight: 600;
}

h4 {
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
}

p {
    color: #374151;
}

/* =========================================
   LINKS
========================================= */

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* =========================================
   HORIZONTAL TITLE LINE
========================================= */

h3.with-hr {
    overflow: hidden;
    text-align: center;
    margin: 2rem 0;
}

h3.with-hr:before,
h3.with-hr:after {
    background-color: var(--border);
    content: '';
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 50%;
}

h3.with-hr:before {
    right: 0.5em;
    margin-left: -50%;
}

h3.with-hr:after {
    left: 0.5em;
    margin-right: -50%;
}

/* =========================================
   LOGO
========================================= */

.mylogo {
    margin: 1rem 0;
}

h1.logo {
    color: var(--primary);
    margin: 0 0 0.3rem 0;
    text-transform: uppercase;
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

h1.sub-logo {
    color: var(--accent);
    margin: 0;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* =========================================
   NAVBAR
========================================= */

/* =========================================
   NAVBAR - RED BRAND STYLE
========================================= */

.mynavbar,
.mynavbar_member {
    background: linear-gradient(90deg, #7d0000, #a30000) !important;

    padding: 0.35rem 1rem;

    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.mynavbar-admin {
    background: #111827 !important;
}

.mynavbar .nav-item,
.mynavbar_member .nav-item {
    padding: 0 0.35rem;
}

/* =========================================
   NAV LINKS
========================================= */

.mynavbar .nav-link,
.mynavbar_member .nav-link {
    display: flex;
    align-items: center;
    gap: 8px;

    color: white !important;

    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;

    padding: 0.85rem 0.95rem !important;

    border-radius: 10px;

    position: relative;

    transition: all 0.2s ease;
}

.mynavbar .nav-link:hover,
.mynavbar_member .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);

    transform: translateY(-1px);
}

/* =========================================
   ACTIVE MENU
========================================= */

.mynavbar .nav-link.active,
.mynavbar_member .nav-link.active {
    background: rgba(255, 255, 255, 0.14);

    font-weight: 600;
}

.mynavbar .nav-link.active::after,
.mynavbar_member .nav-link.active::after {
    content: '';

    position: absolute;

    left: 12px;
    right: 12px;
    bottom: 6px;

    height: 2px;

    background: white;

    border-radius: 10px;
}

/* =========================================
   NAVIGATION ICONS
========================================= */

.mynavbar .nav-link i,
.mynavbar .nav-link .nav_icon,
.mynavbar_member .nav-link i,
.mynavbar_member .nav-link .nav_icon {
    font-size: 16px;

    opacity: 0.75;

    transition: all 0.2s ease;

    vertical-align: middle;
}

.mynavbar .nav-link:hover i,
.mynavbar .nav-link:hover .nav_icon,
.mynavbar_member .nav-link:hover i,
.mynavbar_member .nav-link:hover .nav_icon {
    opacity: 1;

    transform: translateX(2px);
}

.mynavbar .nav-link.active i,
.mynavbar_member .nav-link.active i {
    opacity: 1;
}
/* =========================================
   DROPDOWN
========================================= */

.dropdown-menu {
    border: 0;
    border-radius: 14px;

    padding: 0.6rem;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.dropdown-item {
    border-radius: 10px;

    padding: 0.7rem 0.9rem;

    font-size: 0.95rem;

    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(29, 34, 181, 0.08);

    color: var(--primary);
}

/* =========================================
   BUTTONS
========================================= */

.btn {
    border-radius: var(--radius-sm);
    font-weight: 500;
    padding: 0.55rem 1rem;
    transition: all 0.2s ease;
    box-shadow: none !important;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-danger,
.btn-accent {
    background: var(--accent);
    border-color: var(--accent);
}

.btn-danger:hover,
.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

/* =========================================
   CARDS
========================================= */

.card,
.dashboard-card {
    background: var(--white);

    border-radius: var(--radius-md);

    border: 1px solid var(--border);

    box-shadow: var(--shadow-sm);

    transition: all 0.25s ease;

    overflow: hidden;
}

.card:hover,
.dashboard-card:hover {
    transform: translateY(-4px);

    box-shadow: var(--shadow-md);
}

.card-header {
    background: #f8f9fd;

    border-bottom: 1px solid var(--border);

    font-family: 'Montserrat', sans-serif;

    color: var(--primary);

    font-weight: 600;

    padding: 1rem 1.25rem;
}

.card-body {
    padding: 1.25rem;
}

h5.card-title {
    font-family: 'Montserrat', sans-serif;

    font-size: 1.1rem;

    color: var(--primary);

    font-weight: 600;

    margin-bottom: 1rem;
}

/* =========================================
   DASHBOARD
========================================= */

.dashboard-header {
    background: var(--white);

    border-radius: var(--radius-md);

    padding: 22px 24px;

    border: 1px solid var(--border);

    margin-bottom: 20px;

    box-shadow: var(--shadow-sm);
}

.dashboard-header h1 {
    font-size: 1.8rem;

    margin-bottom: 0.3rem;
}

.dashboard-header p {
    margin: 0;

    color: var(--muted);

    font-size: 0.95rem;
}

.dashboard-card {
    height: 100%;
}

.dashboard-card a {
    text-decoration: none;
    color: var(--text);
}

.dashboard-card .card-body {
    padding: 24px 16px;

    text-align: center;
}

/* =========================================
   DASHBOARD ICON
========================================= */

.dashboard-icon {
    width: 52px;
    height: 52px;

    margin: 0 auto 14px;

    border-radius: 14px;

    background: rgba(29, 34, 181, 0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;

    color: var(--primary);

    transition: all 0.25s ease;
}

.dashboard-card:hover .dashboard-icon {
    transform: translateY(-2px);

    background: var(--primary);

    color: white;
}

.dashboard-title {
    font-size: 15px;

    font-weight: 600;

    line-height: 1.5;
}

.logout-card .dashboard-icon,
.logout-card .dashboard-title {
    color: var(--accent);
}

/* =========================================
   ACCORDION
========================================= */

.accordion-item {
    border: 1px solid var(--border);

    border-radius: var(--radius-sm) !important;

    overflow: hidden;

    margin-bottom: 1rem;
}

.accordion-button {
    background: #ffffff;

    color: var(--primary);

    font-weight: 600;

    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: rgba(29, 34, 181, 0.04);

    color: var(--primary);
}

.accordion-body {
    background: #f8f9fd;
}

/* =========================================
   TABLES
========================================= */

.table {
    background: white;

    border-radius: var(--radius-md);

    overflow: hidden;

    border: 1px solid var(--border);
}

.table th {
    background: rgba(29, 34, 181, 0.05);

    color: var(--primary);

    font-weight: 600;

    border-bottom: 1px solid var(--border);

    padding: 0.9rem;
}

.table td {
    vertical-align: middle;

    padding: 0.85rem;

    border-color: #edf2f7;
}

/* =========================================
   TABLE ACTIONS
========================================= */

.table-actions {
    display: flex;

    align-items: center;

    gap: 10px;
}

.table-actions a {
    color: #6b7280;

    transition: all 0.2s ease;
}

.table-actions a:hover {
    color: var(--primary);

    transform: scale(1.08);
}

/* =========================================
   ICON BUTTONS
========================================= */

.icon-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 34px;
    height: 34px;

    border-radius: 10px;

    background: #f3f4f6;

    color: #4b5563;

    border: 1px solid transparent;

    transition: all 0.2s ease;
}

.icon-btn:hover {
    background: rgba(29, 34, 181, 0.08);

    color: var(--primary);

    transform: translateY(-1px);
}

/* =========================================
   FORMS
========================================= */

.form-control,
.form-select {
    border-radius: var(--radius-sm);

    border: 1px solid #d1d5db;

    padding: 0.7rem 0.85rem;

    font-size: 0.95rem;

    box-shadow: none !important;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);

    box-shadow: 0 0 0 3px rgba(29, 34, 181, 0.12) !important;
}

label {
    font-weight: 500;

    margin-bottom: 0.4rem;

    color: #374151;
}

/* =========================================
   ALERTS
========================================= */

.alert {
    border-radius: var(--radius-sm);

    border: 1px solid transparent;

    padding: 1rem 1.2rem;
}

/* =========================================
   DEMO CARD
========================================= */

.democard {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));

    border-radius: var(--radius-lg);

    border: none;

    overflow: hidden;
}

/* =========================================================
   FOOTER
========================================================= */

.footer-main {
    margin-top: 50px;

    background: #3e4551;

    color: white;
}

.footer-container {
    padding-top: 40px;
    padding-bottom: 35px;
}

.footer-links {
    list-style: none;

    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.88);

    text-decoration: none;

    transition: all 0.25s ease;
}

.footer-links a:hover {
    color: white;

    padding-left: 4px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.18);

    text-align: center;

    padding: 14px 20px;

    font-size: 0.92rem;

    color: rgba(255, 255, 255, 0.92);
}

.footer-bottom strong {
    color: white;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {
    h1 {
        font-size: 1.7rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .dashboard-header {
        padding: 18px;
    }

    .dashboard-card .card-body {
        padding: 18px 12px;
    }

    .mynavbar .nav-link,
    .mynavbar_member .nav-link {
        padding: 0.7rem 0.5rem !important;
    }

    h1.logo {
        font-size: 1.6rem;
    }
}

.faq-section {
    padding: 50px 0;
    background: #f5f7fb;
}

.faq-title {
    text-align: center;
    margin-bottom: 40px;
}

.faq-title h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.faq-title p {
    color: #6b7280;
    font-size: 1rem;
}

.faq-card {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.faq-card .card-body {
    padding: 18px;
}

.faq-card .card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
}

.faq-icon {
    width: 38px;
    height: 38px;
    background: #dc2626;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.ratio iframe {
    border-radius: 12px;
}

@media (max-width: 768px) {
    .faq-title h1 {
        font-size: 2rem;
    }
}

.subscription-section {
    padding: 50px 0;
    background: #f5f7fb;
    min-height: 100vh;
}

.subscription-header {
    text-align: center;
    margin-bottom: 40px;
}

.subscription-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.subscription-header p {
    color: #6b7280;
    font-size: 1rem;
}

.package-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.package-card .card-body {
    padding: 28px;
}

.package-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.package-desc {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
}

.package-meta {
    margin-bottom: 20px;
}

.package-meta div {
    margin-bottom: 10px;
    color: #374151;
    font-size: 0.95rem;
}

.package-meta i {
    color: #dc2626;
    margin-right: 8px;
    width: 18px;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 20px;
}

.gst-note {
    text-align: center;
    color: #6b7280;
    margin-top: 30px;
}

.btn-pay {
    width: 100%;
    border-radius: 12px;
    padding: 12px;
    font-weight: 600;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border: none;
    color: #fff;
    transition: 0.3s ease;
}

.btn-pay:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    color: #fff;
}

.alert {
    border-radius: 12px;
}

.modal-content {
    border-radius: 18px;
    border: none;
}

.modal-header {
    border-bottom: 1px solid #f1f1f1;
}

.modal-footer {
    border-top: 1px solid #f1f1f1;
}

.coupon-btn {
    border-radius: 10px;
}

@media (max-width: 768px) {
    .subscription-header h1 {
        font-size: 2rem;
    }
}

.about-section {
    padding: 50px 0;
    background: #f5f7fb;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.about-header p {
    color: #6b7280;
    font-size: 1.05rem;
}

.profile-card,
.content-card {
    border: none;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.profile-card .card-body,
.content-card .card-body {
    padding: 30px;
}

.profile-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.profile-subtitle {
    color: #dc2626;
    font-weight: 600;
    margin-bottom: 25px;
}

.ratio iframe {
    border-radius: 16px;
}

.story-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 30px;
    line-height: 1.3;
}

.justify_txt {
    text-align: justify;
    color: #374151;
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 22px;
}

.quote-box {
    background: #fef2f2;
    border-left: 5px solid #dc2626;
    border-radius: 14px;
    padding: 22px;
    margin: 28px 0;
}

.quote-box strong {
    color: #991b1b;
    font-size: 1.05rem;
    line-height: 1.9;
}

.sticky-profile {
    position: sticky;
    top: 20px;
}

@media (max-width: 991px) {
    .sticky-profile {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .about-header h1 {
        font-size: 2rem;
    }

    .story-title {
        font-size: 1.6rem;
    }

    .profile-card .card-body,
    .content-card .card-body {
        padding: 22px;
    }
}
.contact-section {
    padding: 60px 0;
    background: #f5f7fb;
    min-height: 100vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 45px;
}

.contact-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.contact-header p {
    color: #6b7280;
    font-size: 1.05rem;
}

.contact-card {
    border: none;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.contact-card .card-body {
    padding: 45px;
}

.company-name {
    font-size: 2rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 35px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    border-radius: 18px;
    background: #f9fafb;
    margin-bottom: 22px;
    transition: 0.3s ease;
}

.contact-item:hover {
    background: #fff5f5;
    transform: translateY(-2px);
}

.contact-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.contact-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.contact-content p,
.contact-content a {
    margin: 0;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.8;
    text-decoration: none;
}

.contact-content a:hover {
    color: #dc2626;
}

.whatsapp-note {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 14px;
    background: #dcfce7;
    color: #166534;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 2rem;
    }

    .company-name {
        font-size: 1.6rem;
    }

    .contact-card .card-body {
        padding: 25px;
    }

    .contact-item {
        flex-direction: column;
    }
}

.login-section {
    padding: 60px 0;
    background: #f5f7fb;
    min-height: 100vh;
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.login-header p {
    color: #6b7280;
    font-size: 1.05rem;
}

.feature-card,
.login-card {
    border: none;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    height: 100%;
}

.feature-card .card-body,
.login-card .card-body {
    padding: 35px;
}

.feature-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
    color: #374151;
    line-height: 1.7;
}

.feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    background: #fee2e2;
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* GOOGLE LOGIN SECTION */

.google-login-box {
    text-align: center;
    margin-bottom: 35px;
}

.google-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px 32px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f89898, #d4b4b4);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.18);
}

.google-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    color: #fff;
}

.google-btn i {
    font-size: 1.3rem;
}

.google-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 320px;
    padding: 18px 30px;
    border-radius: 18px;
    background: #fff;
    color: #111827;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.google-btn:hover {
    transform: translateY(-3px) scale(1.02);
    background: #f9fafb;
    color: #111827;
}

.google-btn i {
    font-size: 1.4rem;
}

/* EMAIL LOGIN */

.email-login-section {
    margin-top: 15px;
    padding-top: 25px;
    border-top: 1px solid #e5e7eb;
}

.email-login-title {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.form-label {
    font-weight: 600;
    color: #6b7280;
    font-size: 0.92rem;
}

.form-control {
    border-radius: 14px;
    padding: 14px 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.form-control:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 0.15rem rgba(220, 38, 38, 0.12);
}

.btn-login {
    width: 100%;
    padding: 13px;
    border-radius: 14px;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #374151;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-login:hover {
    background: #f3f4f6;
    color: #111827;
}

.forgot-link {
    display: block;
    text-align: center;
    margin-top: 18px;
    color: #6b7280;
    font-size: 0.92rem;
    text-decoration: none;
}

.forgot-link:hover {
    color: #dc2626;
}

.alert {
    border-radius: 14px;
}

.req {
    color: #dc2626;
}

@media (max-width: 768px) {
    .login-header h1 {
        font-size: 2rem;
    }

    .feature-card .card-body,
    .login-card .card-body {
        padding: 25px;
    }

    .feature-title {
        font-size: 1.5rem;
    }

    .google-login-box {
        padding: 30px 20px;
    }

    .google-btn {
        width: 100%;
        min-width: auto;
    }
}

.howto-section {
    padding: 60px 0;
    background: #f5f7fb;
    min-height: 100vh;
}

.howto-header {
    text-align: center;
    margin-bottom: 45px;
}

.howto-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.howto-header p {
    color: #6b7280;
    font-size: 1.05rem;
}

.howto-card {
    border: none;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.howto-card .card-body {
    padding: 45px;
}

.welcome-box {
    background: linear-gradient(135deg, #fef2f2, #fff);
    border: 1px solid #fee2e2;
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 35px;
}

.welcome-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.welcome-box p {
    color: #6b7280;
    margin-bottom: 0;
    line-height: 1.8;
}

.download-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 28px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #e5e7eb;
    margin-bottom: 25px;
    transition: 0.3s ease;
}

.download-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-color: #fecaca;
}

.download-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.download-icon {
    width: 68px;
    height: 68px;
    min-width: 68px;
    border-radius: 18px;
    background: #fee2e2;
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.download-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.download-content p {
    margin: 0;
    color: #6b7280;
    line-height: 1.7;
}

.download-btn {
    padding: 14px 24px;
    border-radius: 14px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    white-space: nowrap;
}

.download-btn:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    color: #fff;
    transform: translateY(-2px);
}

.login-alert {
    background: #fff7ed;
    color: #9a3412;
    border-radius: 18px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    border: 1px solid #fed7aa;
}

.login-alert-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.login-alert-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 14px;
    background: #ffedd5;
    color: #ea580c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.login-alert-title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.login-alert-text {
    font-size: 0.95rem;
}

.login-btn {
    padding: 12px 24px;
    border-radius: 12px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    white-space: nowrap;
}

.login-btn:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    color: #fff;
}

@media (max-width: 768px) {
    .howto-header h1 {
        font-size: 2rem;
    }

    .howto-card .card-body {
        padding: 25px;
    }

    .download-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .download-left {
        align-items: flex-start;
    }

    .download-btn {
        width: 100%;
        text-align: center;
    }

    .login-alert {
        flex-direction: column;
        align-items: flex-start;
    }

    .login-btn {
        width: 100%;
        text-align: center;
    }
}

.home-section {
    padding: 50px 0 70px;
    background: #f5f7fb;
    min-height: 100vh;
}

.hero-section {
    background: linear-gradient(135deg, #ffffff, #fef2f2);
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    margin-bottom: 45px;
    overflow: hidden;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: #fee2e2;
    color: #b91c1c;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 1.08rem;
    line-height: 2;
    color: #4b5563;
    max-width: 850px;
}

.hero-buttons {
    margin-top: 35px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: 16px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.primary-btn:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    color: #fff;
    transform: translateY(-2px);
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #111827;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.secondary-btn:hover {
    background: #f9fafb;
    color: #111827;
    transform: translateY(-2px);
}

.content-card {
    border: none;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: 0.3s ease;
}

.content-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.content-card .card-body {
    padding: 35px;
}

.section-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.section-text {
    color: #4b5563;
    line-height: 1.9;
    font-size: 1rem;
}

.highlight-box {
    margin-top: 25px;
    padding: 22px;
    border-radius: 20px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    line-height: 1.8;
}

.profile-box {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 24px;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.profile-name {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.profile-desc {
    color: #4b5563;
    line-height: 1.9;
}

.journey-section {
    margin-top: 45px;
}

.journey-card {
    border: none;
    border-radius: 28px;
    background: linear-gradient(135deg, #ffffff, #f9fafb);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.journey-card .card-body {
    padding: 45px;
}

.journey-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 25px;
}

.journey-text {
    color: #4b5563;
    line-height: 2;
    font-size: 1.02rem;
    text-align: justify;
}

.quote-box {
    margin: 30px 0;
    padding: 28px;
    border-radius: 22px;
    background: #fef2f2;
    border-left: 5px solid #dc2626;
}

.quote-box strong {
    color: #991b1b;
    font-size: 1.1rem;
    line-height: 1.9;
}

.trial-box {
    margin-top: 45px;
    border-radius: 28px;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    padding: 45px;
    text-align: center;
    color: #fff;
    box-shadow: 0 15px 45px rgba(220, 38, 38, 0.2);
}

.trial-box h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.trial-box p {
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.trial-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: 16px;
    background: #fff;
    color: #b91c1c;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.trial-btn:hover {
    background: #f9fafb;
    color: #991b1b;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 35px 25px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title,
    .journey-title {
        font-size: 1.6rem;
    }

    .content-card .card-body,
    .journey-card .card-body {
        padding: 25px;
    }

    .profile-box {
        flex-direction: column;
    }

    .profile-img {
        width: 120px;
        height: 120px;
    }

    .trial-box {
        padding: 30px 20px;
    }

    .trial-box h2 {
        font-size: 1.7rem;
    }
}

.profile-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 14px 24px;

    border-radius: 14px;

    background: linear-gradient(135deg, #ffffff, #f9fafb);

    border: 1px solid #e5e7eb;

    color: #111827;

    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;

    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.profile-btn:hover {
    transform: translateY(-2px);

    background: linear-gradient(135deg, #dc2626, #b91c1c);

    border-color: #dc2626;

    color: #fff;

    box-shadow: 0 10px 24px rgba(220, 38, 38, 0.18);
}

.profile-btn i {
    transition: transform 0.3s ease;
}

.profile-btn:hover i {
    transform: translateX(4px);
}
