:root {

    --primary-color: #007bff;

    --border-color: #e9ecef;

    --text-color: #333;

    --label-color: #6c757d;

    --card-bg: #ffffff;

    --body-bg: #f8f9fa;

    --status-completed-bg: #d4edda;

    --status-completed-text: #155724;

    --status-pending-bg: #fff3cd;

    --status-pending-text: #856404;



    --sidebar-bg: #0d5c63;

    /* Deep Teal */

    --main-bg: #f8fafc;

    --card-bg: #ffffff;

    --primary-accent: #25a18e;

    /* Vibrant Teal */

    --text-primary: #334155;

    /* Slate */

    --text-secondary: #64748b;

    --text-light: #f1f5f9;

    --border-color: #e2e8f0;

    --subsection-title-color: #0d5c63;

    /* Matching Deep Teal */

}



/* General Body Styles */

body {

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

    margin: 0;

    background-color: var(--main-bg);

    color: var(--text-primary);

}



.container {

    max-width: 1140px;

    margin: 0 auto;

    padding: 0 15px;

}



/* Header and Navigation */

.header {

    background-color: #fff;

    padding: 15px 0;

    border-bottom: 1px solid #e0e0e0;

}



.main-nav {

    display: flex;

    justify-content: space-between;

    align-items: center;

}



.logo-link {

    display: flex;

    align-items: center;

    text-decoration: none;

}



.logo-img {

    height: 60px;

    margin-right: 15px;

}



.logo-text {

    display: flex;

    flex-direction: column;

}



.logo-main {

    font-size: 24px;

    font-weight: 700;

    color: #333;

}



.logo-sub {

    font-size: 14px;

    color: #666;

}



.nav-links {

    list-style: none;

    display: flex;

    margin: 0;

    padding: 0;
    align-items: center;

}



.nav-links li {

    margin-right:10px;

}
.nav-links li:last-child{
    margin-right: 0px;
}


.nav-links a {

    text-decoration: none;

    color: #555;

    font-weight: 500;

    padding-bottom: 5px;

}
.nav-links span{
       color: #d96a6a;

}



.nav-links a.active {

    color: #cdaa7c;

    border-bottom: 2px solid #cdaa7c;

}



.anniversary-logo {

    height: 50px;

}



/* Main Content */





.membership-section {

    /* UPDATED: This now becomes the main white content area */

    background-color: #fff;

    padding: 50px 60px;

    /* UPDATED: text is now left aligned by default */

    text-align: left;

}







.membership-section p {

    font-size: 16px;

    line-height: 1.6;

    /* Removed centering styles */

    max-width: none;

    margin: 0 0 15px 0;

    color: #555;

}



.instruction-text {

    margin-top: 30px;

    font-weight: 500;

    /* This specific paragraph is centered */

    text-align: center;

}



/* Membership Plans */

.membership-plans {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    margin-top: 40px;

}



.plan {

    background-color: #fff;

    border-radius: 8px;

    overflow: hidden;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

    display: flex;

    flex-direction: column;

}



.plan-top {

    background-color: #cdaa7c;

    padding: 15px 25px;

    text-align: center;

}



.plan-top h3 {

    margin: 0;

    font-size: 20px;

    font-weight: 500;

    color: #fff;

}



.plan-main {

    background-color: #7a7f9d;

    padding: 25px 20px;

    text-align: center;

}



.plan-main .price {

    font-size: 52px;

    font-weight: 700;

    color: #fff;

    margin: 0;

}



.plan-main .price span {

    font-size: 20px;

    font-weight: 400;

}



.plan-body {

    padding: 25px 25px 20px 25px;

    flex-grow: 1;

}



.plan-body p {

    font-size: 15px;

    color: #666;

    text-align: center;

    margin-bottom: 20px;

}



.plan-body .required {

    font-weight: 700;

    text-decoration: underline;

    color: #333;

    margin-top: 20px;

    margin-bottom: 10px;

    text-align: left;

}



.plan-body ul {

    list-style-position: inside;

    padding-left: 0;

    text-align: left;

    margin: 0;

    color: #666;

}



.plan-body ul li {

    margin-bottom: 5px;

}



.plan-signup-area {

    background-color: #F5F5F5;

    padding: 25px;

    text-align: center;

    margin-top: auto;

}



.btn {

    display: inline-block;

    background-color: #e88484;

    color: #fff;

    padding: 10px 25px;

    border-radius: 5px;

    text-decoration: none;

    font-weight: 500;

    transition: background-color 0.3s;

}



.btn:hover {

    background-color: #d96a6a;

}



/* Footer */

.footer {

    background-color: #E5E5E5;

    padding-top: 50px;

    color: #555;

    border-top: 1px solid #dcdcdc;

}



.footer-grid {

    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 40px;

    padding-bottom: 40px;

}



.footer-logo {

    height: 70px;

    margin-bottom: 15px;

}



.footer h4 {

    font-size: 18px;

    color: #333;
    margin: 0px;

    margin-bottom: 15px;

    font-weight: bold;

}



.footer p {

    line-height: 1.7;

    margin-bottom: 15px;

}



.footer a {

    color: #b58c5c;

    text-decoration: none;

}



.footer a:hover {

    text-decoration: underline;

}



.footer-contact p {

    margin: 0px;

}



.footer-contact strong {

    font-weight: bold;

    color: #333;

}



.social-icons {

    display: flex;

    gap: 15px;

    margin-top: 15px;

}



.social-icon {

    width: 40px;

    height: 40px;

    border-radius: 5px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    text-decoration: none;

    font-size: 20px;

}



.social-icon.facebook {

    background-color: #3b5998;

    font-family: sans-serif;

    font-weight: bold;

}



.social-icon.instagram {

    background: #d6249f;

    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);

}



.footer-bottom {

    background-color: #DDDDDD;

    padding: 15px 0;

    font-size: 14px;
    background-color: #b58c5c;

}



.footer-bottom .container {

    display: flex;

    justify-content: space-between;

}



.footer-bottom p,.footer-bottom a {

    margin: 0;
    color: #fff;

}
.plan-body p span,.description-content p span{
       background-color: #ffe1e1;
    color: #d96a6a !important;
    text-decoration: none !important;
    padding: 7px 20px;
    border-radius: 5px;
    font-size: 14px !important;
}
.description-content ul{
    padding-left: 15px;

}



/* ========================================= */

/*       FINAL REGISTRATION PAGE STYLES      */

/* ========================================= */



/* General Page Layout */

body {

    background-color: #F0F2F5;

    /* Main light grey background */

}



.header {

    background-color: #FFFFFF;

    /* White header */

    border-bottom: 1px solid #E9E9E9;

}



.main-content {

    padding: 40px 0;

}



.register-section {

    background-color: #FFFFFF;

    /* White content box */

    padding: 40px 50px;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);

}



.register-form .section-title {

    font-size: 24px;

    font-weight: normal;

    color: #666;

    margin-bottom: 30px;

    text-align: left;

}



.form-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px 50px;

}



/* CORRECTED Input Field Styles */

.input-group {

    display: flex;

    margin-bottom: 15px;

    align-items: center;

}



.input-group label {

    background-color: #F5F5F5;

    padding: 10px 15px;

    border: 1px solid #ddd;

    border-right: none;

    font-size: 14px;

    color: #555;

    white-space: nowrap;

    min-width: 140px;

    text-align: right;

}



.input-group input,

.input-group select {

    flex-grow: 1;

    border: 1px solid #ddd;

    padding: 10px;

    font-size: 14px;

    width: 100%;

}



.input-group input:focus,

.input-group select:focus {

    outline: 1px solid #357ebd;

    border-color: #357ebd;

}



.password-group {

    position: relative;

}



.toggle-password {

    position: absolute;

    right: 15px;

    top: 50%;

    transform: translateY(-50%);

    cursor: pointer;

    color: #999;

}



/* CORRECTED Upload Area Styles */

.upload-area {

    margin-bottom: 20px;

}



.upload-label {

    display: block;

    margin-bottom: 8px;

    font-size: 14px;

    color: #333;

}



.upload-label:before {

    content: '*';

    color: red;

    margin-right: 2px;

}



.upload-area.profile-upload-area .upload-label:before {

    content: '';

    /* Remove asterisk for profile pic */

}



.profile-upload-area .upload-label {

    font-weight: normal;

    color: #555;

}



.upload-label-address {

    display: block;

    margin-bottom: 8px;

    font-size: 14px;

    color: #333;

}



.upload-area.profile-upload-area .upload-label-address:before {

    content: '';

    /* Remove asterisk for profile pic */

}



.profile-upload-area .upload-label-address {

    font-weight: normal;

    color: #555;

}



.upload-box {

    border: 2px dashed #32c3c5;

    /* Correct teal dashed border */

    border-radius: 5px;

    padding: 20px;

    text-align: center;

}



.btn-upload {

    background-color: #32c3c5;

    /* Correct teal button */

    color: white;

    border: none;

    padding: 8px 20px;

    border-radius: 5px;

    cursor: pointer;

    font-size: 14px;

}



.upload-area small {

    display: block;

    font-size: 12px;

    color: #888;

    margin-top: 8px;

    line-height: 1.4;

}



/* CORRECTED Profile Picture Upload */

.profile-pic-wrapper {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 15px;

    margin-top: 10px;

}



.profile-pic-preview {

    width: 120px;

    height: 120px;

    border-radius: 50%;



    background-color: #E9E9E9;

    border: 1px solid #ddd;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);



    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

}



.profile-pic-preview img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



.btn-upload-round {

    background: transparent;

    border: 2px solid #4CAF50;

    color: #4CAF50;

    font-weight: 500;

    padding: 8px 30px;

    border-radius: 25px;

    cursor: pointer;

    transition: all 0.2s ease-in-out;

}



.btn-upload-round:hover {

    background: #4CAF50;

    color: #FFFFFF;

}



/* Payment and Summary Section */

.payment-section-wrapper {

    margin-left: 0px;
    /* margin-top: -300px; */
        max-width: 534px;

}
.payment-section h2{
    font-weight: 600;
}



.payment-summary-wrapper {

    max-width: 800px;

    margin: 50px auto 0 auto;

    padding-top: 40px;

    border-top: 1px solid #eee;

}



.payment-section {

    margin-top: 0;

    border-top: none;

    padding-top: 0;

}



.section-subtitle {

    font-size: 18px;

    color: #666;

    margin-bottom: 20px;

    text-align: left;

    font-weight: normal;

}



.payment-option {

    border: 1px solid #ddd;

    background-color: #f7f7f7;

    padding: 15px 25px;

    text-align: left;

    max-width: 550px;

    margin: 0 0 20px 0;

    box-sizing: border-box;

}





.payment-option img {

    max-width: 100px;

}



.summary-section {

    padding-top: 0px;

    margin-top: 0px;

    max-width: 550px;

}



.summary-row {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 15px 0;

    font-size: 14px;

    border-bottom: 1px solid #eee;

}



.summary-row.subtotal-row {

    /* Add the separating line above subtotal */

    border-top: 1px solid #ddd;

    margin-top: 15px;

    padding-top: 15px;

}



.summary-row div {

    display: flex;

    flex-direction: column;

}



.summary-row strong {

    font-weight: bold;

}



.summary-row small {

    color: #999;

    font-size: 12px;

}



.fee-row {

    /* Correct color for "Fee" text */

    color: #666;

    border-bottom: none;

}



/* Updated Register Button Style */

.btn-register {

        display: block;
    max-width: inherit;
    width: 100%;
    background: linear-gradient(to right, #357ebd, #8A2BE2);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 20px;
    width: auto;

}



/* CORRECTED Floating Icon Style (if needed) */

.floating-icon {

    position: fixed;

    bottom: 20px;

    right: 20px;

    width: 50px;

    height: 50px;

    background-color: #2772b5;

    color: white;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 5px;

    font-size: 24px;

    text-decoration: none;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);

}





/* Report */

 /* Using a clean, system font stack */

    body {

        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    }

    .main-content {

        padding: 2rem;

        background-color: #f4f6f9; /* Light grey background for contrast */

    }

    .card {

        border-radius: .75rem; /* Matches the rounded corners in the image */

        box-shadow: 0 4px 20px rgba(0,0,0,.05); /* Softer, more modern shadow */

        border: none;

        margin-bottom: 2rem;

        overflow: hidden; /* Ensures content respects the border-radius */

    }

    .card-header-title {

        padding: 1.25rem 1.5rem;

        margin-bottom: 0;

        background-color: #fff;

        border-bottom: 1px solid #e9ecef;

        font-weight: 600;

        font-size: 1.25rem;

        color: #343a40;

    }

    

    /* Styles for the "Current Plan" card remain the same */

    .plan-details-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }

    .plan-detail-item { background-color: #f8f9fa; padding: 1rem; border-radius: .5rem; border: 1px solid #dee2e6; }

    .plan-detail-item label { display: block; font-size: .8rem; color: #6c757d; margin-bottom: .25rem; font-weight: 700; text-transform: uppercase; }

    .plan-detail-item span { font-size: 1.1rem; font-weight: 500; }



    /* --- STYLES TO REPLICATE THE IMAGE --- */

    .payment-history-table {

        width: 100%;

        border-collapse: collapse;

    }

    .payment-history-table thead th {

        color: #6c757d; /* Muted grey color for header text */

        text-transform: uppercase;

        font-size: .75rem; /* Smaller font size */

        letter-spacing: .05rem;

        font-weight: 600;

        /* ** Increased padding for more space ** */

        padding: 1rem 1.5rem; 

        text-align: left;

        border-bottom: 1px solid #e9ecef;

    }

    .payment-history-table tbody td {

        /* ** This is the key for the spacious look ** */

        padding: 1.25rem 1.5rem; 

        vertical-align: middle;

        font-size: 0.9rem;

        color: #495057; /* Standard text color */

        border-bottom: 1px solid #e9ecef;

    }

    .payment-history-table tbody tr:last-child td {

        border-bottom: none; /* No line under the last entry */

    }

    .transaction-id {

        font-weight: 600;

        color: #007bff; /* Blue color for the transaction ID */

    }

    .amount {

        font-weight: 600; /* Bold amount */

    }

    .action-icon {

        color: #6c757d; /* Muted grey for the icon */

        font-size: 1.1rem;

        text-decoration: none;

    }

    .empty-history-cell {

        padding: 4rem 1.5rem !important;

        text-align: center;

        color: #6c757d;

    }

/* Sidebar */



.dashboard-layout {

    display: flex;

}



.sidebar {

    width: 260px;

    background-color: var(--sidebar-bg);

    color: var(--text-light);

    min-height: 100vh;

    display: flex;

    flex-direction: column;

    padding: 1.5rem;

    box-sizing: border-box;

}



.sidebar-header {

    text-align: center;

    margin-bottom: 2.5rem;

}



.sidebar-profile-pic img {

    width: 90px;

    height: 90px;

    border-radius: 50%;

    margin-bottom: 1rem;

    border: 3px solid var(--primary-accent);

}



.sidebar-header h4 {

    margin: 0;

    font-weight: 600;

}



.sidebar-header p {

    margin-top: 0.25rem;

    font-size: 0.85rem;

    color: var(--text-secondary);

}



.sidebar-nav ul {

    list-style-type: none;

    padding: 0;

    margin: 0;

}



.sidebar-nav a {

    display: flex;

    align-items: center;

    gap: 1rem;

    padding: 1rem;

    color: var(--text-light);

    text-decoration: none;

    border-radius: 8px;

    font-weight: 500;

    transition: background-color 0.2s ease, color 0.2s ease;

    margin-bottom: 0.5rem;

}



.sidebar-nav a i {

    width: 20px;

}



.sidebar-nav a:hover,

.sidebar-nav a.active {

    background-color: var(--primary-accent);

    color: #ffffff;

}



/* --- Main Content Styles --- */

.main-content {

    flex-grow: 1;

    padding: 2rem;

}



.container {

    max-width: 1200px;

    margin: 0 auto;

}



.section-title {

    font-size: 2rem;

    font-weight: 700;
    margin: 0px;

    margin-bottom: 2rem;

    color: var(--primary-accent);

    /* CHANGED: This makes the main title vibrant */

}



/* --- Report Card Styles --- */

.report-card {

    background-color: var(--card-bg);

    border-radius: 12px;

    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);

    overflow: hidden;

}



.report-header {

    display: flex;

    align-items: center;

    gap: 1.5rem;

    padding: 2rem;

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

}



.profile-pic-large img {

    width: 100px;

    height: 100px;

    border-radius: 50%;

}



.user-info h2 {

    margin: 0;

    font-size: 1.75rem;

    font-weight: 600;

}



.user-info .username-display {

    margin: 0;

    color: var(--text-secondary);

    font-size: 1rem;

}



.report-body {

    padding: 20px;

}



.subsection-title {

    font-size: 1.25rem;

    font-weight: 600;

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

    padding-bottom: 0.75rem;

    margin-bottom: 1.5rem;

    color: var(--subsection-title-color);
    margin-top: 0px !important;

}



.details-grid {

  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
    gap: 15px;
    margin-bottom: 0px;
    border: 1px solid #ebebeb;
    padding: 20px;

}
.subscription-header h2{
    background-color: #23A18E;
    color: #fff;
    padding: 10px;
    font-size: 16px;
    margin: 0px;
}



.detail-item label {

    display: block;

    font-weight: 500;

    color:#23A18E;

   font-size:14px;
    background-color: #e6fffb;
    padding: 7px;
    margin-bottom: 15px;

}

.login-wrapper{
    margin-top: 60px;
}
.login-wrapper .login-card-title{
    background-color: #0069d9;
    color: #fff;
    font-size: 18px;
    padding: 15px 20px;
    font-weight: 500;
}
.login-wrapper .card-body{
    padding: 0px;
}
 .login-wrapper form{
    padding: 20px;
    padding-top: 0px;
 }
 .login-card-subtitle{
    padding-left: 20px;
    color: #0069d9;
 }
 .login-card{
    max-width: 450px;
    margin: 0 auto;
 }


.detail-item span {

    font-weight: 600;

    font-size: 1rem;

}



.documents-section {

    display: flex;

    gap: 1rem;

    flex-wrap: wrap;

}



.document-link {

    background-color: var(--primary-accent);

    color: #fff;

    padding: 0.75rem 1.5rem;

    border-radius: 8px;

    text-decoration: none;

    font-weight: 500;

    transition: background-color 0.2s ease;

}



.document-link:hover {

    background-color: #1b7f72;

}



/* --- Edit Profile Page Styles --- */

.profile-grid {

    display: grid;

    grid-template-columns: 300px 1fr;

    gap: 2rem;

}



.profile-sidebar .report-card,

.profile-content .report-card {

    padding: 2rem;

}



.profile-picture-section {

    text-align: center;

    margin-bottom: 1.5rem;

}



.profile-picture-section img {

    width: 150px;

    height: 150px;

    border-radius: 50%;

    margin-bottom: 1rem;

    object-fit: cover;

}



.file-input-wrapper {

    position: relative;

    overflow: hidden;

    display: inline-block;

}



.file-input-wrapper .btn {

    background-color: var(--primary-accent);

    color: #fff;

    padding: 0.75rem 1.5rem;

    border-radius: 8px;

    font-weight: 500;

    cursor: pointer;

    display: inline-block;

}



.file-input-wrapper input[type=file] {

    font-size: 100px;

    position: absolute;

    left: 0;

    top: 0;

    opacity: 0;

    cursor: pointer;

}



.profile-usermeta h4 {

    margin: 0 0 0.25rem 0;

    font-size: 1.25rem;

}



.profile-usermeta p {

    margin: 0;

    color: var(--text-secondary);

}



.form-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 1.5rem;

}



.form-group {

    margin-bottom: 1.5rem;

}



.form-group.full-width {

    grid-column: 1 / -1;

}



.form-group label {

    display: block;

    font-weight: 600;

    color: var(--text-secondary);

    margin-bottom: 0.5rem;

}



.form-group input,

.form-group select {

    width: 100%;

    padding: 0.75rem 1rem;

    border-radius: 8px;

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

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

    font-size: 1rem;

    box-sizing: border-box;

}



.form-group input:focus {

    outline: none;

    border-color: var(--primary-accent);

    box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary-accent) 20%, transparent);

}



.form-group input[readonly] {

    background-color: #f1f5f9;

    cursor: not-allowed;

}



.form-actions {

    display: flex;

    justify-content: flex-end;

    padding-top: 1.5rem;

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

    margin-top: 2rem;

}



.btn-submit {

    background-color: var(--primary-accent);

    color: #fff;

    padding: 0.75rem 2rem;

    border: none;

    border-radius: 8px;

    font-weight: 600;

    cursor: pointer;

    font-size: 1rem;

    transition: background-color 0.2s ease;

}



.btn-submit:hover {

    background-color: color-mix(in srgb, var(--primary-accent) 85%, black);

}



/* Responsive adjustments */

@media (max-width: 992px) {

    .profile-grid {

        grid-template-columns: 1fr;

    }

}



@media (max-width: 768px) {

    .form-grid {

        grid-template-columns: 1fr;

    }

}



.document-thumbnail {

    width: 150px;

    height: 150px;

    border-radius: 8px;

    object-fit: cover;

    transition: transform 0.2s ease, box-shadow 0.2s ease;

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

}



.document-thumbnail:hover {

    transform: scale(1.05);

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

}





.document-upload-group {

    display: grid;

    grid-template-columns: 1fr auto;

    align-items: center;

    gap: 1rem;

    width: 100%;

    padding: 0.5rem;

    border-radius: 8px;

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

    box-sizing: border-box;

}



.form-text-muted {

    font-size: 0.9rem;

    color: var(--text-secondary);

    margin-top: -1.25rem;

    margin-bottom: 1.5rem;

}



input[type="file"].file-input-custom {

    color: var(--text-secondary);

}



input[type="file"].file-input-custom::file-selector-button {

    margin-right: 1rem;

    border: none;

    background: var(--primary-accent);

    padding: 0.6rem 1rem;

    border-radius: 6px;

    color: #fff;

    cursor: pointer;

    transition: background-color .2s ease-in-out;

}



input[type="file"].file-input-custom::file-selector-button:hover {

    background-color: color-mix(in srgb, var(--primary-accent) 85%, black);

}



.current-file-link {

    white-space: nowrap;

    color: var(--primary-accent);

    text-decoration: none;

    font-weight: 500;

    padding: 0.5rem 1rem;

    border-radius: 6px;

    background-color: #f1f5f9;

}



.current-file-link:hover {

    text-decoration: underline;

}



.no-file-text {

    white-space: nowrap;

    color: var(--text-secondary);

    font-style: italic;

    padding: 0.5rem 1rem;

}



/* Subscription */

.page-header {

    display: flex;                

    justify-content: space-between;

    align-items: center;           

    margin-bottom: 2rem;           

}



.page-header .section-title {

    margin: 0;

}



.btn-renew {

    background-color: #E9848E; 

    color: #ffffff;

    padding: 10px 24px;

    border-radius: 6px;

    text-decoration: none;

    font-weight: 500; 

    border: none;

    cursor: pointer;

    transition: background-color 0.3s ease;

}



.btn-renew:hover {

    background-color: #d86c78;

}



.report-card {

    background-color: #ffffff;

    border: 1px solid #f0f0f0; 

    border-radius: 8px;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);

    margin-bottom: 2rem; 

}



.subscription-list .report-card:last-child {

    margin-bottom: 0;

}





/* id-card */



.id-card-container {

    max-width: 500px;

    /* DECREASED from 600px */

    margin-bottom: 2rem;

}



.id-card {

    background: linear-gradient(135deg, #2eb3f5, #1d92d1);

    color: white;

    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

    padding: 1.5rem;

    /* DECREASED from 2rem */

    border-radius: 12px;

    /* DECREASED */

    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2), 0 8px 10px -6px rgba(0, 0, 0, 0.2);

    display: flex;

    gap: 1.25rem;

    /* DECREASED */

    position: relative;

    overflow: hidden;

}



.id-card::before {

    content: '';

    position: absolute;

    width: 400px;

    /* DECREASED */

    height: 400px;

    /* DECREASED */

    background-color: rgba(255, 255, 255, 0.15);

    border-radius: 50%;

    bottom: -240px;

    /* ADJUSTED */

    left: -160px;

    /* ADJUSTED */

    z-index: 0;

}



.id-card-main,

.id-card-right {

    position: relative;

    z-index: 1;

}



.id-card-main {

    flex-grow: 1;

    display: flex;

    flex-direction: column;

}



.id-card-header {

    display: flex;

    align-items: center;

    gap: 0.75rem;

    /* DECREASED */

    margin-bottom: 1.25rem;

    /* DECREASED */

}



.id-card-logo img {

    height: 60px;

    /* DECREASED */

}



.id-card-title h1 {

    font-size: 1rem;

    /* DECREASED */

    font-weight: 600;

    margin: 0;

    line-height: 1.3;

}



.id-card-title p {

    font-size: 0.8rem;

    /* DECREASED */

    margin: 0;

}



.id-card-body h2 {

    font-size: 1.8rem;

    /* DECREASED */

    font-weight: 700;

    margin: 0 0 0.75rem 0;

    /* DECREASED */

}



.id-card-body p {

    font-size: 0.9rem;

    /* DECREASED */

    margin: 0.4rem 0;

    /* DECREASED */

    font-weight: 500;

}



.id-card-footer {

    margin-top: auto;

    padding-top: 0.75rem;

    /* DECREASED */

    font-size: 0.75rem;

    /* DECREASED */

    font-weight: 500;

}



.id-card-right {

    display: flex;

    flex-direction: column;

    align-items: center;

    flex-shrink: 0;

}



.id-card-photo {

    width: 100px;

    /* DECREASED */

    height: 125px;

    /* DECREASED */

    border: 3px solid white;

    /* DECREASED */

    border-radius: 10px;

    /* DECREASED */

    background-color: #fff;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);

    margin-bottom: 1rem;

}



.id-card-photo img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    border-radius: 7px;

    /* DECREASED */

}



.id-card-signature {

    margin-top: auto;

    text-align: center;

}



.id-card-signature img {

    height: 30px;

    /* DECREASED */

}



.id-card-signature p {

    font-size: 0.7rem;

    /* DECREASED */

    margin: 0;

    border-top: 1px solid rgba(255, 255, 255, 0.5);

    padding-top: 0.25rem;

}



/* validation */



/* Error message styling */

label.error {

    display: block;

    color: #e74c3c;

    /* soft red */

    font-size: 12px;



}



/* Add red border for invalid inputs */

input.is-invalid,

select.is-invalid,

textarea.is-invalid {

    border-color: #e74c3c;

    box-shadow: none;

    outline: none;

}





/* Make the error message appear clearly inside the input group */

.input-group label.error,

.upload-area label.error {

    display: block;

    color: #e74c3c;

    font-size: 12px;

    margin-top: 4px;

    /* spacing between input and error */

}



/*

 * 1. Main Container

 * ============================================

 * This centers the entire content card on the page.

 */

.payment-success-container {

    display: flex;

    justify-content: center;

    align-items: center;

    min-height: 80vh; /* Ensures it takes up most of the screen */

    background-color: #f8f9fa; /* A soft background color */

    padding: 2rem;

    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

}





/*

 * 2. The Content Card

 * ============================================

 * This is the white box holding all the success info.

 */

.payment-success-card {

    background-color: #ffffff;

    border-radius: 12px;

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

    max-width: 500px;

    width: 100%;

    text-align: center;

    padding: 2.5rem;

    border-top: 5px solid #28a745; /* Green top border for success */

}





/*

 * 3. Icon and Text Styling

 * ============================================

 */

.success-icon {

    width: 76px;

    height: 76px;

    margin: 0 auto 1.5rem auto;

}



.success-title {

    font-size: 2rem;

    color: #333;

    margin: 0;

}



.success-message {

    font-size: 1rem;

    color: #6c757d;

    line-height: 1.6;

    margin: 1rem 0 2rem 0;

}





/*

 * 4. Payment Details Section

 * ============================================

 */

.payment-details {

    background-color: #f8f9fa;

    border: 1px solid #e9ecef;

    border-radius: 8px;

    padding: 1.5rem;

    text-align: left;

    margin-bottom: 2rem;

}



.payment-details .detail-item {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 1rem;

}



.payment-details .detail-item:last-child {

    margin-bottom: 0;

}



.detail-label {

    font-weight: 500;

    color: #495057;

}



.detail-value {

    font-weight: 400;

    color: #6c757d;

    font-family: 'Courier New', Courier, monospace; /* Monospaced font for IDs */

    font-size: 0.9rem;

}





/*

 * 5. Back to Home Button

 * ============================================

 */

.btn-back-home {

    display: inline-flex;

    align-items: center;

    background-color: #007bff;

    color: #ffffff;

    padding: 12px 24px;

    border-radius: 6px;

    text-decoration: none;

    font-weight: 500;

    font-size: 1rem;

    transition: background-color 0.3s ease, transform 0.2s ease;

}



.btn-back-home:hover {

    background-color: #0056b3;

    transform: translateY(-2px); /* A slight lift on hover */

}



.btn-back-home svg {

    margin-right: 8px;

}



/*PDF icon*/

.pdf-icon-link {

    display: flex;             /* Aligns icon and text horizontally */

    align-items: center;       /* Vertically centers the icon and text */

    background-color: #f8f9fa;

    border: 1px solid #dee2e6;

    border-radius: 8px;

    padding: 10px 15px;

    text-decoration: none;

    color: #495057;

    max-width: 350px;          /* Adjust as needed */

    margin-bottom: 1rem;       /* Space below the link */

    transition: background-color 0.3s ease;

}



.pdf-icon-link:hover {

    background-color: #e9ecef;

}



/*

 * 2. THIS IS THE FIX: Give the SVG a size

 * ============================================

 * Without this, the SVG has no dimensions and will be invisible.

 */

.pdf-icon-link svg {

    width: 32px;               /* Defines the width */

    height: 32px;              /* Defines the height */

    margin-right: 12px;        /* Adds space between the icon and text */

    flex-shrink: 0;            /* Prevents the icon from being squished */

}



/*

 * 3. Ensure your existing image thumbnail style is present

 * ============================================

 */

.document-thumbnail {

    display: block;

    max-width: 200px;

    height: auto;

    border-radius: 8px;

    border: 1px solid #dee2e6;

    margin-bottom: 1rem;

    padding: 5px;

}



.error-message {

    width: 100%;

    margin-top: 0.5rem; /* Space between the input field and the error */

    font-size: 0.875em; /* Make the font slightly smaller */

    color: #e3342f; /* A clear, friendly red for errors */

    display: flex;

    align-items: center;

}



.error-message i {

    margin-right: 6px; /* Space between the icon and the text */

    font-size: 1em;

}

.is-invalid {

    border-color: #e3342f !important; /* Highlight the invalid input box */

}

.footer-contact span {
    height: 34px;
    width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
    color: #fff;
    font-size: 16px;
    background-color: #b58c5c;
    border-radius: 50%;
}
.footer-contact p{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.house-link a{
    color: #fff;
    background-color:#e3342f ;
    height: 34px;
    width:34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    border-radius: 50%;
    padding: 0px;
}
.house-link a:hover{
    background-color:#b58c5c ;
}

.btn-add, .btn-remove {
    background-color: #d9534f; /* Red color for remove */
    color: white;
    border: none;
    padding: 5px 12px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    line-height: 1.5;
    margin-left: 10px; /* Space it from the label */
}

.btn-add {
    background-color: #5cb85c; /* Green for add */
}

/* Position the remove button correctly */
.family-set {
    position: relative;
}

.btn-remove {
    position: absolute;
    top: 5px;
    right: 5px;
}
.file-input-wrapper .btn{
    border: 0px;
}

@media screen  and (max-width:767px){
    .main-content{
        padding: 0px;
        padding-top: 20px;
    }
    .membership-section{
        padding: 20px;
    }
    .section-title {
    font-size: 24px;
    margin-bottom: 10px;
    }
    .plan{
        flex-wrap: wrap;
    }
    .membership-plans {
    display: block;
    }
    .plan-main .price {
    font-size: 41px;
    }
    .footer-grid{
        display: block;
        padding-bottom: 30px;
    }
    .footer-bottom {
    padding: 10px 0;
    font-size: 11px;
    }
    .footer p {
    font-size: 14px;
}
.footer h4 {
    font-size: 17px;
    margin-bottom: 10px;

}
.footer-logo {
   
    margin-bottom: 6px;
}
.footer {
   
    padding-top: 30px;
}
.register-section{
    padding: 20px;
}
.payment-section-wrapper{
    margin-top: 20px;
}
header .logo-img {
    height: 56px;
    margin-right: 4px;
}
.nav-links li {
    margin-right: 0px;
    font-size: 13px;
}
.house-link a {

    height: 27px;
    width: 27px;
    font-size: 13px;
    margin-right: 3px;
}
.nav-links {
   
    flex-wrap: wrap;
    justify-content: end;
}
.logo-main {
    font-size: 14px;
}
.logo-sub {
    font-size: 10px;
    color: #666;
}
.header{
    padding: 10px 0px;
}
.footer-bottom p{
    font-size: 11px;
}
    
}