.trade-dashboard-wrapper {
	width: auto;
	height: auto;
	background: #f8f9fa;
	border: 1px solid #f8f9fa59;
	border-radius: 8px;
	padding: 20px;
	margin: 10px;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
	color: #2e2e2e;
}

.dashboard-header {
	text-align: center;
	margin-bottom: 30px;
}

.dashboard-title {
	font-size: 20px;
	font-weight: bold;
	margin: 0 0 5px 0;
	color: #2e2e2e;
	background-color: #d4d4d4ad;
	padding: 5px;
	border-radius: 10px;
}

.dashboard-subtitle {
	font-size: 12px;
	color: #2e2e2e;
	margin: 0;
}

.trade-section {
	margin-bottom: 25px;
}

.trade-section-title {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 15px;
	color: #2e2e2e;
	display: flex;
	/* align-items: center; */
	gap: 8px;
}

.trade-icon {
	width: 26px;
	height: 26px;
	fill: #2e2e2e;
}

.trade-data-row {
	margin-bottom: 12px;
}

.trade-data-header {
	display: flex;
	justify-content: between;
	align-items: center;
	margin-bottom: 6px;
	font-size: 13px;
}

.trade-data-label {
	flex: 1;
	font-weight: 700;
}

.trade-data-value {
	font-weight: bold;
	color: #2e2e2e;
}

.trade-progress-container {
	background: #e9ecef;
	border-radius: 4px;
	height: 14px;
	position: relative;
	cursor: pointer;
}

.trade-progress-bar {
	height: 100%;
	border-radius: 4px;
	background: #1e3a8a;
	transition: width 0.8s ease;
	position: relative;
}

.trade-progress-bar.high-coverage {
	background: #28a745;
}

.trade-percentage-text {
	position: absolute;
	right: 6px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 10px;
	font-weight: bold;
	color: white;
}

.trade-tooltip {
	position: absolute;
	bottom: 120%;
	left: 50%;
	transform: translateX(-50%);
	background: #343a40;
	color: white;
	padding: 6px 10px;
	border-radius: 4px;
	font-size: 11px;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
	z-index: 10;
}

.trade-tooltip::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 4px solid transparent;
	border-top-color: #343a40;
}

.trade-progress-container:hover .trade-tooltip {
	opacity: 1;
}

.trade-stats-footer {
	position: absolute;
	bottom: 15px;
	left: 20px;
	font-size: 11px;
	color: #6c757d;
}

:root { -
	-primary-blue: #0066cc; -
	-light-blue: #e6f3ff; -
	-dark-blue: #1a365d; -
	-green: #28a745; -
	-red: #dc3545; -
	-orange: #fd7e14;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: #f8f9fa;
}

.header-bar {
	background: #fff;
	color: #000;
	padding: 10px 0;
}

.nav-tabs {
	background-color: white;
	border-bottom: 2px solid #dee2e6;
}

.nav-tabs .nav-link {
	border: none;
	border-radius: 5px;
	color: #495057;
	font-weight: 500;
	padding: 12px 24px;
}

.nav-tabs .nav-link.active {
	background-color: #17a2b8;
	color: white;
	border-bottom: 3px solid #1e3a8a;
}

.sidebar {
	background-color: var(- -dark-blue);
	color: white;
	min-height: calc(100vh - 120px);
	padding: 0;
}

.sidebar-header {
	background-color: rgba(255, 255, 255, 0.1);
	padding: 15px;
	font-weight: bold;
}

.year-selector {
	background-color: var(- -primary-blue);
	margin: 15px;
	border-radius: 8px;
	padding: 15px;
}

.year-tabs {
	display: flex;
	margin-bottom: 10px;
}

.year-tab {
	flex: 1;
	text-align: center;
	padding: 8px;
	background-color: rgba(255, 255, 255, 0.2);
	cursor: pointer;
	border-radius: 4px;
	margin-right: 5px;
}

.year-tab.active {
	background-color: white;
	color: var(- -primary-blue);
}

.sidebar-menu {
	list-style: none;
	padding: 0;
	margin: 20px 0;
}

.sidebar-menu li {
	padding: 5px 20px;
	cursor: pointer;
	border-left: 3px solid transparent;
}

.sidebar-menu li:hover {
	background-color: rgba(255, 255, 255, 0.1);
	border-left-color: #17a2b8;
}

.sidebar-menu li i {
	margin-right: 10px;
	color: #56aeff;
	;
}

.country-card {
	background: white;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	text-align: center;
	border-top: 4px solid var(- -primary-blue);
}

.country-flag {
	width: 40px;
	height: 30px;
	margin-bottom: 10px;
	border-radius: 4px;
}

.country-name {
	font-weight: bold;
	margin-bottom: 15px;
	color: var(- -dark-blue);
}

.trade-stats {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}

.stat-value {
	font-size: 18px;
	font-weight: bold;
}

.stat-label {
	font-size: 12px;
	color: #666;
}

.change-positive {
	color: var(- -green);
}

.change-negative {
	color: var(- -red);
}

.map-container {
	background: white;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	min-height: 400px;
	position: relative;
}

.map-controls {
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 10;
}

.map-btn {
	background: white;
	border: 1px solid #ddd;
	padding: 8px 12px;
	margin-right: 5px;
	border-radius: 4px;
	cursor: pointer;
}

.map-btn.active {
	background: var(- -primary-blue);
	color: white;
}

.trade-overview {
	background: white;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.overview-stat {
	text-align: center;
	padding: 15px;
}

.overview-stat h3 {
	color: var(- -primary-blue);
	font-size: 24px;
	margin-bottom: 5px;
}

.overview-stat p {
	color: #666;
	margin: 0;
}

.data-table {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.table-header {
	background: linear-gradient(135deg, #6c7b7f, #5a6c70);
	color: white;
	padding: 15px 20px;
	font-weight: bold;
}

.trade-balance-positive {
	background-color: var(- -green);
	color: white;
}

.trade-balance-negative {
	background-color: var(- -red);
	color: white;
}

.insights-panel {
	background: white;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.insights-header {
	border-bottom: 2px solid var(- -primary-blue);
	/* ensure --primary-blue is defined */
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.insights-panel h6 {
	font-weight: 600;
	margin-bottom: 6px;
}

.insights-panel p.small {
	font-size: 14px;
	margin-bottom: 16px;
}

.world-map-placeholder {
	width: 100%;
	height: 300px;
	background: linear-gradient(135deg, #74b9ff, #0984e3);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 18px;
	position: relative;
	overflow: hidden;
}

.trade-routes {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(./img/8.png) center;
}

.zoom-controls {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
}

.zoom-btn {
	background: rgba(255, 255, 255, 0.9);
	border: none;
	width: 35px;
	height: 35px;
	margin-bottom: 5px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 18px;
}

.search-container {
	position: relative;
	max-width: 700px;
	width: 100%;
}

.custom-search-box {
	width: 100%;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 25px;
	padding: 15px 20px;
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-size: 16px;
	color: #333;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	cursor: pointer;
}

/* .custom-search-box:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
        } */
.search-icon {
	margin-right: 12px;
	display: flex;
	align-items: center;
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.search-icon img {
	filter: brightness(0.6);
}

.custom-search-box:hover .search-icon {
	opacity: 1;
}

.search-input {
	border: none;
	outline: none;
	background: transparent;
	flex: 1;
	font-size: 16px;
	color: #333;
	font-family: inherit;
}

.search-input::placeholder {
	color: #666;
	transition: color 0.3s ease;
}

.search-input:focus::placeholder {
	color: #999;
}

/* Modal Styles */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(5px);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.modal-overlay.active {
	display: flex;
	opacity: 1;
}

.modal-content-search {
	/* background: white;  */
	/* background: url('https://img.freepik.com/free-vector/soft-hexagonal-mosaic-pattern-background_1409-1938.jpg?t=st=1748243746~exp=1748247346~hmac=3e80532…&w=1380');  */
	width: 100%;
	/* max-width: 800px; */
	height: 100%;
	border-radius: 20px;
	padding: 30px;
	position: relative;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
	transform: scale(0.9) translateY(20px);
	transition: transform 0.3s ease;
	overflow-y: scroll
}

.modal-overlay.active .modal-content-search {
	transform: scale(1) translateY(0);
}

.modal-header-search {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1cap;
	padding-bottom: 10px;
	border-bottom: 2px solid #f0f0f0;
}

.modal-title {
	font-size: 24px;
	font-weight: 600;
	color: #333;
	background: #fff;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.close-btn {
	background: linear-gradient(135deg, #667eea, #764ba2);
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 18px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.close-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.modal-search-box {
	width: 100%;
	border: 2px solid #e0e0e0;
	border-radius: 15px;
	padding: 15px 20px;
	font-size: 18px;
	margin-bottom: 30px;
	transition: border-color 0.3s ease;
	background: #f8f9fa;
}

.modal-search-box:focus {
	outline: none;
	border-color: #667eea;
	background: white;
}

.search-suggestions {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 15px;
	margin-top: 20px;
}

.suggestion-item {
	padding: 15px 20px;
	background: linear-gradient(135deg, #f8f9fa, #e9ecef);
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.suggestion-item:hover {
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.suggestion-title {
	font-weight: 600;
	margin-bottom: 5px;
}

.suggestion-desc {
	font-size: 14px;
	opacity: 0.8;
}

/* Animation for placeholder text */
@
keyframes fadeInOut { 0%, 100% {
	opacity: 1;
}

50
 
%
{
opacity
:

			
0
;

	
}
}
.search-input.changing-placeholder {
	animation: fadeInOut 0.5s ease-in-out;
}

/* Form Card Styles */
.form-card {
	background: white;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(249, 115, 22, 0.1);
	overflow: hidden;
	margin-bottom: 30px;
}

.form-header {
	background: linear-gradient(135deg, #ea580c, #f97316);
	color: white;
	padding: 15px 30px;
	margin: 0;
}

.form-header h3 {
	margin: 0;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 10px;
}

.form-body {
	padding: 30px;
}

.form-container {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-row {
	display: grid;
	grid-template-columns: auto 0.5fr 1fr auto auto;
	gap: 2rem;
	align-items: end;
	margin-bottom: 1rem;
}

/* Toggle Switch */
.toggle-switch {
	display: flex;
	background: #f8f9fa;
	border-radius: 12px;
	padding: 4px;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-switch button {
	padding: 12px 20px;
	border: none;
	border-radius: 8px;
	background: transparent;
	color: #6c757d;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	white-space: nowrap;
}

.toggle-switch button.active {
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: white;
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.toggle-switch button:hover:not(.active) {
	background: rgba(102, 126, 234, 0.1);
	color: #667eea;
}

/* Radio Group */
.radio-group {
	background: #f8f9fa;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	padding: 1rem;
	border: 2px solid #e9ecef;
}

.radio-group label {
	display: block;
	font-weight: 600;
	color: #495057;
	margin-bottom: 0.5rem;
	font-size: 14px;
}

.radio-options {
	display: flex;
	gap: 1rem;
}

.radio-option {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.radio-option input[type="radio"] {
	width: 18px;
	height: 18px;
	accent-color: #667eea;
}

.radio-option span {
	font-weight: 500;
	color: #495057;
	font-size: 14px;
}

/* Form Groups */
.form-group {
	display: flex;
	flex-direction: column;
}

.form-label {
	font-weight: 600;
	color: #495057;
	margin-bottom: 0.5rem;
	font-size: 14px;
}

.input-group {
	position: relative;
	display: flex;
	align-items: center;
}

.input-group-text {
	position: absolute;
	/* left: 12px; */
	background: linear-gradient(135deg, #667eea, #764ba2);
	z-index: 2;
	color: #ffffff;
	height: 100%;
	border-radius: 5px 0 0 5px;
	font-size: 19px;
}

.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback)
	{
	margin-left: calc(var(- -bs-border-width)* -1);
	border-top-left-radius: 15;
	border-bottom-left-radius: 15;
}

.form-control-menu {
	width: 100%;
	padding: 12px 12px 12px 12px;
	border: 2px solid #e9ecef;
	border-radius: 12px;
	font-size: 14px;
	background: #f8f9fa;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	min-width: 200px;
}

.form-control-menu:focus {
	outline: none;
	border-color: #667eea;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-control-menu::placeholder {
	color: #adb5bd;
}

/* Buttons */
.button-group {
	display: flex;
	gap: 1rem;
}

.btn-updtd {
	padding: 12px 24px;
	border: none;
	border-radius: 12px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	white-space: nowrap;
}

.btn-go {
	background: linear-gradient(135deg, #28a745, #20c997);
	color: white;
	box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn-go:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.btn-cancel {
	background: linear-gradient(135deg, #dc3545, #e74c3c);
	color: white;
	box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.btn-cancel:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

/* Responsive Design */
@media ( max-width : 1200px) {
	.form-row {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	.radio-options {
		justify-content: center;
	}
	.button-group {
		justify-content: center;
	}
}

@media ( max-width : 768px) {
	body {
		padding: 1rem;
	}
	.form-container {
		padding: 1.5rem;
	}
	.form-row {
		gap: 1rem;
	}
	.toggle-switch {
		justify-content: center;
	}
	.toggle-switch button {
		padding: 10px 16px;
		font-size: 13px;
	}

	/* .form-control {
                min-width: auto;
            } */
}

/* Animation */
.form-container {
	animation: slideUp 0.6s ease-out;
}

@
keyframes slideUp {from { opacity:0;
	transform: translateY(30px);
}

to {
	opacity: 1;
	transform: translateY(0);
}

}
.search-btn {
	padding: 10px 20px;
	font-size: 16px;
	border: none;
	background-color: #1e3a8a;
	color: white;
	border-radius: 6px;
	cursor: pointer;
}

.custom-search-box {
	margin-top: 3px;
	margin-left: 40px;
	width: 230px;
	border: 1px solid #ccc;
	border-radius: 20px;
	padding: 6px 12px;
	display: flex;
	align-items: center;
	background-color: #e2e2e2;
	font-family: Arial, sans-serif;
	font-size: 14px;
	color: #555555;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.search-icon {
	margin-right: 8px;
	font-size: 16px;
}

.search-text {
	white-space: nowrap;
}

.custom-nav {
	display: flex;
	border-bottom: none;
	/* background: #f8f9fa; */
	padding: 10px;
	margin: 0;
	/* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
	font-family: 'Segoe UI', sans-serif;
}

.nav-item {
	position: relative;
	margin-right: 5px;
}

.nav-link-updtd {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 15px;
	font-weight: 600;
	font-size: 14px;
	color: #353535;
	border-radius: 5px 5px 5px 5px;
	background: #e2e2e2;
	transition: background 0.3s;
	text-decoration: none;
	height: 35px;
	min-width: 100%;
}

.nav-link-updtd:hover {
	background: #1e3a8a;
	color: #fff;
}

.nav-link-updtd.active-dropdown {
	background: #1e3a8a;
	color: #fff;
}

.arrow {
	margin-left: 8px;
	font-size: 12px;
	transition: transform 0.3s ease;
}

.nav-item:hover .arrow {
	transform: rotate(180deg);
}

.nav-item:hover>.nav-link-updtd {
	background: #1e3a8a;
	color: #fff;
}

/* --- Dropdown Styling --- */
.dropdown-content {
	display: none;
	position: absolute;
	top: 100%;
	left: 55%;
	transform: translateX(-30%);
	background: #ffffff;
	width: min(50vw, 500px) !important;
	max-width: 100vw;
	max-height: 90vh;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	overflow: auto;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 30px;
	transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
	z-index: 1000;
	box-sizing: border-box;
}

.nav-item:hover .dropdown-content.single-column-dropdown {
	display: flex;
	flex-direction: column;
	width: auto;
	gap: 10px;
}

.single-column-dropdown .dropdown-section {
	width: 100px;
}

/* Make heading links look clickable */
.dropdown-heading-link {
	font-weight: 600;
	font-size: 14px;
	color: #212529;
	text-decoration: none;
	background-color: #f1f3f5;
	padding: 10px 12px;
	border-radius: 6px;
	transition: background-color 0.2s ease;
}

.dropdown-heading-link:hover {
	background-color: #e2e6ea;
}

.nav-item:hover .dropdown-content {
	display: grid;
}

/* --- Section Styling --- */
.dropdown-section {
	min-width: 250px;
}

.dropdown-heading-link {
	font-weight: bold;
	font-size: 14px;
	margin-bottom: 8px;
	color: #333;
	text-decoration: none;
	display: block;
	border-left: 3px solid #1e3a8a;
	padding-left: 10px;
}

.dropdown-heading-link:hover {
	color: #1e3a8a;
}

/* --- Sub Dropdown --- */
.sub-dropdown {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sub-dropdown li {
	text-align: left;
	margin: 5px 0;
}

.sub-dropdown a {
	font-size: 12px;
	color: #555;
	text-decoration: none;
	padding-left: 10px;
	display: block;
	transition: color 0.2s ease;
}

.sub-dropdown a:hover {
	color: #1e3a8a;
	text-decoration: underline;
}

/* --- Responsive Adjustments --- */
@media ( max-width : 900px) {
	.dropdown-content {
		left: 0;
		transform: none;
		width: 95vw;
	}
}

.source-text {
	font-size: 14px;
	color: #6c757d;
	/* Subtle gray for less prominence */
	margin-top: 10px;
	font-style: italic;
}

.source-text strong {
	color: #343a40;
	/* Darker color for label */
	font-style: normal;
}

span.datasource-text {
	font-size: 14px;
	color: #6c757d;
	margin-top: 10px;
	font-style: italic;
}

.modern-footer {
	background: linear-gradient(135deg, #cacaca 0%, #e9ecef 100%);
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	position: relative;
	overflow: hidden;
}

.modern-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, rgba(108, 92, 231, 0.1) 0%,
		rgba(0, 0, 0, 0) 100%);
	z-index: 1;
}

.footer-content {
	position: relative;
	z-index: 2;
}

.footer-logo {
	font-size: 1.8rem;
	font-weight: 700;
	color: #2d3436;
	text-decoration: none;
}

.footer-title {
	color: #2d3436;
	font-weight: 600;
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	position: relative;
	display: inline-block;
}

.footer-title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, #6c5ce7, transparent);
}

.contact-info {
	list-style: none;
	padding: 0;
}

.contact-info li {
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 10px;
}

.contact-info i {
	color: #6c5ce7;
	width: 20px;
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #2d3436;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.social-icon:hover {
	transform: translateY(-3px);
	color: #6c5ce7;
	box-shadow: 0 5px 15px rgba(108, 92, 231, 0.2);
}

.quick-links {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	padding: 0;
	list-style: none;
}

.quick-links a {
	color: #2d3436;
	text-decoration: none;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 5px;
}

.quick-links a:hover {
	color: #6c5ce7;
	transform: translateX(5px);
}

.quick-links a::before {
	content: '→';
	opacity: 0;
	transition: all 0.3s ease;
}

.quick-links a:hover::before {
	opacity: 1;
}

.newsletter-input {
	border: none;
	padding: 0.8rem;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.btn-subscribe {
	background: linear-gradient(45deg, #6c5ce7, #a363d9);
	border: none;
	box-shadow: 0 2px 10px rgba(108, 92, 231, 0.2);
	padding: 0.8rem 2rem;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.btn-subscribe:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.footer-bottom {
	background: #1a365d;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-bottom p {
	margin: 0;
	color: #ffffff;
}

.footer-bottom a {
	color: #f0ff4e;
	text-decoration: none;
}

.footer-bottom a:hover {
	text-decoration: underline;
}

@media ( max-width : 768px) {
	.quick-links {
		grid-template-columns: 1fr;
	}
}

.page-indicator {
	display: flex;
	align-items: center;
	justify-content: center;
	/* margin: 20px auto; */
	position: sticky;
	top: 0;
	background: white;
	padding: 5px 0;
	z-index: 10;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.progress-container {
	display: flex;
	align-items: center;
	position: relative;
	justify-content: space-around;
	width: 100%;
}

/* Connecting line */
.progress-line {
	position: absolute;
	top: 50%;
	left: 25px;
	right: 25px;
	height: 3px;
	background-color: #e0e0e0;
	z-index: 1;
	transform: translateY(-50%);
	border-radius: 2px;
}

.progress-line-fill {
	height: 100%;
	background: linear-gradient(90deg, #388e3c, #4caf50);
	width: 0%;
	transition: width 0.6s ease;
	border-radius: 2px;
}

.step {
	width: 20px;
	height: 20px;
	border: 3px solid #e0e0e0;
	border-radius: 50%;
	background-color: white;
	color: #666;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.4s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	position: relative;
	z-index: 2;
	margin: 0 15px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step:hover {
	transform: scale(1.1);
	box-shadow: 0 4px 15px rgba(0, 51, 102, 0.3);
}

.step.active {
	border-color: #003366;
	background-color: #003366;
	color: white;
	transform: scale(1.05);
}

.step.completed {
	background: linear-gradient(135deg, #4caf50, #388e3c);
	color: white;
	border-color: #388e3c;
	position: relative;
}

.step.completed::after {
	content: '✓';
	position: absolute;
	font-size: 14px;
	font-weight: normal;
	opacity: 0.9;
}

.step.completed .step-number {
	display: none;
}

/* Section styling for demo */
.scroll-section {
	height: 100vh;
	padding: 100px 20px;
	border-bottom: 1px solid #ccc;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.scroll-section:nth-child(odd) {
	background-color: #f8f9fa;
}

.scroll-section h2 {
	margin: 0;
	color: #333;
}

/* Responsive design */
@media ( max-width : 768px) {
	.step {
		width: 40px;
		height: 40px;
		margin: 0 10px;
		font-size: 14px;
	}
	.progress-line {
		left: 20px;
		right: 20px;
	}
	.page-indicator {
		padding: 10px 0;
	}
}

.card-container-menu {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 25px;
	margin-top: 30px;
}

.trade-card {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	cursor: pointer;
	position: relative;
	height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.trade-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.trade-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%,
		rgba(0, 0, 0, 0.7) 100%);
	transition: opacity 0.3s ease;
}

.trade-card:hover::before {
	opacity: 0.8;
}

.card-content {
	position: relative;
	z-index: 2;
	padding: 20px;
	color: white;
}

.card-title {
	font-size: 17px;
	font-weight: 600;
	color: white;
	margin-bottom: 4px;
	line-height: 1.2;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card-subtitle {
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
	font-size: 16px;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.demo-badge {
	background: #28a745;
}

.loading {
	display: none;
	text-align: center;
	margin: 40px 0;
}

.loading.show {
	display: block;
}

.spinner {
	border: 4px solid #f3f3f3;
	border-top: 4px solid #1e3a8a;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 1s linear infinite;
	margin: 0 auto 20px;
}

@
keyframes spin { 0% {
	transform: rotate(0deg);
}

100
 
%
{
transform
:

			
rotate
(
360deg
)
;

	
}
}
.section-title {
	font-size: 24px;
	font-weight: 700;
	color: #333;
	margin-bottom: 20px;
	text-align: center;
}

@media ( max-width : 768px) {
	.form-row {
		gap: 20px;
	}
	.radio-options {
		flex-direction: column;
		gap: 15px;
		align-items: center;
	}
	.button-group {
		flex-direction: column;
	}
	.toggle-switch {
		width: 100%;
	}
	.toggle-switch button {
		flex: 1;
		justify-content: center;
	}
}

.tweet-card {
	border: 1px solid #e1e8ed;
	border-radius: 8px;
	padding: 12px;
	margin-bottom: 16px;
	background: white;
	transition: all 0.2s ease;
	height: 100%;
}

.tweet-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.tweet-header {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
}

.tweet-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	margin-right: 8px;
	object-fit: cover;
}

.tweet-author {
	font-weight: 600;
	color: #14171a;
	margin: 0;
	font-size: 12px;
}

.tweet-handle {
	color: #657786;
	font-size: 10px;
	margin: 0;
}

.tweet-content {
	color: #14171a;
	line-height: 1.3;
	margin-bottom: 8px;
	font-size: 14px;
}

.tweet-image {
	width: 100%;
	border-radius: 4px;
	margin-bottom: 8px;
	max-height: 120px;
	object-fit: cover;
}

.tweet-link {
	color: #1da1f2;
	text-decoration: none;
	font-size: 16px;
}

.tweet-link:hover {
	text-decoration: underline;
}

.section-header {
	background: linear-gradient(135deg, #ff9933, #ff6600);
	color: white;
	padding: 20px;
	border-radius: 8px;
	margin-bottom: 24px;
	text-align: center;
}

.section-title {
	margin: 0;
	font-size: 24px;
	font-weight: 600;
}

.section-subtitle {
	margin: 8px 0 0 0;
	opacity: 0.9;
	font-size: 14px;
}

.tweets-container {
	max-width: auto;
	margin: 0 auto;
}

.logo {
	padding: 0px;
	width: 260px;
}
/* --- Public header spacing fix ---------------------------------------------
   The shared theme script (assets/js/misc.js) adds Bootstrap `pt-5` (3rem
   top padding) and `mt-3` (1rem top margin) to the navbar as an offset for
   the admin "pro banner". Public pages have no pro banner, so that offset just
   makes the header look too tall/spacy. Neutralise it here (higher specificity
   than the .pt-5/.mt-3 utilities so it wins without editing the shared JS). */
nav.navbar.pt-5 { padding-top: 0.5rem !important; }
nav.navbar.mt-3 { margin-top: 0 !important; }
