* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f7fa;
    color: #333;
    overflow-x: hidden;
}
.modal .modal-body{
    max-height: 70vh !important;
}
/* Dashboard Layout */
.dashboard-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.sidebar.collapsed {
    width: 80px;
}

.sidebar-header {
    padding: 25px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
}

.sidebar-header img {
    max-width: 150px;
    height: auto;
    transition: opacity 0.3s;
}

.sidebar.collapsed .sidebar-header img {
    opacity: 0;
    width: 0;
}

.sidebar-toggle {
    /* background: rgba(255, 255, 255, 0.1); */ 
    background: linear-gradient(180deg, #1e3a8a 0%, #3b82f6 100%);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    /* transition: all 0.1s; */
}

.sidebar-toggle:hover {
    background: #1e3a8a;
}

.sidebar-menu {
    padding: 20px 0;
}

.menu-section {
    margin-bottom: 30px;
}

.menu-section-title {
    padding: 10px 25px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    font-weight: 600;
}

.sidebar.collapsed .menu-section-title {
    display: none;
}

.menu-item {
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}

/* Regular menu items (without submenu button) */
.menu-item:not(:has(.menu-toggle-btn)) {
    padding: 14px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-item:not(:has(.menu-toggle-btn)):hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu-item.active:not(:has(.menu-toggle-btn)) {
    background: rgba(255, 255, 255, 0.15);
    border-left-color: #fbbf24;
}

.menu-item i {
    width: 20px;
    font-size: 18px;
    text-align: center;
    flex-shrink: 0;
}

.menu-item span {
    transition: opacity 0.3s;
    white-space: nowrap;
}

.sidebar.collapsed .menu-item span {
    opacity: 0;
    width: 0;
    overflow: hidden;
}

.sidebar.collapsed .menu-item i {
    margin: 0 auto;
}

/* Submenu Styles */
.menu-toggle-btn {
    color: white !important;
    text-decoration: none;
    padding: 14px 25px;
    margin: 0;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-size: 14px;
    font-weight: 400;
}

.menu-toggle-btn:hover {
    color: rgba(255, 255, 255, 0.9) !important;
    background: rgba(255, 255, 255, 0.1);
    border-left-color: transparent;
}

.menu-toggle-btn:focus,
.menu-toggle-btn:active {
    box-shadow: none;
    outline: none;
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
}

.menu-toggle-btn span {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.menu-toggle-btn span i {
    width: 20px;
    font-size: 18px;
    text-align: center;
    flex-shrink: 0;
}

.menu-toggle-btn span span {
    white-space: nowrap;
}

.submenu-arrow {
    margin-left: auto;
    font-size: 12px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 12px;
    text-align: center;
}

/* Rotate chevron when collapse is shown */
.menu-toggle-btn[aria-expanded="true"] .submenu-arrow {
    transform: rotate(180deg);
}

/* Active state for menu items with submenu when expanded */
.menu-item .menu-toggle-btn[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: rgba(255, 255, 255, 0.3);
}

.submenu {
    background: rgba(0, 0, 0, 0.1);
    margin-left: 20px;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    padding: 0;
    overflow: hidden;
}

.submenu-item {
    padding: 12px 25px 12px 50px !important;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    width: 100%;
}

.submenu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding-left: 52px !important;
    border-left-color: rgba(255, 255, 255, 0.2);
}

.submenu-item.active {
    background: rgba(255, 255, 255, 0.15);
    border-left-color: #fbbf24;
    color: white;
    font-weight: 500;
}

.submenu-item i {
    font-size: 14px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.submenu-item span {
    white-space: nowrap;
    transition: opacity 0.3s;
}

.sidebar.collapsed .submenu {
    display: none;
}

.sidebar.collapsed .menu-toggle-btn span span {
    opacity: 0;
    width: 0;
    overflow: hidden;
}

.sidebar.collapsed .menu-toggle-btn .submenu-arrow {
    display: none;
}

/* Bootstrap collapse animation */
.collapse {
    transition: height 0.35s ease;
}

.collapse:not(.show) {
    display: none;
}

.collapse.show {
    display: block;
}

/* Smooth collapse animation */
.collapsing {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

/* Ensure submenu items are properly contained */
.menu-item .collapse .submenu {
    display: block;
}

/* Better spacing for collapsed sidebar */
.sidebar.collapsed .menu-toggle-btn {
    padding: 14px 0;
    justify-content: center;
}

.sidebar.collapsed .menu-toggle-btn span {
    display: none;
}

.sidebar.collapsed .menu-toggle-btn i:first-child {
    margin: 0 auto;
}

.menu-badge {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.sidebar.collapsed .menu-badge {
    display: none;
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: 280px;
    transition: margin-left 0.3s ease;
}

.sidebar.collapsed ~ .main-content {
    margin-left: 80px;
}

/* Top Navigation Bar */
.top-navbar {
    background: white;
    padding: 20px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-navbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.page-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a8a;
    margin: 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item.active {
    color: #1e3a8a;
    font-weight: 600;
}

.top-navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    position: relative;
}

.search-box input {
    padding: 10px 15px 10px 40px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    width: 300px;
    font-size: 14px;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.notification-icon {
    position: relative;
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.notification-icon:hover {
    background: #e5e7eb;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.user-profile-wrapper {
    position: relative;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 10px;
    transition: all 0.3s;
}

.user-profile:hover {
    background: #f3f4f6;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 14px;
}

.user-role {
    font-size: 12px;
    color: #6b7280;
}

/* User Menu Dropdown */
.user-menu-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 280px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    overflow: hidden;
    animation: slideDown 0.3s ease;
    border: 1px solid #e5e7eb;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-menu-header {
    padding: 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-menu-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.user-menu-info {
    flex: 1;
}

.user-menu-name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.user-menu-email {
    font-size: 13px;
    opacity: 0.9;
}

.user-menu-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 8px 0;
}

.user-menu-items {
    padding: 8px 0;
}

.user-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #374151;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-size: 14px;
}

.user-menu-item:hover {
    background: #f9fafb;
    color: #1e3a8a;
}

.user-menu-item i {
    width: 20px;
    color: #6b7280;
    font-size: 16px;
}

.user-menu-item:hover i {
    color: #1e3a8a;
}

.user-menu-item:last-child {
    color: #dc2626;
}

.user-menu-item:last-child:hover {
    background: #fee2e2;
    color: #dc2626;
}

.user-menu-item:last-child i {
    color: #dc2626;
}

/* Content Area */
.content-area {
    padding: 30px;
}

/* Content Header */
.content-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.content-header .page-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.content-header .breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.content-header .breadcrumb-item {
    color: #6b7280;
}

.content-header .breadcrumb-item.active {
    color: #1e3a8a;
    font-weight: 600;
}

.content-header .breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: #9ca3af;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card.blue { border-left-color: #3b82f6; }
.stat-card.green { border-left-color: #10b981; }
.stat-card.orange { border-left-color: #f59e0b; }
.stat-card.purple { border-left-color: #8b5cf6; }
.stat-card.red { border-left-color: #ef4444; }

.stat-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.stat-card-title {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    position: relative;
    z-index: 1;
}

.stat-card.blue .stat-card-icon { background: linear-gradient(135deg, #3b82f6, #1e3a8a); }
.stat-card.green .stat-card-icon { background: linear-gradient(135deg, #10b981, #059669); }
.stat-card.orange .stat-card-icon { background: linear-gradient(135deg, #f59e0b, #d97706); }
.stat-card.purple .stat-card-icon { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.stat-card.red .stat-card-icon { background: linear-gradient(135deg, #ef4444, #dc2626); }

.stat-card-value {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.stat-card-change {
    font-size: 13px;
    color: #10b981;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.stat-card-change.negative {
    color: #ef4444;
}

/* Content Sections */
.content-section {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f3f4f6;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e3a8a;
}

.section-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-top: 5px;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 10px;
}

.btn-action {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-edit {
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    color: white;
}

.btn-edit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.btn-view {
    background: #f3f4f6;
    color: #374151;
}

.btn-view:hover {
    background: #e5e7eb;
}

/* Data Table */
.data-table-wrapper {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table thead {
    background: #f9fafb;
}

.data-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #374151;
    border-bottom: 2px solid #e5e7eb;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table td {
    padding: 15px;
    border-bottom: 1px solid #f3f4f6;
    color: #6b7280;
    font-size: 14px;
}

.data-table tr:hover {
    background: #f9fafb;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-success {
    background: #d1fae5;
    color: #065f46;
}

.badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.badge-info {
    background: #dbeafe;
    color: #1e40af;
}

.badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.quick-action-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.quick-action-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 24px;
}

.quick-action-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
}

.quick-action-desc {
    font-size: 13px;
    color: #6b7280;
}

/* Modal Styles */
.modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    border-radius: 16px 16px 0 0;
    padding: 20px 30px;
    border-bottom: none;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.modal-header .btn-close:hover {
    opacity: 1;
}

.modal-title {
    font-weight: 700;
    font-size: 20px;
}

.modal-body {
    padding: 30px;
    max-height: 70vh;
    overflow-y: auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
}

.form-control, .form-select {
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 100%;
}

.form-control:focus, .form-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.modal-footer {
    border-top: 1px solid #e5e7eb;
    padding: 20px 30px;
    border-radius: 0 0 16px 16px;
}

.btn-save {
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
    color: white;
}

.btn-cancel {
    background: #f3f4f6;
    color: #374151;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background: #e5e7eb;
    color: #374151;
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
    }

    .top-navbar {
        padding: 15px 20px;
    }

    .search-box input {
        width: 200px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Scrollbar */
.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 10px;
    margin-top: 10px;
}

.dropdown-item {
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: #f3f4f6;
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
}

.empty-state i {
    font-size: 64px;
    color: #d1d5db;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #374151;
}

.empty-state p {
    font-size: 14px;
}

/* Content Preview Styles */
.service-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.service-title {
    font-weight: 600;
    color: #1f2937;
    font-size: 16px;
    margin-top: 10px;
}

.service-icon {
    margin-bottom: 15px;
}

#heroContentPreview .service-card,
#aboutContentPreview .service-card,
#servicesContentPreview .service-card,
#aiContentPreview .service-card,
#industriesContentPreview .service-card,
#processContentPreview .service-card,
#whyChooseContentPreview .service-card,
#contactContentPreview .service-card {
    background: white;
    border: 1px solid #e5e7eb;
}

#heroContentPreview .badge,
#aboutContentPreview .badge,
#servicesContentPreview .badge,
#aiContentPreview .badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

#heroContentPreview p,
#aboutContentPreview p,
#aiContentPreview p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #374151;
}

#heroContentPreview strong,
#aboutContentPreview strong,
#aiContentPreview strong {
    color: #1e3a8a;
    font-weight: 600;
}

#aboutContentPreview ul li,
#aiContentPreview ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

#industriesContentPreview .service-card {
    padding: 25px 15px;
}

#processContentPreview .service-card {
    height: 100%;
}

#contactContentPreview .service-card {
    height: 100%;
}

/* File Input Styling */
.file-input-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.file-input-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.file-input-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.file-input-label:hover {
    border-color: #3b82f6;
    background: #f8fafc;
}

.file-input-label.has-file {
    border-color: #10b981;
    background: #f0fdf4;
}

.file-input-text {
    color: #6b7280;
    font-size: 14px;
    flex: 1;
}

.file-input-text.has-file {
    color: #10b981;
    font-weight: 500;
}

.file-input-button {
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    color: white;
    padding: 6px 15px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.file-preview {
    margin-top: 10px;
    width: 100%;
    max-height: 150px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #e5e7eb;
}

.file-input-wrapper .current-path {
    margin-top: 8px;
    font-size: 12px;
    color: #9ca3af;
    font-style: italic;
} 