/* Custom styles for BreakSo */
* {
    font-family: Calibri, roboto, sans-serif;
}

body.right {
    direction: rtl;
    text-align: right;
}

.header-section {
    background-image: url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

#home-section {
    min-height: 100vh;
}


#signup-section-header {
    min-height: 300px;
}

#notitle_section_header {
    min-height: 300px;
}

.header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Black with 70% opacity */
    z-index: 1;
}

.header-section > * {
    position: relative;
    z-index: 2;
}

/* Center the text content inside home section */
#home-section .home-slider,
#home-section .slider-item,
#home-section .container-fluid {
    width: 100%;
}

#home-section .text {
    text-align: center;
}

.text-orange-dark {
    color: #FB7135 !important;
}

.text-orange-middle {
    color: #FB8037 !important;
}

.text-orange-light {
    color: #FCA23C !important;
}

.text-blue {
    color: #004AAD !important;
}

.bg-orange-dark {
    background: #FB7135;
    color: white;
}

.bg-orange-middle {
    background: #FB8037;
}

.bg-orange-light {
    background: #FCA23C;
}

.bg-blue {
    background: #004AAD;
    color: white;
}

.btn-bs {
    color: #fff;
    padding: 10px 20px;
}

/* Login Form Container Styles */
.login-form-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    animation: fadeInForm 0.5s ease-in forwards;
}

.login-form-container.active {
    display: flex !important;
    flex-direction: column;
}

.login-form-content {
    padding: 40px;
    width: 100%;
    max-width: 500px;
    position: relative;
}

@keyframes fadeInForm {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeOutForm {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.95);
    }
}

.login-form-container.hiding {
    animation: fadeOutForm 0.3s ease-out forwards;
}

.close-form {
    color: #FCA23C;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-form:hover,
.close-form:focus {
    color: #FB7135;
}

#loginForm .form-control {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(251, 113, 53, 0.3);
    color: #fff !important;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#loginForm .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #FB7135;
    box-shadow: 0 0 0 0.2rem rgba(251, 113, 53, 0.25);
    color: #fff;
}

#loginForm .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#loginForm label {
    font-weight: 600;
    margin-bottom: 8px;
}

#loginForm .btn-block {
    margin-top: 20px;
    padding: 12px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#loginForm .btn-block:hover {
    background: #FB8037;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(251, 113, 53, 0.4);
}

/* Blur effect for main content when form is shown */
#home-section.blurred::before {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#main-content {
    transition: all 0.5s ease;
}

#main-content.hidden {
    opacity: 0;
    filter: blur(10px);
    -webkit-filter: blur(10px);
    transform: scale(0.95);
    pointer-events: none;
}

#main-content.visible {
    opacity: 1;
    filter: blur(0);
    -webkit-filter: blur(0);
    transform: scale(1);
}

.fa, .fa-solid {
    color: black;
}
.product-details select.form-control {
    height: 52px !important;
    text-transform: none !important;
    font-size: 18px !important;
    letter-spacing: normal !important;
}
.product-details button, .product-details .form-control {
    border: 1px solid #ced4da !important;
}



/* File Upload Styles */
.file-upload-wrapper {
    position: relative;
    border: 2px dashed #FB7135;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    background: rgba(251, 113, 53, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 12px;
}

.file-upload-wrapper:hover {
    border-color: #FB8037;
    background: rgba(251, 113, 53, 0.1);
    transform: translateY(-2px);
}

.file-upload-wrapper.dragover {
    border-color: #004AAD;
    background: rgba(0, 74, 173, 0.1);
    border-style: solid;
}

.file-upload-icon {
    font-size: 36px;
    color: #FB7135;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.file-upload-wrapper:hover .file-upload-icon {
    transform: scale(1.1);
    color: #FB8037;
}

.file-upload-text {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    margin-bottom: 4px;
}

.file-upload-hint {
    font-size: 12px;
    color: #666;
    margin-bottom: 6px;
}

.file-upload-formats {
    font-size: 11px;
    color: #999;
    margin-top: 6px;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

/* File Preview */
.file-preview {
    margin-top: 15px;
    padding: 0;
    display: none;
}

.file-preview.active {
    display: block;
}

.file-preview-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.file-preview-item:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.file-preview-icon {
    font-size: 24px;
    color: #FB7135;
    margin-right: 12px;
    min-width: 30px;
    text-align: center;
}

.file-preview-info {
    flex: 1;
    min-width: 0;
}

.file-preview-name {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-preview-size {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.file-preview-remove {
    color: #dc3545;
    cursor: pointer;
    font-size: 18px;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.file-preview-remove:hover {
    color: #c82333;
    transform: scale(1.2);
}

/* Multiple files indicator */
.file-count-badge {
    display: inline-block;
    background: #004AAD;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
}

/* Uploaded state */
.file-upload-wrapper.has-files {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.05);
}

.file-upload-wrapper.has-files .file-upload-icon {
    color: #28a745;
}

/* Error state */
.file-upload-wrapper.error {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.05);
}

.file-upload-wrapper.error .file-upload-icon {
    color: #dc3545;
}

.file-error-message {
    color: #dc3545;
    font-size: 13px;
    margin-top: 10px;
    display: none;
}

.file-error-message.active {
    display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
    border-color: #dc3545 !important;
}

.step-label {
    font-size: 0.7rem;
    color: #6c757d;
    max-width: 80px;
    text-align: center;
}
.step-label.font-weight-bold {
    color: #fd7e14 !important;
}
.progress-bar {
    transition: width 0.3s ease;
}
.form-step {
    min-height: 400px;
}

.required::after {
    content: ' *';
    color: #dc3545;
}

.error-message-list ul {
    color: #dc3545 !important;
    list-style: none;
    padding: 0;
}

.error-message-list ul li::before {
    content: '\00d7  ';
}

.signup-success-i {
    font-size: 80px; 
    text-align: center;
    margin: 25px;
}

.message-signup-first {
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
}

nav.navbar a.nav-link {
    color: #fff !important;
}

.payment-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 40px;
    margin-top: 30px;
}
.payment-icon {
    font-size: 80px;
    color: #f86f2d;
    margin-bottom: 20px;
}
.subscription-fee {
    font-size: 48px;
    font-weight: bold;
    color: #f86f2d;
    margin: 20px 0;
}
.currency {
    font-size: 24px;
    vertical-align: super;
}
.fee-description {
    color: #6c757d;
    margin-bottom: 30px;
}
.role-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: #e3f2fd;
    color: #1976d2;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}
.info-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
}
.info-box i {
    color: #ffc107;
    margin-right: 10px;
}

.list-style-none {
    list-style: none;
}

.block-info-action {
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Account Status Page Styles */
.status-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 40px;
    margin-top: 30px;
}

.status-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.status-pending .status-icon {
    color: #ffc107;
}

.status-blocked .status-icon {
    color: #dc3545;
}

.status-expired .status-icon {
    color: #6c757d;
}

.status-pending .status-info-box {
    border-left-color: #ffc107;
}

.status-blocked .status-info-box {
    border-left-color: #dc3545;
}

.status-expired .status-info-box {
    border-left-color: #6c757d;
}

.status-info-box {
    background-color: #f8f9fa;
    border-left: 4px solid;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
}

.short-header {
  height: 280px;
  padding: 0em;
  display: flex;
  justify-content: center;
  align-items: center;
}

table.small-p-cell tbody tr td {
    padding: 0.75rem;
}

.table {
    min-width: unset !important;
}

.list-group-item.active {
  background-color: #007bff;
  border-color: #007bff;
}

/* Photo Card Preview Styles */
.card-preview-container {
    position: relative;
    width: 800px;
    height: 400px;
    max-width: 100%;
    margin: 0 auto;
    background-color: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.photo-frame {
    position: absolute;
    bottom: 30px;
    left: 50px;
    width: 160px;
    height: 200px;
    border: 3px dashed #ccc;
    background-color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.photo-frame.has-photo {
    border: 3px solid #28a745;
}

.photo-placeholder {
    text-align: center;
    color: #999;
}

.photo-preview-img {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-preview-img.visible {
    display: block;
}