/* Header Navigation */
.navbar-custom {
  background-color: #0b33b5;
  padding: 0.6rem 1rem;
}

.navbar-custom .navbar-brand {
  background: #fff;
  color: #000;
  font-weight: 700;
  padding: 0.6rem 2rem;
  border-radius: 2px;
  font-size: 1.1rem;
}

.navbar-custom .nav-link {
  color: #fff !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
}

.navbar-custom .nav-link:hover,
.navbar-custom .dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.navbar-custom .dropdown-menu {
  background-color: #fff;
  border-radius: 0;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar-custom .dropdown-item {
  color: #000;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

/* Advertisement Section */
.ad-section {
  background: #f7f7f7;
  padding: 20px 0;
  text-align: center;
}

.ad-box {
  background: #fff;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.ad-box img {
  width: 100%;
  height: auto;
  display: block;
}

.ad-label {
  font-size: 0.8rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .navbar-custom .navbar-brand {
    padding: 0.5rem 1rem;
  }

  .navbar-custom .nav-link {
    padding: 0.6rem 1rem;
  }
}

/* Breadcrumb */
.breadcrumb-section {
  background: #f5f5f5;
  padding: 12px 0;
  font-size: 0.9rem;
}

.breadcrumb-section a {
  color: #666;
  text-decoration: none;
}

.breadcrumb-section a:hover {
  color: #0b33b5;
}

.breadcrumb-section span {
  color: #333;
  font-weight: 500;
}

/* Main Content */
.content-section {
  padding: 40px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.section-description {
  color: #333;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 35px;
}

/* Info Cards */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2px;
  margin-bottom: 50px;
}

.info-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.info-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.info-card-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 8px;
}

.info-card-content h6 {
  font-size: 0.75rem;
  color: #666;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-card-content p {
  font-size: 0.9rem;
  color: #000;
  font-weight: 600;
  margin: 0;
}

.info-card-content .positive {
  color: #28a745;
}

/* News Section */
.news-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
  padding-bottom: 0;
  background: #f5f5f5;
  padding: 15px 20px;
}

.news-container {
  background: #f5f5f5;
  padding: 30px 20px;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

/* Large Featured Card (spans 1 column, 2 rows) */
.news-card-large {
  grid-row: span 2;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.news-card-large:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.news-card-large .news-card-img {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.news-card-large .news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card-large:hover .news-card-img img {
  transform: scale(1.05);
}

.news-card-large .news-card-body {
  padding: 25px;
  flex: 1;
  display: flex;
  align-items: center;
}

.news-card-large .news-card-body h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  margin: 0;
  line-height: 1.4;
}

.news-card-large .news-card-body h5 a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-card-large .news-card-body h5 a:hover {
  color: #0b33b5;
}

/* Small News Cards */
.news-card-small {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.news-card-small:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.news-card-small .news-card-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.news-card-small .news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card-small:hover .news-card-img img {
  transform: scale(1.05);
}

.news-card-small .news-card-body {
  padding: 20px;
  flex: 1;
}

.news-card-small .news-card-body h6 {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  margin: 0;
  line-height: 1.4;
}

.news-card-small .news-card-body h6 a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-card-small .news-card-body h6 a:hover {
  color: #0b33b5;
}

/* Label on images */
.image-label {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.95);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 1200px) {
  .info-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .news-card-large {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .info-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card-large {
    grid-column: span 1;
  }
}

/* View More Section */
.view-more-section {
  background: #f5f5f5;
  padding: 20px 0 30px;
}

.view-more-link {
  text-align: right;
  margin-bottom: 20px;
}

.view-more-link a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.view-more-link a:hover {
  color: #0b33b5;
}

.view-more-link a::after {
  content: '›';
  font-size: 1.3rem;
  font-weight: 700;
}

/* Advertisement Banner */
.ad-banner {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 60px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.ad-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  gap: 5px;
}

.ad-badge span {
  background: #4CAF50;
  color: #fff;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.ad-content {
  flex: 1;
  text-align: center;
  padding-right: 40px;
}

.ad-content h2 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
}

.ad-content .highlight {
  color: #ff3333;
}

.ad-btn {
  background: #ff3333;
  color: #fff;
  border: none;
  padding: 15px 45px;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 51, 51, 0.4);
}

.ad-btn:hover {
  background: #e60000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 51, 51, 0.6);
}

.ad-image {
  flex-shrink: 0;
}

.ad-image img {
  width: 280px;
  height: auto;
  filter: brightness(0.95);
}

.ad-logo {
  position: absolute;
  bottom: 20px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ad-logo-icon {
  width: 35px;
  height: 35px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ad-logo-text {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  font-style: italic;
}

@media (max-width: 992px) {
  .ad-banner {
    flex-direction: column;
    padding: 40px 30px;
    text-align: center;
  }

  .ad-content {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .ad-content h2 {
    font-size: 2rem;
  }

  .ad-image img {
    width: 220px;
  }

  .ad-logo {
    position: static;
    margin-top: 20px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .ad-content h2 {
    font-size: 1.5rem;
  }

  .ad-btn {
    padding: 12px 35px;
    font-size: 1.1rem;
  }

  .ad-image img {
    width: 180px;
  }
}

/* Gold Forex Section */
.gold-forex-section {
  background: #f5f5f5;
  padding: 40px 0;
}

.section-header {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Country Tabs */
.country-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 0;
  border-bottom: none;
  background: transparent;
}

.country-tab {
  background: transparent;
  border: none;
  color: #000;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.country-tab:hover {
  background: rgba(0, 0, 0, 0.05);
}

.country-tab.active {
  border-bottom-color: #0b33b5;
  color: #0b33b5;
  font-weight: 700;
}

/* Main Content Grid */
.forex-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  margin-top: -1px;
}

/* Sidebar Menu */
.forex-sidebar {
  background: #f8f9fa;
  border-right: 1px solid #e0e0e0;
}

.forex-menu-item {
  padding: 18px 25px;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  color: #000;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.forex-menu-item:hover {
  background: #e9ecef;
}

.forex-menu-item.active {
  background: #0b33b5;
  color: #fff;
  font-weight: 600;
}

.forex-menu-item .arrow {
  font-size: 1.2rem;
  font-weight: 700;
}

/* Main Content Area */
.forex-main-content {
  padding: 30px 40px;
}

.content-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.content-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 8px;
}

.content-date {
  color: #666;
  font-size: 0.9rem;
}

.live-badge {
  background: #ff3333;
  color: #fff;
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.content-updated {
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 25px;
}

/* Exchange Rate Table */
.exchange-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.exchange-table thead {
  background: #1a2332;
}

.exchange-table thead th {
  color: #fff;
  padding: 15px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: capitalize;
}

.exchange-table tbody tr {
  border-bottom: 1px solid #e0e0e0;
  transition: background 0.2s ease;
}

.exchange-table tbody tr:hover {
  background: #f8f9fa;
}

.exchange-table tbody td {
  padding: 18px 20px;
  color: #333;
  font-size: 0.9rem;
}

.currency-name {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0b33b5;
  font-weight: 600;
}

.currency-flag {
  width: 24px;
  height: 18px;
  border-radius: 2px;
}

.currency-code {
  color: #666;
  font-size: 0.85rem;
}

.rate-value {
  font-weight: 600;
  color: #000;
}

.rate-details {
  color: #666;
  font-size: 0.85rem;
  margin-top: 2px;
}

/* Footer Notes */
.exchange-notes {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.note-text {
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 8px;
  line-height: 1.6;
}

.note-text::before {
  content: '* ';
  color: #ff3333;
}

.provider-section {
  margin-top: 20px;
}

.provider-label {
  color: #999;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.provider-logo img {
  height: 35px;
  width: auto;
}

@media (max-width: 992px) {
  .forex-content {
    grid-template-columns: 1fr;
  }

  .forex-sidebar {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }

  .country-tabs {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .forex-main-content {
    padding: 20px;
  }

  .exchange-table {
    font-size: 0.85rem;
  }

  .exchange-table thead th,
  .exchange-table tbody td {
    padding: 12px 10px;
  }
}

/* Forex Updates Section*/
.forex-updates-wrapper {
  background: #fff;
  padding: 40px 0;
}

.forex-updates-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
}

/* Forex Currency Table*/
.forex-currency-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.forex-currency-table thead {
  background: #3d3d3d;
}

.forex-currency-table thead th {
  color: #fff;
  padding: 15px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.forex-currency-table thead th:first-child {
  text-align: left;
}

.forex-currency-table thead th:nth-child(2) {
  text-align: center;
}

.forex-currency-table thead th:nth-child(3),
.forex-currency-table thead th:nth-child(4) {
  text-align: right;
}

.forex-currency-table tbody tr {
  border-bottom: 1px solid #e0e0e0;
  transition: background 0.2s ease;
}

.forex-currency-table tbody tr:hover {
  background: #f8f9fa;
}

.forex-currency-table tbody td {
  padding: 16px 20px;
  font-size: 0.95rem;
}

.forex-currency-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.forex-flag-icon {
  width: 24px;
  height: 18px;
  border-radius: 2px;
  border: 1px solid #ddd;
}

.forex-currency-label {
  color: #000;
  font-weight: 600;
  font-size: 0.95rem;
}

.forex-symbol-col {
  text-align: center;
  color: #000;
  font-weight: 600;
}

.forex-buying-col {
  text-align: right;
  color: #8B2500;
  font-weight: 700;
  font-size: 1rem;
}

.forex-selling-col {
  text-align: right;
  color: #0b33b5;
  font-weight: 700;
  font-size: 1rem;
}

/* Forex Action Buttons*/
.forex-button-group {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.forex-action-button {
  background: #fff;
  border: 2px solid #ddd;
  color: #000;
  padding: 12px 25px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.forex-action-button:hover {
  border-color: #0b33b5;
  color: #0b33b5;
  background: #f8f9fa;
}

.forex-action-button::after {
  content: '›';
  font-size: 1.2rem;
  font-weight: 700;
}

/* Gold and Silver Section*/
.precious-metals-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
}

.precious-metals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.metal-rate-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.metal-rate-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.metal-rate-header {
  padding: 15px 20px;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.metal-rate-header.gold-per-ounce {
  background: #3d3d3d;
}

.metal-rate-header.gold-per-tola {
  background: #0033ff;
}

.metal-rate-header.silver-rate {
  background: #990000;
}

.metal-rate-content {
  padding: 25px 20px;
  text-align: center;
  background: #f8f9fa;
}

.metal-price-value {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.metal-price-description {
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
}

/* More Precious Metals Link */
.precious-metals-more-link {
  text-align: right;
  margin-top: 15px;
}

.precious-metals-more-link a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.precious-metals-more-link a:hover {
  color: #0b33b5;
}

.precious-metals-more-link a::after {
  content: '›';
  font-size: 1.2rem;
  font-weight: 700;
}

@media (max-width: 992px) {
  .precious-metals-grid {
    grid-template-columns: 1fr;
  }

  .forex-currency-table {
    font-size: 0.85rem;
  }

  .forex-currency-table thead th,
  .forex-currency-table tbody td {
    padding: 12px 10px;
  }
}

@media (max-width: 768px) {
  .forex-button-group {
    flex-direction: column;
  }

  .forex-action-button {
    width: 100%;
    justify-content: center;
  }
}

/* Prize Bonds Draw Section*/
.prize-bonds-wrapper {
  background: #fff;
  padding: 40px 0;
}

.prize-bonds-main-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
}

/* Prize Bonds Schedule Table*/
.prize-bonds-schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.prize-bonds-table-header {
  background: #3d3d3d;
}

.prize-bonds-table-header th {
  color: #fff;
  padding: 15px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.prize-bonds-table-body tr {
  border-bottom: 1px solid #e0e0e0;
  transition: background 0.2s ease;
}

.prize-bonds-table-body tr:hover {
  background: #f8f9fa;
}

.prize-bonds-table-body td {
  padding: 16px 20px;
  font-size: 0.9rem;
  text-align: center;
  color: #333;
}

.prize-bonds-draw-number {
  color: #000;
  font-weight: 600;
}

.prize-bonds-amount {
  color: #000;
  font-weight: 700;
}

.prize-bonds-status-upcoming {
  color: #666;
  font-weight: 500;
}

.prize-bonds-status-held {
  color: #dc3545;
  font-weight: 600;
  cursor: pointer;
}

.prize-bonds-status-held:hover {
  text-decoration: underline;
}

.prize-bonds-view-result {
  display: block;
  font-size: 0.75rem;
  color: #666;
  margin-top: 2px;
}

/* Prize Bonds Action Buttons*/
.prize-bonds-actions-group {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.prize-bonds-action-btn {
  background: #fff;
  border: 2px solid #ddd;
  color: #000;
  padding: 12px 25px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.prize-bonds-action-btn:hover {
  border-color: #0b33b5;
  color: #0b33b5;
  background: #f8f9fa;
}

.prize-bonds-action-btn::after {
  content: '›';
  font-size: 1.2rem;
  font-weight: 700;
}

/* PSX 100 INDEX Section*/
.psx-index-wrapper {
  margin-bottom: 40px;
}

.psx-index-main-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

/* PSX Ticker*/
.psx-ticker-scroll {
  background: #f8f9fa;
  padding: 12px 0;
  margin-bottom: 25px;
  overflow: hidden;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.psx-ticker-content {
  display: flex;
  gap: 30px;
  animation: psx-scroll-ticker 30s linear infinite;
  white-space: nowrap;
}

.psx-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #333;
}

.psx-ticker-label {
  font-weight: 600;
  color: #000;
}

.psx-ticker-positive {
  color: #28a745;
  font-weight: 600;
}

.psx-ticker-negative {
  color: #dc3545;
  font-weight: 600;
}

@keyframes psx-scroll-ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* PSX Market Highlights Container*/
.psx-highlights-container {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.psx-highlights-header {
  background: #3d3d3d;
  color: #fff;
  padding: 15px 25px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.psx-highlights-body {
  padding: 30px;
  background: #fafafa;
  position: relative;
}

/* PSX Watermark Logo */
.psx-watermark-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.05;
  font-size: 8rem;
  font-weight: 900;
  color: #000;
  pointer-events: none;
  letter-spacing: 2px;
}

/* PSX Market Data Grid*/
.psx-market-data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  z-index: 1;
}

.psx-data-row {
  display: contents;
}

.psx-data-label {
  padding: 15px 20px;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  color: #333;
  font-weight: 500;
  font-size: 0.95rem;
}

.psx-data-value {
  padding: 15px 20px;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: right;
}

.psx-data-value.psx-value-negative {
  color: #dc3545;
}

/* PSX Action Buttons*/
.psx-actions-group {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.psx-action-btn {
  background: #fff;
  border: 2px solid #ddd;
  color: #000;
  padding: 12px 25px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.psx-action-btn:hover {
  border-color: #0b33b5;
  color: #0b33b5;
  background: #f8f9fa;
}

.psx-action-btn::after {
  content: '›';
  font-size: 1.2rem;
  font-weight: 700;
}

@media (max-width: 992px) {
  .psx-market-data-grid {
    grid-template-columns: 1fr;
  }

  .psx-data-value {
    border-left: none;
    border-top: 1px solid #e0e0e0;
  }

  .prize-bonds-schedule-table {
    font-size: 0.8rem;
  }

  .prize-bonds-schedule-table thead th,
  .prize-bonds-schedule-table tbody td {
    padding: 10px 8px;
  }
}

@media (max-width: 768px) {

  .prize-bonds-actions-group,
  .psx-actions-group {
    flex-direction: column;
  }

  .prize-bonds-action-btn,
  .psx-action-btn {
    width: 100%;
    justify-content: center;
  }

  .psx-watermark-logo {
    font-size: 4rem;
  }
}

/* Gold Rates Section*/
.gold-rates-section-wrapper {
  background: #fff;
  padding: 40px 0 20px;
}

.gold-rates-section-heading {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gold-live-indicator {
  background: #28a745;
  color: #fff;
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gold-rates-date-info {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 5px;
}

.gold-rates-update-time {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 20px;
}

/* Gold Rates Table*/
.gold-rates-data-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  overflow: hidden;
}

.gold-table-header-row {
  background: #1a2332;
}

.gold-table-header-row th {
  color: #fff;
  padding: 15px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: capitalize;
}

.gold-table-header-row th:first-child {
  text-align: left;
  background: #0d1419;
}

.gold-table-data-rows tr {
  border-bottom: 1px solid #e0e0e0;
  transition: background 0.2s ease;
}

.gold-table-data-rows tr:hover {
  background: #f8f9fa;
}

.gold-table-data-rows td {
  padding: 16px 20px;
  font-size: 0.95rem;
  text-align: center;
  color: #000;
  font-weight: 600;
}

.gold-table-data-rows td:first-child {
  text-align: left;
  font-weight: 500;
  color: #333;
  background: #f8f9fa;
}

/* Gold View Link */
.gold-view-history-link {
  display: inline-block;
  color: #0b33b5;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.gold-view-history-link:hover {
  color: #073591;
  text-decoration: underline;
}

/* Gold Provider Info*/
.gold-provider-info {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 15px;
}

/* Gold Country Buttons*/
.gold-country-check-title {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

.gold-country-buttons-group {
  display: flex;
  gap: 10px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.gold-country-button {
  background: #fff;
  border: 2px solid #28a745;
  color: #000;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gold-country-button:hover {
  background: #28a745;
  color: #fff;
}

.gold-country-button::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #28a745;
}

.gold-country-button:hover::before {
  background: #fff;
}

/* Petrol Rates Section*/
.petrol-rates-section-wrapper {
  background: #fff;
  padding: 20px 0 40px;
}

.petrol-rates-section-heading {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.petrol-rates-date-info {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 20px;
}

/* Petrol Rates Table*/
.petrol-rates-data-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  overflow: hidden;
}

.petrol-table-header-row {
  background: #1a2332;
}

.petrol-table-header-row th {
  color: #fff;
  padding: 15px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.petrol-table-header-row th:first-child {
  text-align: left;
  background: #0d1419;
}

.petrol-table-data-rows tr {
  border-bottom: 1px solid #e0e0e0;
  transition: background 0.2s ease;
}

.petrol-table-data-rows tr:hover {
  background: #f8f9fa;
}

.petrol-table-data-rows td {
  padding: 16px 20px;
  font-size: 0.95rem;
  text-align: center;
  color: #000;
  font-weight: 600;
}

.petrol-table-data-rows td:first-child {
  text-align: left;
  font-weight: 500;
  color: #333;
  background: #f8f9fa;
}

.petrol-change-positive {
  color: #dc3545;
  font-weight: 700;
}

.petrol-change-negative {
  color: #28a745;
  font-weight: 700;
}

.petrol-change-arrow {
  font-size: 0.8rem;
  margin-left: 3px;
}

/* Petrol View Link */
.petrol-view-history-link {
  display: inline-block;
  color: #0b33b5;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.petrol-view-history-link:hover {
  color: #073591;
  text-decoration: underline;
}

@media (max-width: 768px) {

  .gold-rates-data-table,
  .petrol-rates-data-table {
    font-size: 0.85rem;
  }

  .gold-rates-data-table th,
  .gold-rates-data-table td,
  .petrol-rates-data-table th,
  .petrol-rates-data-table td {
    padding: 12px 10px;
  }

  .gold-country-buttons-group {
    flex-direction: column;
  }

  .gold-country-button {
    width: 100%;
    justify-content: center;
  }
}

/* International Finance Section*/
.international-finance-wrapper {
  background: #fff;
  padding: 40px;
  margin-bottom: 30px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.intl-finance-heading {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
}

/* International Finance Country Grid*/
.intl-finance-countries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}

.intl-finance-country-item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 4px;
}

.intl-finance-country-item:hover {
  background: #f8f9fa;
}

.intl-finance-flag-icon {
  width: 28px;
  height: 20px;
  border-radius: 2px;
  border: 1px solid #ddd;
  flex-shrink: 0;
}

.intl-finance-country-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: #000;
}

/* Show More Countries Link */
.intl-finance-show-more {
  text-align: right;
}

.intl-finance-show-more a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.intl-finance-show-more a:hover {
  color: #0b33b5;
}

.intl-finance-show-more a::after {
  content: '›';
  font-size: 1.2rem;
  font-weight: 700;
}

/* Bottom Section Grid*/
.calculators-fuel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

/* Finance Calculators Section*/
.finance-calculators-box {
  background: #fff;
  padding: 35px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.finance-calc-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
}

/* Calculator Items Grid*/
.calculator-items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.calculator-single-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
}

.calculator-single-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  border-color: #0b33b5;
}

.calculator-icon-image {
  width: 70px;
  height: 70px;
  object-fit: contain;
  flex-shrink: 0;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 5px;
  background: #fafafa;
}

.calculator-item-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #000;
  line-height: 1.4;
}

/* More Calculators Link */
.more-calculators-link {
  text-align: right;
}

.more-calculators-link a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.more-calculators-link a:hover {
  color: #0b33b5;
}

.more-calculators-link a::after {
  content: '›';
  font-size: 1.2rem;
  font-weight: 700;
}

/* Fuel Price Section*/
.fuel-price-box {
  background: #fff;
  padding: 35px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.fuel-price-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
}

/* Fuel Items*/
.fuel-items-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 25px;
}

.fuel-single-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
}

.fuel-single-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  border-color: #0b33b5;
}

.fuel-icon-image {
  width: 70px;
  height: 70px;
  object-fit: contain;
  flex-shrink: 0;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 8px;
  background: #fafafa;
}

.fuel-item-content {
  flex: 1;
}

.fuel-item-title {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}

.fuel-item-description {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 8px;
  line-height: 1.5;
}

.fuel-view-price-link {
  color: #0b33b5;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.fuel-view-price-link:hover {
  color: #073591;
  text-decoration: underline;
}

/* More Fuel Price Link */
.more-fuel-price-link {
  text-align: right;
}

.more-fuel-price-link a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.more-fuel-price-link a:hover {
  color: #0b33b5;
}

.more-fuel-price-link a::after {
  content: '›';
  font-size: 1.2rem;
  font-weight: 700;
}

@media (max-width: 992px) {
  .calculators-fuel-grid {
    grid-template-columns: 1fr;
  }

  .intl-finance-countries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .calculator-items-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .intl-finance-countries-grid {
    grid-template-columns: 1fr;
  }

  .international-finance-wrapper,
  .finance-calculators-box,
  .fuel-price-box {
    padding: 25px;
  }
}

/* Finance Info Section*/
.finance-info-section-wrapper {
  background: #fff;
  padding: 40px;
  margin-bottom: 30px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.finance-info-main-heading {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
}

/* Finance Info Cards Grid*/
.finance-info-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}

.finance-info-single-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.finance-info-single-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.finance-info-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.finance-info-card-content {
  padding: 18px;
  background: #fff;
}

.finance-info-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #000;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* View More Pages Link */
.finance-info-view-more {
  text-align: right;
}

.finance-info-view-more a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.finance-info-view-more a:hover {
  color: #0b33b5;
}

.finance-info-view-more a::after {
  content: '›';
  font-size: 1.2rem;
  font-weight: 700;
}

/* Forex Brokers Section*/
.forex-brokers-section-wrapper {
  background: #fff;
  padding: 40px;
  margin-bottom: 30px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.forex-brokers-main-heading {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
}

/* Forex Brokers Cards Grid*/
.forex-brokers-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}

.forex-broker-single-card {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 25px 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.forex-broker-single-card:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.forex-broker-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
  line-height: 1.4;
  min-height: 48px;
}

.forex-broker-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.forex-broker-location {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
}

.forex-broker-detail-link {
  color: #0b33b5;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.forex-broker-detail-link:hover {
  color: #073591;
  text-decoration: underline;
}

/* More Brokers Link */
.forex-brokers-more-link {
  text-align: right;
}

.forex-brokers-more-link a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.forex-brokers-more-link a:hover {
  color: #0b33b5;
}

.forex-brokers-more-link a::after {
  content: '›';
  font-size: 1.2rem;
  font-weight: 700;
}

@media (max-width: 1200px) {

  .finance-info-cards-grid,
  .forex-brokers-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .finance-info-cards-grid,
  .forex-brokers-cards-grid {
    grid-template-columns: 1fr;
  }

  .finance-info-section-wrapper,
  .forex-brokers-section-wrapper {
    padding: 25px;
  }
}

/* Pakistan Business Directory Section - Unique Classes */
.business-directory-wrapper {
  background: #fff;
  padding: 40px;
  margin-bottom: 30px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.business-directory-heading {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
}

/* Business Directory Items Grid - Unique Classes */
.business-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 30px;
  margin-bottom: 25px;
}

.business-directory-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 4px;
}

.business-directory-item:hover {
  background: #f8f9fa;
}

.business-directory-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ccc;
  flex-shrink: 0;
}

.business-directory-text {
  font-size: 0.95rem;
  color: #000;
  font-weight: 500;
}

.business-directory-count {
  color: #666;
  font-weight: 400;
}

/* View More Directory Link */
.business-directory-more-link {
  text-align: right;
}

.business-directory-more-link a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.business-directory-more-link a:hover {
  color: #0b33b5;
}

.business-directory-more-link a::after {
  content: '›';
  font-size: 1.2rem;
  font-weight: 700;
}

/* World Currencies Section - Unique Classes */
.world-currencies-wrapper {
  background: #fff;
  padding: 40px;
  margin-bottom: 30px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.world-currencies-heading {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
}

/* World Currencies Grid - Unique Classes */
.world-currencies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 30px;
  margin-bottom: 25px;
}

.currency-single-item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 4px;
}

.currency-single-item:hover {
  background: #f8f9fa;
}

.currency-flag-icon {
  width: 24px;
  height: 18px;
  border-radius: 2px;
  border: 1px solid #ddd;
  flex-shrink: 0;
}

.currency-name-text {
  font-size: 0.95rem;
  color: #000;
  font-weight: 500;
}

/* View More Currencies Link */
.world-currencies-more-link {
  text-align: right;
}

.world-currencies-more-link a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.world-currencies-more-link a:hover {
  color: #0b33b5;
}

.world-currencies-more-link a::after {
  content: '›';
  font-size: 1.2rem;
  font-weight: 700;
}

@media (max-width: 992px) {

  .business-directory-grid,
  .world-currencies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .business-directory-grid,
  .world-currencies-grid {
    grid-template-columns: 1fr;
  }

  .business-directory-wrapper,
  .world-currencies-wrapper {
    padding: 25px;
  }
}

/* Reviews & Comments Section - Unique Classes */
.reviews-comments-wrapper {
  background: #fff;
  padding: 40px;
  margin-bottom: 30px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.reviews-main-heading {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
}

/* Individual Review Card - Unique Classes */
.review-single-card {
  background: #f8f9fa;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 6px;
  border-left: 4px solid #0b33b5;
}

.review-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

.review-card-content {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 15px;
}

.review-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #666;
}

.review-author {
  font-weight: 600;
}

.review-author-label {
  font-weight: 400;
}

.review-date {
  font-weight: 400;
}

/* Disclaimer Section - Unique Classes */
.disclaimer-section-wrapper {
  background: #f8f9fa;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
}

.disclaimer-text-content {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
  margin: 0;
}

.disclaimer-label {
  font-weight: 700;
  color: #000;
}

/* Footer Section - Unique Classes */
.footer-main-wrapper {
  background: #000;
  color: #fff;
  padding: 25px 0;
  margin-top: 50px;
}

.footer-content-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright-text {
  font-size: 0.9rem;
  color: #ccc;
  margin: 0;
}

.footer-brand-name {
  color: #fff;
  font-weight: 600;
}

.footer-navigation-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-nav-link {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-nav-link:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-link-separator {
  color: #666;
}

@media (max-width: 768px) {

  .reviews-comments-wrapper,
  .disclaimer-section-wrapper {
    padding: 25px;
  }

  .footer-content-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-navigation-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}