/*
Theme Name: Urdu Forex Guide Theme
Theme URI: https://urduforexguide.com/
Author: Antigravity Team
Author URI: https://urduforexguide.com/
Description: Premium Urdu Forex & Financial Trading Portal WordPress Theme. Features native RTL support, Urdu fonts (Noto Nastaliq Urdu & Noto Sans Arabic), built-in Pivot Points Calculator, Live Forex Signals, Page Composer engine, 6-Step Learning Roadmap, and responsive financial portal layouts matching urduforexguide.com.
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: urdu-forex-theme
Tags: rtl-language-support, news, financial, forex, custom-menu, featured-images, custom-widgets, right-sidebar, two-columns, grid-layout
*/

/* ==========================================================================
   CSS Design Tokens & Theme Variables
   ========================================================================== */
:root {
  /* Color Palette - Financial Premium Dark & Light */
  --primary-navy: #0f172a;
  --primary-dark: #1e293b;
  --accent-blue: #2563eb;
  --accent-blue-hover: #1d4ed8;
  --emerald-green: #059669;
  --emerald-light: #ecfdf5;
  --emerald-border: #a7f3d0;
  --amber-gold: #f39c12;
  --amber-hover: #e67e22;
  --amber-light: #fffbeb;
  --crimson-red: #dc2626;
  --crimson-light: #fef2f2;
  
  /* Category Title Box Color from reference website */
  --cat-box-bg: #d8ead7;
  --cat-title-text: #1e0a62;
  
  /* Surface & Background Colors */
  --bg-page: #f8fafc;
  --bg-surface: #ffffff;
  --bg-muted: #f1f5f9;
  --bg-header: #0b1329;
  --bg-topbar: #070d1e;
  
  /* Text Colors */
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  --border-color: #e2e8f0;
  --border-dark: #334155;
  
  /* Shadows & Elevation */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  
  /* Font Families */
  --font-urdu-heading: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaliq', 'Mehr Nastaliq', 'NafeesWeb', Tahoma, serif;
  --font-urdu-body: 'Noto Sans Arabic', 'Segoe UI', Tahoma, Arial, sans-serif;
  --font-english: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Radius & Transitions */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  direction: rtl;
  text-align: right;
}

body {
  font-family: var(--font-urdu-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-main);
  background-color: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-blue-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.site-main-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 1.75rem;
  margin-top: 1.75rem;
  margin-bottom: 3rem;
}

@media (max-width: 992px) {
  .site-main-layout {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Header Section
   ========================================================================== */
.top-bar {
  background-color: var(--bg-topbar);
  color: var(--text-light);
  font-size: 0.825rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-ticker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ticker-badge {
  background-color: var(--crimson-red);
  color: var(--text-white);
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.75rem;
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar-links a {
  color: var(--text-light);
  font-size: 0.85rem;
}

.main-header {
  background-color: var(--bg-header);
  color: var(--text-white);
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.site-branding {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header-logo-link {
  display: block;
  width: 100%;
  text-align: center;
}

.header-logo-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.custom-logo-link {
  display: block;
  width: 100%;
  text-align: center;
}

.custom-logo-link img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.site-logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2563eb 0%, #059669 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
}

.site-title-group h1 {
  font-family: var(--font-urdu-heading);
  font-size: 1.8rem;
  line-height: 1.2;
  color: var(--text-white);
}

.site-tagline {
  font-size: 0.85rem;
  color: var(--emerald-border);
}

/* Primary Sticky Navigation & Category Dropdown Navbar */
.main-navigation,
.post-header-navbar {
  background-color: var(--primary-navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
  padding: 0;
  width: 100%;
  direction: rtl;
  font-family: var(--font-urdu-heading), var(--font-urdu-body), 'Noto Sans Arabic', Tahoma, sans-serif;
}

.post-header-navbar .container-fluid,
.nav-container {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.post-header-navbar .navbar-collapse {
  width: 100%;
}

.post-header-navbar .navbar-nav,
.nav-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
}

.post-header-navbar .nav-link,
.nav-menu a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.85rem 1.15rem;
  color: #e2e8f0;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.post-header-navbar .dropdown-toggle::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.75rem;
  margin-right: 0.45rem;
  margin-left: 0;
  border: none !important;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.2s ease;
}

.post-header-navbar .nav-item {
  position: relative;
}

.post-header-navbar .nav-item:hover > .dropdown-toggle::after,
.post-header-navbar .nav-item.show > .dropdown-toggle::after {
  transform: rotate(180deg);
}

.post-header-navbar .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  min-width: 290px;
  max-width: 400px;
  max-height: 400px;
  overflow-y: auto;
  background-color: #0b1523;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 3px solid var(--accent-emerald);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  padding: 0.35rem 0;
  margin: 0;
  list-style: none;
  z-index: 1050;
}

.post-header-navbar .dropdown-menu::-webkit-scrollbar {
  width: 5px;
}

.post-header-navbar .dropdown-menu::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

.post-header-navbar .dropdown-menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
}

.post-header-navbar .dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: var(--accent-emerald);
}

.post-header-navbar .dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 0;
  left: 0;
  height: 8px;
}

@media (min-width: 992px) {
  .post-header-navbar .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    animation: fadeInMenu 0.2s ease-in-out;
  }
}

.post-header-navbar .dropdown-menu.show {
  display: block;
}

@keyframes fadeInMenu {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.post-header-navbar .dropdown-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0.3rem 0;
  list-style: none;
}

.post-header-navbar .dropdown-cat-all {
  color: #a7f3d0;
  background-color: rgba(5, 150, 105, 0.12);
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.post-header-navbar .dropdown-cat-all:hover {
  background-color: var(--accent-emerald);
  color: #ffffff;
}

.post-header-navbar .dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  color: #cbd5e1;
  font-family: var(--font-urdu-body), 'Noto Sans Arabic', Tahoma, sans-serif;
  font-size: 0.92rem;
  line-height: 1.6;
  text-decoration: none;
  white-space: normal;
  transition: var(--transition-fast);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: right;
  word-break: break-word;
}

.post-header-navbar .dropdown-item-icon {
  font-size: 0.75rem;
  color: var(--accent-emerald);
  opacity: 0.8;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.post-header-navbar .dropdown-item:last-child {
  border-bottom: none;
}

.post-header-navbar .dropdown-item:hover {
  background-color: rgba(5, 150, 105, 0.2);
  color: #ffffff;
  padding-right: 1.35rem;
}

.post-header-navbar .dropdown-item:hover .dropdown-item-icon {
  transform: translateX(-3px);
  opacity: 1;
}

.post-header-navbar .navbar-brand {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0;
}

.nav-menu li.current-menu-item a,
.nav-menu a:hover,
.post-header-navbar .nav-link:hover,
.post-header-navbar .nav-item:hover > .nav-link {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
}

.navbar-toggler,
.mobile-nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.25rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin: 0.5rem 0;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

@media (max-width: 991.98px) {
  .navbar-toggler,
  .mobile-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .post-header-navbar .navbar-collapse.collapse:not(.show) {
    display: none;
  }

  .post-header-navbar .navbar-collapse.show {
    display: block;
  }

  .post-header-navbar .navbar-nav,
  .nav-menu {
    display: flex;
    width: 100%;
    flex-direction: column;
    background-color: var(--primary-dark);
    padding: 0.75rem 0;
  }

  .post-header-navbar .dropdown-menu {
    position: static !important;
    display: none;
    max-height: none;
    background-color: rgba(0, 0, 0, 0.25);
    border: none;
    border-right: 3px solid var(--accent-emerald);
    box-shadow: none;
    padding: 0.25rem 0.5rem;
    margin: 0.25rem 0;
    width: 100%;
  }

  .post-header-navbar .dropdown-menu.show {
    display: block !important;
  }

  .nav-menu {
    display: none;
  }
  .nav-menu.active { display: flex; }
}

/* ==========================================================================
   Page Composer Category Box Styling (urduforexguide.com exact style)
   ========================================================================== */
.cat-box {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-bottom: 1.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.cat-box-title {
  background-color: var(--cat-box-bg);
  padding: 10px 14px;
  border-bottom: 2px solid #b7e4b5;
  direction: rtl;
}

.cat-box-title h2 {
  font-family: var(--font-urdu-heading);
  font-size: 24px;
  line-height: 1.3;
  color: var(--cat-title-text);
  margin: 0;
}

.cat-box-content {
  padding: 1.25rem;
}

/* Read More Orange Button */
.btn-read-more {
  background-color: var(--amber-gold);
  color: #ffffff !important;
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: bold;
  display: inline-block;
  margin-top: 0.75rem;
  transition: background-color var(--transition-fast);
}

.btn-read-more:hover {
  background-color: var(--amber-hover);
  color: #ffffff !important;
}

/* Block 1: 6-Step Learning Box */
.steps-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 640px) {
  .steps-grid-container {
    grid-template-columns: 1fr;
  }
}

.step-box-item {
  background-color: var(--bg-muted);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.step-box-item:hover {
  transform: translateY(-2px);
  border-color: var(--emerald-green);
  background-color: var(--emerald-light);
}

.step-badge {
  background-color: var(--emerald-green);
  color: #ffffff;
  font-size: 0.75rem;
  padding: 2px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.step-box-item h3 {
  font-family: var(--font-urdu-heading);
  font-size: 1.15rem;
  color: var(--primary-navy);
  line-height: 1.3;
}

/* Split Layout (Featured left/right + Thumb list) */
.split-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .split-layout {
    grid-template-columns: 1fr;
  }
}

.main-featured-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}

.post-box-title {
  font-family: var(--font-urdu-heading);
  font-size: 1.3rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.post-box-title a {
  color: var(--primary-navy);
}

.post-box-title a:hover {
  color: var(--accent-blue);
}

.post-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Thumb List */
.thumb-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.thumb-list li {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed var(--border-color);
}

.thumb-list li:last-child {
  border-bottom: none;
}

.thumb-list img {
  width: 70px;
  height: 55px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.thumb-list a {
  font-family: var(--font-urdu-heading);
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--text-main);
}

.thumb-list.compact li {
  padding-bottom: 0.5rem;
}

/* Block 3: Islamic Brokers Banner Cards */
.brokers-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .brokers-banner-grid {
    grid-template-columns: 1fr;
  }
}

.broker-banner-card {
  background: linear-gradient(135deg, #f8fafc 0%, #ecfdf5 100%);
  border: 1px solid var(--emerald-border);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  position: relative;
}

.broker-badge {
  display: inline-block;
  background-color: var(--emerald-green);
  color: #fff;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
}

.broker-banner-card h4 {
  font-family: var(--font-english);
  font-size: 1.1rem;
  color: var(--primary-navy);
  margin-bottom: 0.4rem;
}

.broker-banner-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

/* Block 4: Important News Highlight */
.news-highlight-card {
  background-color: var(--amber-light);
  border: 1px solid #fef3c7;
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.news-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.news-sub-item {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.news-sub-item img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.news-sub-item h4 a {
  font-family: var(--font-urdu-heading);
  font-size: 1rem;
  color: var(--text-main);
}

/* Block 5: Featured Slider Banner */
.featured-slider-banner {
  position: relative;
  background: linear-gradient(135deg, #0b1329 0%, #1e293b 100%);
  border-radius: var(--radius-sm);
  padding: 2.5rem 2rem;
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.slider-content-overlay h2 {
  font-family: var(--font-urdu-heading);
  font-size: 1.8rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.slider-content-overlay p {
  font-size: 0.95rem;
  color: #cbd5e1;
}

.slider-dots-nav {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.slider-dots-nav .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.slider-dots-nav .dot.active {
  background-color: var(--amber-gold);
  width: 24px;
  border-radius: 5px;
}

/* Block 6: 2-Column Half Width Row */
.two-columns-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .two-columns-row {
    grid-template-columns: 1fr;
  }
}

/* Block 7: Category Tabs Navigation */
.cat-box-title.tabbed-title {
  padding: 0;
  background-color: var(--cat-box-bg);
}

.composer-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 2px solid #b7e4b5;
}

.composer-tabs-nav .tab-item {
  padding: 10px 16px;
  font-family: var(--font-urdu-heading);
  font-size: 1.05rem;
  color: var(--cat-title-text);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all var(--transition-fast);
}

.composer-tabs-nav .tab-item:hover,
.composer-tabs-nav .tab-item.active {
  background-color: #ffffff;
  color: var(--primary-navy);
  border-bottom-color: var(--amber-gold);
  font-weight: bold;
}

/* Block 8: Recent Posts Horizontal Grid */
.recent-posts-horizontal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 600px) {
  .recent-posts-horizontal-grid {
    grid-template-columns: 1fr;
  }
}

.recent-grid-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
}

.recent-grid-card h4 a {
  font-family: var(--font-urdu-heading);
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--text-main);
}

/* Payment Icons in Deposit Block */
.payment-icon {
  font-family: var(--font-english);
  font-size: 0.75rem;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  color: #fff;
  flex-shrink: 0;
}

.payment-icon.jazzcash { background-color: #d97706; }
.payment-icon.skrill { background-color: #818cf8; }
.payment-icon.neteller { background-color: #10b981; }
.payment-icon.paypal { background-color: #2563eb; }

/* Sidebar Widgets */
.widget-box {
  background-color: var(--bg-surface);
  border-radius: var(--radius-sm);
  padding: 1.15rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.widget-title-header {
  font-family: var(--font-urdu-heading);
  font-size: 1.25rem;
  color: var(--primary-navy);
  padding-bottom: 0.5rem;
  margin-bottom: 0.85rem;
  border-bottom: 2px solid var(--emerald-green);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Footer Section */
.site-footer {
  background-color: var(--bg-header);
  color: #94a3b8;
  padding-top: 3rem;
  border-top: 4px solid var(--emerald-green);
}

.footer-widgets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-bottom: 2rem;
}

@media (max-width: 900px) {
  .footer-widgets-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 550px) {
  .footer-widgets-grid { grid-template-columns: 1fr; }
}

.footer-widget h4 {
  font-family: var(--font-urdu-heading);
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widget ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-widget a {
  color: #cbd5e1;
  font-size: 0.85rem;
}

.footer-disclaimer-box {
  background-color: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
  color: #64748b;
}

.sub-footer {
  background-color: var(--bg-topbar);
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}

.sub-footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.back-to-top {
  background-color: var(--emerald-green);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
