@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --ra-primary: #fbbf24;
    --ra-primary-dark: #f3b619;
    --ra-primary-light: #fde68a;
    --primary: #4a90e2;
    --primary-dark: #357abd;
    --primary-light: #a6c9f0;
    --primary-txt-color: #ffffff;
    --primary-rgb: 251, 191, 36;

    --secondary: #f8fafc;
    --secondary-dark: #475569;
    --secondary-light: #e2e8f0;
    --secondary-txt-color: #64748b;



    --success: #10b981;
    --success-dark: #059669;
    --success-light: #d1fae5;

    --warning: #f59e0b;
    --warning-dark: #d97706;
    --warning-light: #fef3c7;

    --danger: #ef4444;
    --danger-dark: #b91c1c;
    --danger-light: #fee2e2;

    --info: #3b82f6;
    --info-light: #dbeafe;

    --gray-light: #f3f4f6;
    --gray-border: #e5e7eb;

    --border: #dee2e6;
    --light: #f8f9fa;
    --dark: #343a40;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --bg-gray-50: #f9fafb;
    --bg-gray-100: #f3f4f6;
    --primary-color: #3b82f6;
    --secondary-color: #64748b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #06b6d4;
    --bg-primary: #f8fafc;
    --bg-white: #ffffff;
    --text-primary: #111827;
    --text-secondary: #374151;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --border-light: #e5e7eb;
    --border-medium: #d1d5db;
    --border-dark: #9ca3af;
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --border-radius-sm: 5px;
    --border-radius-md: 10px;
    --border-radius: 12px;
    --border-radius-lg: 14px;
    --border-radius-xl: 16px;
    --sidebar-width: 280px;
    --sidebar-width-small: 200px;
    --sidebar-collapsed: 80px;
    --transition: all 0.2s ease;
    --font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --text-color: #1e293b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
    color: var(--text-color);
    line-height: 1.6;
}

body {
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

/* Chrome, Edge, Safari */
body::-webkit-scrollbar {
    width: 2px;
    height: 2px;
}

body::-webkit-scrollbar-track {
    background: transparent;
}

body::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 3px;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: #cbd5e1;
}

.error-msg {
    color: red;
    padding: 4px 0;
    font-size: 13px;
}

/* Loading overlay */
.overlay-div {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.ra-loader {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.modal.modern-modal {
    backdrop-filter: blur(8px);
}

.modal-dialog.modern-dialog {
    width: 90%;
    display: flex;
    align-items: center;
    min-height: calc(100% - 3.5rem);
}

.modal-content.modern-content {
    border: none;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    background: #ffffff;
}

.modal-dialog.modern-dialog,
.modal-content.modern-content {
    overflow: visible;
}

.modal-header.modern-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 0 24px;
    margin-bottom: 8px;
    border: none;
}
.modal-title.modern-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

/* flash error style start here */
/* Modern Simple Flash Message Styles */
.flash-error.popup-bottom,
.flash-success.popup-bottom {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    min-width: 320px;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(100px) scale(0.9);
    z-index: 9999;
    opacity: 0;
    overflow: hidden;
}

/* Remove accent bars - replaced with icon backgrounds */

.flash-error.popup-bottom:not(.hidden),
.flash-success.popup-bottom:not(.hidden) {
    transform: translateY(0) scale(1);
    opacity: 1;
    animation: slideInBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.flash-error.popup-bottom.hidden,
.flash-success.popup-bottom.hidden {
    transform: translateY(100px) scale(0.9);
    opacity: 0;
    pointer-events: none;
}

.flash-error.popup-bottom:hover,
.flash-success.popup-bottom:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Modern Icon Container with Backgrounds */
.popup-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.flash-success .popup-img {
    background: #10b981;
}

.flash-error .popup-img {
    background: #ef4444;
}

/* Hide image and use CSS icons */
.popup-img img {
    display: none;
}

/* Success Check Icon */
.flash-success .popup-img::after {
    content: '✓';
    color: white;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Error Alert Icon */
.flash-error .popup-img::after {
    content: '!';
    color: white;
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Modern Text Content */
.popup-text {
    flex: 1;
    text-align: left;
    line-height: 1.4;
}

.popup-text>div:first-child {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 2px;
    letter-spacing: -0.025em;
}

.pop-subheading {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.3;
    font-weight: 400;
}

/* Modern Close Button */
.flash-popup-close.popup-close {
    width: 28px;
    height: 28px;
    background: rgba(107, 114, 128, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border: none;
    position: relative;
    overflow: hidden;
}

.flash-success .flash-popup-close.popup-close:hover {
    background: rgba(16, 185, 129, 0.15);
    transform: scale(1.1);
}

.flash-error .flash-popup-close.popup-close:hover {
    background: rgba(239, 68, 68, 0.15);
    transform: scale(1.1);
}

.flash-popup-close.popup-close img {
    width: 12px;
    height: 12px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0.6);
}

.flash-popup-close.popup-close:hover img {
    filter: brightness(0.4);
}

/* Animations */
@keyframes slideInBounce {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    60% {
        transform: translateY(-8px);
        opacity: 1;
    }

    80% {
        transform: translateY(4px);
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(100px);
        opacity: 0;
    }
}

.popup-bottom.hiding {
    animation: slideOut 0.4s ease-in-out forwards;
}

/* Progress bar effect */
.popup-bottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #34d399);
    width: 100%;
    transform-origin: left;
    animation: progressBar 5s linear forwards;
}

@keyframes progressBar {
    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }
}

/* Hover effects for better interactivity */
.flash-error.popup-bottom:active,
.flash-success.popup-bottom:active {
    transform: translateY(-2px) scale(0.98);
}

/* Subtle shadow animation */
.flash-error.popup-bottom:hover,
.flash-success.popup-bottom:hover {
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(16, 185, 129, 0.1);
}

/* Enhanced visual feedback */
.flash-popup-close.popup-close:active {
    transform: scale(0.95);
}

/* Responsive Design for Flash Messages */
@media (max-width: 768px) {

    .flash-error.popup-bottom,
    .flash-success.popup-bottom {
        bottom: 16px;
        right: 16px;
        left: 16px;
        min-width: auto;
        max-width: none;
        padding: 14px 16px;
        gap: 10px;
    }

    .popup-img {
        width: 36px;
        height: 36px;
    }

    .flash-success .popup-img::after {
        font-size: 18px;
    }

    .flash-error .popup-img::after {
        font-size: 20px;
    }

    .popup-text>div:first-child {
        font-size: 13px;
    }

    .pop-subheading {
        font-size: 12px;
    }

    .flash-popup-close.popup-close {
        width: 24px;
        height: 24px;
    }

    .flash-popup-close.popup-close img {
        width: 10px;
        height: 10px;
    }
}
/* flash error style end here */

/* form control style start here */
.form-select,
.form-control {
    padding: 0.55rem 0.85rem;
}

.form-control {
    color: #555;
    font-size: 13px;
    height: 43.59px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    transition: var(--transition, border-color ease-in-out .15s, box-shadow ease-in-out .15s);
}
.form-control:focus {
    outline: none;
    border-color: var(--ra-primary) !important;
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.25) !important;
}
.form-control.input-error:focus {
    border-color: var(--danger-color) !important;
    box-shadow: 0 0 0 3px rgba(var(--danger-rgb), 0.25) !important;
}

.form-control::placeholder {
    color: var(--gray-400);
}

.form-control.textarea {
    min-height: 100px;
    resize: vertical;
}

.form-control.search-folder-input {
    padding: 0.175rem 0.55rem;
}

/* Form validation states */
.form-control.error {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-control.success {
    border-color: var(--ra-primary);
    box-shadow: 0 0 0 3px rgb(251, 191, 36, 0.1);
}
/* form control style end here */

/* SELECT2 STYLING -------------------- */
/* Select2 outer container */
.select2-container--default .select2-selection--single {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    font-family: inherit;
    height: 43.59px;
    padding: 0.55rem 3.3rem 0.55rem 1rem;
}

/* Hover state */
.select2-container--default .select2-selection--single:focus-visible,
.select2-container--default .select2-selection--single:hover {
    border-color: var(--ra-primary);
}

/* Active state */
.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: var(--ra-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    /* similar to .active */
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* Arrow styling */
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--gray-500) transparent transparent transparent;
}

/* Text inside selected value */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--gray-700);
    font-weight: 500;
    line-height: 1.5;
}

/* Dropdown menu */
.select2-container--default .select2-dropdown {
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-top: 4px;
    overflow: hidden;
}

/* Dropdown open above */
.select2-container--default .select2-dropdown.select2-dropdown--above {
    margin-top: -8px;
    /* thoda gap upar */
}


/* Dropdown options */
.select2-container--default .select2-results__option {
    padding: 12px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-700);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--gray-50);
    color: var(--ra-primary);
}

.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: var(--ra-primary);
    color: var(--white);
}


/* 1. Make sure text is left-aligned */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    text-align: left;
    padding-left: 0;
    /* override default */
}

/* 2. Move the clear (×) icon to the right */
.select2-selection__clear {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: #999;
    font-size: 16px;
    cursor: pointer;
    margin-right: 15px;
}

/* 3. Properly position the dropdown arrow */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    height: auto;
    width: auto;
}

/* 4. Prevent awkward spacing in the selection */
.select2-container--default .select2-selection--single {
    position: relative;
    padding-right: 40px;
    /* space for the arrow */
}

/* 5. Hide the search box in dropdown */
.select2-container--default .select2-search--dropdown {
    /* display: none !important; */
}

/* 6. Style the search input inside the dropdown */
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid var(--gray-300, #d1d5db);
    border-radius: 6px;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    background: var(--gray-50, #f9fafb);
    transition: border 0.3s ease, box-shadow 0.3s ease;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

/* 7. Focus state for input */
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: var(--ra-primary, #ef9744);
    box-shadow: 0 0 0 2px rgba(239, 151, 68, 0.2);
}

.select2-container {
    z-index: 9999;
}

.select2.select2-container--default {
    width: 100% !important;
}

.navigation-controls .select2-container--default {
    width: 250px !important;
}
/* SELECT2 STYLING END HERE-------------------- */

/* LOGIN / REGISTER CSS ----------------------------------- */
.modern-login-container {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.modern-login-card {
    background: white;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    padding: 1rem 2rem;
    width: 100%;
    max-width: 480px;
    border: 1px solid #f1f5f9;
}

.modern-register-card {
    background: white;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    padding: 1rem 2rem;
    width: 100%;
    max-width: 480px;
    border: 1px solid #f1f5f9;
    margin-bottom: 10px;
}

.modern-login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modern-login-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-color);
    margin: 1rem 0px;
}

.modern-login-subtitle {
    color: var(--gray-700);
    font-size: 14px;
    margin-bottom: 0px;
}

.modern-form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-direction: column;
}

.modern-form-group {
    position: relative;
    flex: 1;
}

.modern-form-label {
    display: block;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.form-control {
    font-size: 14px;
}
.form-control:focus {
    outline: none;
    border-color: var(--ra-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.1);
}

.form-control::placeholder {
    color: #9ca3af;
}

.help-block {
    color: #ef4444;
    font-size: 12px;
    margin-top: 0.5rem;
}

.has-error .form-control{
    border-color: #ef4444;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-error .form-control:focus {
    outline: none;
    border-color: #ef4444 !important;
    background: white;
}

.has-error .help-block {
    color: red;
}
.help-block {
    display: none;
}


.modern-form-options {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.modern-checkbox-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modern-checkbox-group input[type=checkbox] {
    margin: 0;
}

.modern-checkbox-group label {
    margin: 0px;
}

.modern-checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius-sm);
    background: white;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.modern-checkbox:checked {
    background: var(--ra-primary);
    border-color: var(--ra-primary);
}

.modern-checkbox-label {
    font-size: 14px;
    color: #4a5568;
    cursor: pointer;
}

.modern-forgot-link {
    color: var(--ra-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.modern-forgot-link:hover {
    color: var(--ra-primary);
}

.section-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0 1.5rem 0;
}

.section-icon {
    width: 35px;
    height: 35px;
    background: var(--ra-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 16px;
    font-weight: bold;
}

.section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.password-form-group {
    position: relative;
}

.password-show {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 24px;
    height: 24px;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px auto;
    text-decoration: none !important;
    color: var(--text-muted) !important;
}

.password-hide {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 24px;
    height: 24px;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px auto;
    text-decoration: none !important;
    color: var(--text-muted) !important;
}

.password-form-group input[type="password"] {
    padding-right: 30px !important;
}

#register_form .password-show,
#register_form .password-hide {
    top: 40px;
    right: 10px;
}

#reset_password_form .password-show,
#reset_password_form .password-hide {
    top: 34px;
    right: 10px;
}

#login_form .modern-form-group .password-show,
#login_form .modern-form-group .password-hide {
    top: 41px;
    right: 10px;
}

.modern-submit-btn {
    width: 100%;
    background: var(--ra-primary);
    color: var(--text-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.g-recaptcha-custom {
    transform: scale(0.8);
    /* 0.8 = 80% of original size */
    -webkit-transform: scale(0.8);
    transform-origin: 0 0;
    /* keeps it aligned to top-left */
    -webkit-transform-origin: 0 0;
}

.modern-divider {
    text-align: center;
    position: relative;
    margin: 0;
    color: #9ca3af;
    font-size: 14px;
}

.modern-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.modern-divider span {
    background: white;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.modern-register-btn {
    width: 100%;
    background: transparent;
    color: #4a5568;
    border: 2px solid #e2e8f0;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

.modern-register-btn:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
    text-decoration: none;
    color: var(--text-color);
}

.modern-success-message {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    display: none;
}

/* LOGIN / REGISTER CSS END HERE ----------------------------------- */

/* HEADER CSS ----------------------- */
.ra-navbar {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 99999;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    min-height: 70px;
}

.ra-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 70px;
}

a:hover,
a:focus {
    text-decoration: none;
}

.ra-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-color);
}

.ra-brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ra-brand-icon img {
    width: 30px;
    height: auto;
}

.ra-brand-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
}

.ra-brand-subtitle {
    font-size: 12px;
    color: var(--gray-700);
    font-weight: 400;
    margin-top: -2px;
}

.ra-nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ra-nav-item {
    position: relative;
}

.ra-nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ra-nav-link:hover,
.ra-nav-link:focus {
    color: var(--text-color);
    text-decoration: none;
}

.ra-nav-link.active {
    color: var(--ra-primary);
    font-weight: 600;
}

.ra-nav-dropdown {
    position: relative;
}

.ra-nav-dropdown:hover .ra-dropdown-menu {
    display: block;
}

.ra-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    padding: 8px 0 0.5rem 0;
    z-index: 1001;
    margin-top: 0;
}

.ra-dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: #4a5568;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.ra-dropdown-item:hover {
    background-color: #f7fafc;
    color: var(--text-color);
    text-decoration: none;
}

.ra-nav-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ra-social-link {
    width: 32px;
    height: 32px;
    background: #f7fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.2s ease;
}

.ra-social-link:hover {
    background: var(--ra-primary);
    color: white;
}

.ra-auth-button-style {
    background: var(--ra-primary);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    background: transparent;
    color: #4a5568;
    border: 2px solid #e2e8f0;
    text-align: center;
    display: block;
    text-decoration: none;
}

.ra-auth-button-style:hover {
    background: var(--ra-primary);
    border: 2px solid var(--ra-primary);
    color: var(--text-color);
    text-decoration: none;
}

.ra-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 18px;
    color: #4a5568;
    cursor: pointer;
}

.ra-login-dropdown {
    position: relative;
}

.ra-login-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 1.5rem;
    z-index: 1001;
    margin-top: 8px;
}

.ra-login-dropdown.open .ra-login-dropdown-menu {
    display: block;
}

.ra-dropdown-form-group {
    margin-bottom: 1rem;
}

.ra-dropdown-form-btn {
    width: 100%;
    background: var(--ra-primary);
    color: var(--text-color);
    border: none;
    padding: 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ra-dropdown-form-btn:hover {
    background: var(--ra-primary-dark);
}

.ra-dropdown-form-btn.register {
    background: transparent;
    color: #4a5568;
    border: 2px solid #e2e8f0;
    text-align: center;
    display: block;
    text-decoration: none;
}

.ra-dropdown-form-link {
    color: var(--gray-900);
    text-decoration: none;
    font-size: 14px;
}
.ra-dropdown-form-link:hover {
    color: var(--ra-primary);
}
/* mobile nav style start*/
@media (max-width: 768px) {
    .ra-nav-container {
        padding: 0 1.5rem;
    }

    /* Hide desktop menu & actions */
    .ra-nav-menu,
    .ra-nav-actions>a:not(.ra-mobile-toggle),
    .ra-nav-actions>.ra-login-dropdown {
        display: none;
    }

    /* Show mobile toggle button */
    .ra-mobile-toggle {
        display: block;
        font-size: 22px;
        color: var(--gray-700);
        background: none;
        border: none;
    }

    .ra-nav-actions{
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }

    /* When mobile menu is active */
    .ra-nav-container.active .ra-nav-menu,
    .ra-nav-container.active .ra-nav-actions>a:not(.ra-mobile-toggle),
    .ra-nav-container.active .ra-nav-actions>.ra-login-dropdown {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        background: white;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        padding: 1rem 1.5rem;
        border-top: 1px solid #e2e8f0;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    .ra-nav-container.active .ra-nav-actions>.ra-login-dropdown{
        top: 70px;
    }

    .ra-nav-menu {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .ra-nav-item {
        width: 100%;
    }

    .ra-nav-link {
        width: 100%;
        display: block;
        padding: 0.75rem 0;
    }

    /* Dropdown behavior for mobile */
    .ra-nav-dropdown:hover .ra-dropdown-menu {
        display: none;
        /* disable hover dropdowns */
    }

    .ra-nav-dropdown.active .ra-dropdown-menu {
        display: block;
        position: static;
        box-shadow: none;
        border: none;
        padding: 0.5rem 0;
    }

    .ra-dropdown-item {
        padding: 0.5rem 0.75rem;
        font-size: 14px;
    }

    /* Auth button styling for mobile */
    .ra-auth-button-style {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .ra-brand-text {
        font-size: 16px;
    }

    .ra-brand-subtitle {
        font-size: 11px;
    }

    .ra-brand-icon img {
        width: 28px;
    }

    .ra-nav-container.active .ra-nav-menu {
        padding: 1rem 2rem;
    }
    .modern-form-options {
        flex-direction: column;
        align-items: unset;
        gap: 10px;
        margin-bottom: 0rem;
    }

}

/* mobile nav style end*/
/* HEADER CSS END HERE ----------------------- */
/* PRICING PAGE CSS --------------------------- */
/* New Pricing Page Styles */
.pricing-page-wrapper {
    max-width: 1120px;
    margin: 0 auto;
    padding: 32px 20px 56px;
    background: radial-gradient(circle at top, #e0edff 0, #f5f7fb 40%, #f5f7fb 100%);
    min-height: 100vh;
}

.pricing-hero {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

.pricing-hero h1 {
    font-size: 32px;
    margin: 0 0 10px;
    color: #0f172a;
    font-weight: 700;
}

.pricing-subtitle {
    margin: 0;
    color: #6b7280;
    font-size: 15px;
}

.billing-toggle {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #e5edff;
    color: #1e40af;
    font-size: 12px;
}

.billing-pill {
    background: #fff;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(37, 99, 235, 0.35);
    font-weight: 600;
}

.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 40px;
}

.pricing-tier {
    background: #ffffff;
    border-radius: 14px;
    padding: 22px 20px 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-tier:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
}

.pricing-tier.active {
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.pricing-tier.highlight {
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.tier-badge {
    position: absolute;
    top: 14px;
    right: 16px;
    background: #f97316;
    color: #fff;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
}

.pricing-tier h2 {
    margin: 0 0 4px;
    font-size: 20px;
    color: #0f172a;
    font-weight: 700;
}

.tier-desc {
    margin: 0 0 14px;
    color: #6b7280;
    font-size: 13px;
}

.tier-price {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #0f172a;
}

.tier-price span {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
}

.tier-meta {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 10px;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    font-size: 14px;
    color: #0f172a;
}

.tier-features li {
    margin-bottom: 6px;
}

.annual-note {
    font-size: 12px;
    color: #15803d;
    background: #dcfce7;
    padding: 4px 8px;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 10px;
}

.tier-button {
    margin-top: auto;
    padding: 10px 14px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.tier-button.primary {
    background: #2563eb;
    color: #fff;
}

.tier-button.primary:hover {
    background: #1d4ed8;
}

.tier-button.outline {
    background: #f9fafb;
    color: #0f172a;
    border: 1px solid #d1d5db;
}

.tier-button.outline:hover {
    background: #f3f4f6;
}

.custom-plan-block {
    margin-top: 30px;
    padding: 18px 20px;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px dashed rgba(37, 99, 235, 0.5);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

.custom-plan-block p {
    margin: 0;
    font-size: 14px;
    color: #0f172a;
}

.custom-plan-button {
    padding: 9px 14px;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    border: none;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.custom-plan-button:hover {
    background: #1f2937;
    color: #fff;
    text-decoration: none;
}

.why-pricing {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
    gap: 32px;
    margin-top: 46px;
    align-items: flex-start;
}

.why-content h2 {
    margin: 0 0 8px;
    font-size: 22px;
    color: #0f172a;
    font-weight: 700;
}

.why-lead {
    margin: 0 0 16px;
    color: #6b7280;
    font-size: 14px;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #0f172a;
}

.why-list li {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.why-list li .bullet {
    color: #16a34a;
    font-weight: 700;
}

.why-aside {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 18px 16px;
    border: 1px solid #e2e8f0;
    font-size: 13px;
    color: #6b7280;
}

.why-aside h3 {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
}

.pricing-cta-final {
    margin-top: 42px;
    text-align: center;
}

.cta-button {
    padding: 12px 22px;
    border-radius: 999px;
    border: none;
    background: #2563eb;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #1d4ed8;
    color: #fff;
    text-decoration: none;
}

.pricing-cta-final p {
    font-size: 13px;
    color: #6b7280;
    margin-top: 8px;
}

/* Responsive styles for pricing page */
@media (max-width: 960px) {
    .pricing-tiers {
        grid-template-columns: 1fr;
    }
    .pricing-hero h1 {
        font-size: 26px;
    }
}

@media (max-width: 720px) {
    .pricing-page-wrapper {
        padding: 20px 16px 40px;
    }
    .why-pricing {
        grid-template-columns: 1fr;
    }
    .custom-plan-block {
        align-items: flex-start;
        flex-direction: column;
    }
    .custom-plan-button {
        width: 100%;
        text-align: center;
    }
}

/* Legacy pricing styles (keep for backward compatibility) */
.pricing-container {
    margin: 0 auto;
    padding: 20px 3rem;
    display: flex;
    gap: 1rem;
    overflow-x: auto;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 0.1rem 1rem 0 1rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 280px;
}

.pricing-card.active{
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #fbbf24;
}

.plan-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .5rem;
}

.plan-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
    color: #1a202c;
}

.plan-description {
    text-align: center;
    color: #718096;
    margin-bottom: .1rem;
    font-size: 14px;
}

.price {
    text-align: center;
    /* margin-bottom: .5rem;
    padding-bottom: .5rem; */
    border-bottom: 1px solid #f7fafc;
}

.price-amount {
    font-size: 22px;
    font-weight: 800;
    color: #1a202c;
    display: block;
}

.price-period {
    color: #718096;
    font-size: 12px;
    margin-top: 0.25rem;
}

.btn {
    width: 100%;
    text-decoration: none;
    transition: var(--transition);
    font-family: inherit;
    white-space: nowrap;
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
    color: var(--text-color);
    background-color: var(--ra-primary);
    border-color: var(--ra-primary);
}

.btn-primary {
    background: var(--ra-primary);
    color: var(--text-color);
    border-color: var(--ra-primary);
    position: relative;
}

.btn-primary:hover {
    background: var(--ra-primary-dark);
    color: var(--text-color);
    border-color: var(--ra-primary-dark);
}
.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active,
.btn-primary:focus-visible, .btn-primary:active {
background: var(--ra-primary);
    color: var(--text-color);
    border-color: var(--ra-primary);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--secondary-txt-color);
    border-color: var(--secondary-light);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

:not(.btn-check)+.btn-secondary.active,
:not(.btn-check)+.btn-secondary:active,
:not(.btn-check)+.btn-secondary:hover,
.btn-secondary.active,
.btn-secondary:active,
.btn-secondary:hover {
    background-color: var(--secondary-light);
    color: var(--secondary-dark);
    border-color: var(--secondary-light);
}

.btn-secondary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(100, 116, 139, 0.3);
}

.btn-secondary:active {
    background-color: var(--secondary-light);
    color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-secondary:disabled,
.btn-secondary.disabled {
    background-color: var(--secondary);
    color: var(--secondary-txt-color);
    border-color: var(--secondary-light);
    opacity: 0.6;
    cursor: not-allowed;
}

.features-list {
    list-style: none;
    padding-left: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0.3rem 0;
    border-bottom: 1px solid #f7fafc;
}

.feature-item:last-child {
    border-bottom: none;
}
.feature-text{
    font-size: 13px;
}
.check-icon {
    width: 16px;
    height: 16px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-icon::after {
    content: '✓';
    color: white;
    font-size: 9px;
    font-weight: bold;
}

.stats-section {
    background: white;
    padding: 0;
    margin: 1rem auto;
    max-width: 70%;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    text-align: center;
}

.stat-item {
    padding: .5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
    display: block;
}

.stat-label {
    color: #718096;
    font-size: 12px;
}
.pricingFooter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 20px;
}
.pricingFooterBtnDiv{
    display: flex;
    gap: 10px;
}
/* PRICING PAGE CSS END HERE--------------------------- */
/* SUBSCRIBE PAGE CSS --------------------------------- */
.config-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.config-header {
    margin-bottom: 3rem;
}

.config-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.config-subtitle {
    color: #3b82f6;
    font-weight: 600;
    margin: 0;
}

.config-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.features-section {
    flex: 1;
    min-width: 300px;
    border-right: 1px solid #f1f5f9;
    padding-right: 2rem;
}

.configuration-section {
    flex: 1;
    min-width: 300px;
    padding-left: 2rem;
}

.discount-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #f1f5f9;
    font-size: 14px;
    line-height: 1.6;
}

.discount-text {
    color: #3b82f6;
    font-weight: 600;
}

.user-warning {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #92400e;
}

.pricing-section {
    margin-top: 2rem;
    position: relative;
}

.price-display {
    background: linear-gradient(135deg, #fde047, #eab308);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.price-display::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 110px 110px 0;
    border-color: transparent #1f2937 transparent transparent;
}

.save-badge {
    position: absolute;
    top: 10px;
    right: 6px;
    background: #1f2937;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transform: rotate(45deg);
    z-index: 1;
}

.amount-label {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.amount-value {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.billing-info {
    font-size: 12px;
    color: #1f2937;
    font-weight: 500;
    line-height: 1.4;
}

.proceed-button {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.proceed-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}
.subscribe.features-section{
    padding-right: 0px
}
.subscribe.features-section .feature-list{
    padding-left: 0px;
}
.subscribe.features-section .feature-list .feature-text{
    font-size: 16px;
}
/* SUBSCRIBE PAGE CSS END HERE --------------------------------- */
/* THANK YOU PAGE CSS --------------------------------- */
.thankyou-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem;
    flex-direction: column;
}

.thankyou-block img {
    width: 70px;
    height: 70px;
    filter: brightness(0) saturate(100%) invert(77%) sepia(97%) saturate(415%) hue-rotate(6deg) brightness(101%) contrast(101%);
}

.thankyou-block span {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
}

.content-block {
    margin-bottom: 2rem;
}

.content-block p {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 2rem;
}
/* THANK YOU PAGE CSS END HERE --------------------------------- */
/* BLOG PAGE START HERE ---------------------- */
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    background-color: #f8f9fa;
    min-height: 100vh;
}

.blog-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
}

.blog-header h1 {
    color: var(--text-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.blog-header p {
    color: #6c757d;
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

.blog-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 13px;
}

.stat-number {
    color: var(--ra-primary);
    font-weight: 600;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: start;
}

.blog-main {
    display: grid;
    gap: 1.5rem;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: box-shadow 0.2s ease;
}

.news-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.news-image {
    width: 100%;
    max-height: 350px;
    object-fit: contain;
    background: #f8f9fa;
}

.news-image-placeholder {
    width: 100%;
    max-height: 350px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 16px;
    border-bottom: 1px solid #e9ecef;
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #6c757d;
    font-size: 13px;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

.news-date::before {
    content: "📅";
    font-size: 13px;
}

.news-title {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    display: block;
    transition: color 0.2s ease;
}

.news-title:hover {
    color: var(--ra-primary);
    text-decoration: none;
}

.news-description.blog-content-data{
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
}

.news-description {
    color: #495057;
    line-height: 1.6;
    /* margin-bottom: 1.5rem; */
    font-size: 13px;
}
.news-description ul{
    line-height: 16px;
}
.news-description ul li a{
    text-decoration: none;
}
.social-share-div{
    padding: 1rem 0;
    border-top: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 10px;
}
.social-share-main-div{
    margin-bottom: 0.5rem;
    color: #495057;
    font-weight: 600;
    font-size: 13px;
}

.sharethis-inline-share-buttons .st-remove-label{
    display: block;
}

.writer-details{
    display: flex;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--ra-primary);
    margin-bottom: 1.5rem;
    margin-top: 100px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ra-primary);
    color: var(--text-color);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    margin-top: .5rem;
}

.read-more-btn:hover {
    background: #e0a800;
    color: var(--text-color);
    text-decoration: none;
    transform: translateY(-1px);
}

.read-more-btn::after {
    content: "→";
    transition: transform 0.2s ease;
}

.read-more-btn:hover::after {
    transform: translateX(2px);
}

.sidebar {
    position: sticky;
    top: 80px;
    height: fit-content;
}

.sidebar h3 {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 600;
    border-bottom: 2px solid var(--ra-primary);
    margin: 0;
    /* flex: 1; */
}

/* Recent Posts in Sidebar */
.recent-post {
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.recent-post:last-child {
    border-bottom: none;
}

.recent-post-title {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.4;
    display: block;
    margin-bottom: 0.5rem;
}

.recent-post-title:hover {
    color: var(--ra-primary);
    text-decoration: none;
}

.recent-post-date {
    color: #6c757d;
    font-size: 13px;
}

/* Tags */
.tag {
    display: inline-block;
    background: #f8f9fa;
    color: #495057;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    margin: 0.25rem 0.25rem 0.25rem 0;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.tag:hover {
    background: var(--ra-primary);
    color: var(--text-color);
    text-decoration: none;
    border-color: var(--ra-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-container {
        padding: 1rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .blog-grid {
        display: flex !important;
        flex-direction: column-reverse !important;
    }
    .blog-grid .sidebar{
        width: 100%;
    }

    .blog-header {
        padding: 1.5rem;
    }

    .blog-header h1 {
        font-size: 16px;
    }

    .blog-stats {
        gap: 1rem;
        margin-top: 1rem;
    }

    .news-content {
        padding: 1rem;
    }

    .news-title {
        font-size: 14px;
    }

    .sidebar {
        order: -1;
        position: relative;
        top: 0;
    }
}

/* Loading Animation */
.news-card {
    animation: fadeIn 0.5s ease-out;
}

.news-card:nth-child(2) {
    animation-delay: 0.1s;
}

.news-card:nth-child(3) {
    animation-delay: 0.2s;
}

.news-card:nth-child(4) {
    animation-delay: 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.empty-state h3 {
    color: #6c757d;
    margin-bottom: 1rem;
}

.empty-state p {
    color: #6c757d;
    margin: 0;
}

.follow-us-links {
    font-size: 14px;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 10px;
}

.follow-us-links a {
    height: 25px;
    width: 25px;
    background: black;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
}

/* Sidebar Widget Styles */
.sidebar-widget {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    margin-bottom: 2rem;
    overflow: hidden;
}

.widget-header {
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: between;
    align-items: center;
}

.rss-link {
    color: #6c757d;
    font-size: 14px;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.rss-link:hover {
    color: var(--ra-primary);
    background: #fff3cd;
    text-decoration: none;
}

.widget-content {
    padding: 1.5rem;
}

/* Recent Posts */
.recent-post-item {
    padding: 1rem 0;
    border-bottom: 1px solid #f1f3f4;
}

.recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post-item:first-child {
    padding-top: 0;
}

.recent-post-link {
    text-decoration: none;
    display: block;
    transition: all 0.2s ease;
}

.recent-post-link:hover {
    text-decoration: none;
}

.recent-post-title {
    color: var(--text-color);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
    transition: color 0.2s ease;
}

.recent-post-link:hover .recent-post-title {
    color: var(--ra-primary);
}

.recent-post-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 13px;
}

.recent-post-meta i {
    font-size: 13px;
}

.no-posts {
    text-align: center;
    color: #6c757d;
    font-style: italic;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #e9ecef;
    background: #f8f9fa;
}

.social-link:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.social-link i {
    width: 20px;
    text-align: center;
    font-size: 13px;
}

.social-link span {
    font-weight: 500;
    font-size: 13px;
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.social-link.twitter:hover {
    background: #1da1f2;
    color: white;
    border-color: #1da1f2;
}

.social-link.linkedin:hover {
    background: #0077b5;
    color: white;
    border-color: #0077b5;
}

.social-link.vimeo:hover {
    background: #1ab7ea;
    color: white;
    border-color: #1ab7ea;
}

/* Newsletter */
.newsletter-text {
    color: #495057;
    font-size: 13px;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-input {
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 13px;
    transition: border-color 0.2s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--ra-primary);
    box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.25);
}

.newsletter-btn {
    background: var(--ra-primary);
    color: var(--text-color);
    border: none;
    padding: 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.newsletter-btn:hover {
    background: #e0a800;
    transform: translateY(-1px);
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid var(--ra-primary);
}

.cta-widget .widget-content {
    padding: 1.5rem;
}

.cta-title {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
}

.cta-text {
    color: #495057;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.cta-button {
    display: inline-block;
    background: var(--ra-primary);
    color: var(--text-color);
    text-decoration: none;
    padding: 0.875rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s ease;
    margin-bottom: 1.5rem;
}

.cta-button:hover {
    background: #e0a800;
    color: var(--text-color);
    text-decoration: none;
    transform: translateY(-1px);
}

.cta-image img {
    border-radius: 6px;
    width: 100%;
    height: auto;
}

/* Quick Links */
.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin-bottom: 0.75rem;
}

.quick-links li:last-child {
    margin-bottom: 0;
}

.quick-links a {
    color: #495057;
    text-decoration: none;
    font-size: 13px;
    padding: 0.5rem 0;
    display: block;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

.quick-links a:hover {
    color: var(--ra-primary);
    text-decoration: none;
    padding-left: 0.5rem;
    border-bottom-color: var(--ra-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar-widget {
        margin-bottom: 1.5rem;
    }

    .widget-content {
        padding: 1rem;
    }

    .widget-header {
        padding: 0.75rem 1rem;
    }

    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .social-link {
        flex: 1;
        min-width: calc(50% - 0.375rem);
        justify-content: center;
    }

    .social-link span {
        display: none;
    }
}
/* BLOG PAGE END HERE ---------------------- */
/* ARTICLE PAGE START HERE */
.category_page_header {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e9ecef;
}

.category_page_header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.category_page_header h1 {
    color: var(--text-color);
    font-size: 16px !important;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 0;
}

.search_bar {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: .5rem;
}

.search_bar input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s ease;
    background: white;
}

.search_bar input:focus {
    outline: none;
    border-color: var(--ra-primary);
    box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.25);
}

.breadcrumb {
    text-align: center;
    margin: 0;
    display: flex;
    justify-content: center;
}

.breadcrumb a {
    text-decoration: none;
    font-size: 15px;
}

.breadcrumbssaprator {
    font-weight: 800;
}

.category_page {
    background-color: #f8f9fa;
    min-height: 60vh;
    padding: 1rem 0;
}

.category_page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.category-list-container {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
}

.category_page .header {
    color: var(--text-color);
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid var(--ra-primary);
    background: white;
    padding: 1rem;
    margin: 0px;
}

.category_grids {
    padding-top: 1rem;
    transition: all 0.2s ease;
    height: 100%;
    cursor: pointer;
}

.category_list {
    display: flex;
    gap: 10px;
    padding: 10px;
    cursor: pointer;
}

.category_icon {
    width: 50px;
    height: 50px;
    background: var(--ra-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 20px;
}

.category_icon::before {
    content: "📚";
}

.category_list:last-child .category_icon::before {
    content: "❓";
}

.category_icon img {
    display: none;
}

.category_title h3 {
    margin: 0 0 0.5rem 0;
    font-size: 14px;
    font-weight: 600;
}

.category_title h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.category_title h3 a:hover {
    color: var(--ra-primary);
    text-decoration: none;
}

.category_title p {
    color: #6c757d;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.category_faqs {
    background-color: #f8f9fa;
    min-height: 60vh;
    padding: 2rem 0;
}

.category_faqs .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.faqs_sections {
    background: white;
    padding: 2rem;
    border-radius: 12px 12px 0px 0px;
    text-align: center;
    padding-bottom: 0px;
}

.faqs_sections h2 {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--ra-primary);
}

.faq_listing {
    background: white;
    padding: 2rem;
    border-radius: 0px 0px 12px 12px;
    padding-top: 1rem;
}

.faq_listing .row {
    margin: 0;
    display: grid;
    gap: 1rem;
}

.support_list {
    padding: 0;
}

.faq_list {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.25rem;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.faq_list:hover {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq_list h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.faq_list h4 a {
    color: var(--text-color);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.faq_list h4 a:hover {
    color: var(--ra-primary);
    text-decoration: none;
}

.error-message {
    text-align: center;
    padding: 2rem;
    color: #6c757d;
    font-size: 14px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    margin: 1rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .category_page_header {
        padding: 1.5rem 0;
    }

    .category_page_header .container,
    .category_page .container,
    .category_faqs .container {
        padding: 0 1rem;
    }

    .category_grids .row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .category_list {
        padding: 1rem;
    }

    .faqs_sections,
    .faq_listing {
        padding: 1.5rem;
    }

    .category_page h2,
    .faqs_sections h2 {
        padding: 1.5rem;
    }
}

/* Animation */
.category_list,
.faq_list {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ARTICLE PAGE END HERE */
/* FAQ PAGE START HERE */
.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    background-color: #f8f9fa;
    min-height: 100vh;
}

.faq-wrapper {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    overflow: hidden;
    padding: 0px 16px;
}

.faq-header {
    background: white;
    padding: 1rem;
    text-align: center;
    border-bottom: 2px solid var(--ra-primary);
}

.faq-title {
    color: var(--text-color);
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.d-accordion {
    background: white;
    padding: 1rem;
}

.panel {
    border: none;
    box-shadow: none;
    margin-bottom: 0;
    border-radius: 0;
}

.panel-default {
    background: transparent;
}

.panel-default+.panel-default {
    border-top: 1px solid #e9ecef;
}

.panel-heading {
    background: transparent !important;
    border: none !important;
    padding: 1.25rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 0 !important;
}

/* .panel-heading:hover {
    background: #f8f9fa !important;
  } */

.panel-heading.collapsed {
    background: transparent !important;
}

.panel-title {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1.5;
}

.panel-title i {
    color: var(--ra-primary);
    font-size: 16px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.panel-heading.collapsed .panel-title i {
    transform: rotate(180deg);
}

.panel-collapse {
    border: none;
}

.panel-body {
    padding: 0 1rem 1.25rem 1rem;
    color: #495057;
    font-size: 13px;
    line-height: 1.6;
    background: transparent;
}

.panel-body>div {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    border-left: 3px solid var(--ra-primary);
}

/* Animation for collapse */
.panel-collapse.collapsing {
    transition: height 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-container {
        padding: 1rem;
    }

    .faq-header {
        padding: 1.5rem;
    }

    .d-accordion {
        padding: 0.5rem;
    }

    .panel-heading {
        padding: 1rem 0.75rem;
    }

    .panel-body {
        padding: 0 0.75rem 1rem 0.75rem;
    }

    .panel-title {
        font-size: 13px;
    }
}

/* Smooth fade-in animation */
.panel {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* FAQ PAGE END HERE */
/* TERM AND CONDITION PAGE START HERE */
.terms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    background-color: #f8f9fa;
    min-height: 100vh;
}

.terms-wrapper {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    overflow: hidden;
    padding: 0 16px;
}

.term-head {
    background: white;
    padding: 1.5rem;
    text-align: center;
    border-bottom: 2px solid var(--ra-primary);
}

.term-title {
    color: var(--text-color);
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.terms-content , .privacy-content{
    padding: 0rem 1rem;
}

.term-content-1 {
    padding: 1.5rem 0;
    border-bottom: 1px solid #f1f3f4;
}

.term-content-1:last-child {
    border-bottom: none;
}

.term-sub-title {
    color: var(--text-color);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.bullet-point {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--ra-primary);
}

.term-content-1 p {
    color: #495057;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.term-content-1 p:last-child {
    margin-bottom: 0;
}

.term-content-1 ul {
    list-style: none;
    padding-left: 1.5rem;
    margin: 0.75rem 0;
}

.term-content-1 ul li {
    color: #495057;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.25rem;
}

.term-content-1 ul li::before {
    content: "•";
    color: var(--ra-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.term-content-1 ul ul {
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

/* .sechdule-div {
        background: #f8f9fa;
        border-radius: 8px;
        padding: 1.5rem !important;
        margin-top: 1.5rem;
        border: 1px solid #e9ecef;
    }

    .sechdule-div .bullet-point {
        background: white;
        padding: 0.75rem 1rem;
        border-radius: 6px;
        margin-bottom: 1rem;
        border-left: 3px solid var(--ra-primary);
    } */

/* Responsive */
@media (max-width: 768px) {
    .terms-container {
        padding: 1rem;
    }

    .term-head {
        padding: 1.5rem;
    }

    .terms-content {
        padding: 1rem;
    }

    .term-content-1 {
        padding: 1rem 0;
    }

    .term-title {
        font-size: 14px;
    }

    .bullet-point {
        font-size: 13px;
        padding-left: 0.75rem;
    }
}

/* Animation */
.term-content-1 {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* TERM AND CONDITION PAGE END HERE */
/* FOOTER PAGE START HERE */
  .modern-footer {
      background: #1a202c;
      color: white;
      /* margin-top: 4rem; */
  }

  .modern-footer-main {
      padding: 3rem 0 2rem;
  }

  .modern-footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
  }

  .modern-footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
  }

  .modern-footer-section h3 {
      color: white;
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 1.5rem;
      position: relative;
  }

  .modern-footer-section h3::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 40px;
      height: 2px;
      background: #fbbf24;
  }

  .modern-footer-link {
      color: #cbd5e1;
      text-decoration: none;
      font-size: 13px;
      display: block;
      padding: 0.5rem 0;
      transition: all 0.2s ease;
      border-bottom: 1px solid transparent;
  }

  .modern-footer-link:hover {
      color: #fbbf24;
      text-decoration: none;
      padding-left: 8px;
  }

  .modern-footer-text {
      color: #cbd5e1;
      font-size: 13px;
      line-height: 1.6;
      margin-bottom: 0.5rem;
  }

  .modern-footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 1rem;
  }

  .modern-footer-contact-icon {
      width: 20px;
      height: 20px;
      background: #fbbf24;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #1a202c;
      font-size: 13px;
      flex-shrink: 0;
      margin-top: 2px;
  }

  .modern-footer-social {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
  }

  .modern-footer-social-link {
      width: 40px;
      height: 40px;
      background: #2d3748;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #cbd5e1;
      text-decoration: none;
      transition: all 0.3s ease;
      font-size: 16px;
  }

  .modern-footer-social-link:hover {
      background: #fbbf24;
      color: #1a202c;
      transform: translateY(-2px);
      text-decoration: none;
  }

  .modern-footer-bottom {
      border-top: 1px solid #2d3748;
      padding: 2rem 0 1rem;
      text-align: center;
  }

  .modern-footer-copyright {
      color: #9ca3af;
      font-size: 13px;
      line-height: 1.6;
  }

  /* Mobile Responsive */
  @media (max-width: 768px) {
      .modern-footer-container {
          padding: 0 1rem;
      }

      .modern-footer-main {
          padding: 2rem 0 1rem;
      }

      .modern-footer-grid {
          grid-template-columns: 1fr;
          gap: 2rem;
          text-align: center;
      }

      .modern-footer-section h3::after {
          left: 50%;
          transform: translateX(-50%);
      }

      .modern-footer-social {
          justify-content: center;
      }

      .modern-footer-contact-item {
          justify-content: center;
      }
  }

  @media (max-width: 480px) {}
/* FOOTER PAGE END HERE */
/* CONTACT US PAGE START HERE */
/* Modern Contact Form - Risk Assessor Theme */
.contact-container {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.contact-us {
    background: white;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 1000px;
    border: 1px solid #f1f5f9;
}

.contact-header {
    text-align: center;
}

.contact-header label {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-color);
    margin: 0rem 0px 1rem 0px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

#getInTouch {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

/* Success/Error Messages */
#succMsgTouch,
#errMsgTouch {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

#succMsgTouch {
    background: #d4edda;
    color: #155724 !important;
    border: 1px solid #c3e6cb;
}

#errMsgTouch {
    background: #f8d7da;
    color: #721c24 !important;
    border: 1px solid #f5c6cb;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

/* Form Controls */
.custom-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-color);
    background: #f8f9fa;
    transition: all 0.2s ease;
}

.custom-control:focus {
    outline: none;
    border-color: var(--ra-primary);
    /* box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.25); */
    background: white;
}

.custom-control::placeholder {
    color: #6c757d;
    font-size: 13px;
}

/* Textarea */
textarea.custom-control {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.sent-btn {
    background: var(--ra-primary);
    color: var(--text-color);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.sent-btn:hover {
    background: var(--ra-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 193, 7, 0.3);
}

.sent-btn:active {
    transform: translateY(0);
}

.swiper {
    overflow: hidden;
    padding: 20px 1rem !important;
    display: flex !important;
}
.swiper-wrapper{
    margin-bottom: 20px;
    flex: 1;
}
.swiper-slide{
    height: unset !important;
}

/* Responsive */
@media (max-width: 768px) {
    #getInTouch {
        padding: 1.5rem;
    }

    .touch-left-padding {
        padding-left: 15px;
        padding-right: 15px;
    }

    .custom-control {
        font-size: 13px;
    }

    .sent-btn {
        padding: 0.75rem 1.5rem;
    }
    .pricing-container {
        width: 100%;
        padding: 20px;
    }

    .pricing-card {
        background: #fff;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .swiper {
        overflow: hidden;
        padding: 20px 1rem !important;
    }

    .swiper-slide {
        display: flex;
        justify-content: center;
    }
    .configuration-section {
        padding-left: 0;
    }
    .features-section{
        border: 0;
    }
}
@media (max-width: 576px){
    .config-content{
        padding: 2rem;
    }
}
@media (max-width: 420px) {
    .category_grids .row>*{
        padding-right: unset !important;
        padding-left: unset !important;
    }
    .category_list {
        padding: unset;
        gap: 20px;
    }
    .category_icon{
        width: 74px;
        height: 44px;
    }
    .config-container {
        padding: 1rem;
    }
    .config-content {
        padding: 1rem;
        gap: 1rem;
    }
    .config-header {
        margin-bottom: 1.5rem;
    }
    .config-title {
        font-size: 18px;
    }
    .config-subtitle{
        font-size: 16px;
    }
    .subscribe.features-section .feature-list .feature-text{
        font-size: 12px;
    }
    .discount-info {
        margin-top: 1.5rem;
        padding-top: 0;
        border-top: 0;
    }
    .features-section, .configuration-section{
        min-width: unset;
    }
}
/* CONTACT US PAGE END HERE */