/* GENERAL STYLES */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1100px; 
  margin: 0 auto;
  padding: 0 20px;
}



/* HEADER */
.header {
  background: lightseagreen;
  color: white;
  text-align: center;
  padding: 30px 0;
}

.nav ul {
  list-style: none;
  padding: 0;
}

.nav ul li {
  display: inline;
  margin: 0 15px;
}

.nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Marquee Container */
.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 10px 0;
}

/* Marquee Content */
.marquee-content {
  display: flex;
  gap: 50px; /* Space between items */
  animation: scroll 15s linear infinite;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Individual Links */
.marquee-content li {
  display: inline;
  font-size: 18px;
  font-weight: bold;
}

.marquee-content a {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease-in-out;
}

.marquee-content a:hover {
  color: yellow; /* Highlight effect on hover */
}

/* Scrolling Animation */
@keyframes scroll {
  from {
      transform: translateX(100%);
  }
  to {
      transform: translateX(-100%);
  }
}

/* REMITTANCE OVERVIEW */
.remittance-overview {
  background: white;
  padding: 40px;
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.image-container img {
  width: 100%;
  max-height: 400px;
  border-radius: 8px;
}

/* TWO-COLUMN CONTENT */
.content-container {
  margin-top: 30px;
}

.content-text {
  padding-right: 30px;
}

.content-text ul {
  list-style: none;
  padding: 0;
}

.content-text ul li {
  padding: 5px 0;
}

.content-text ul li a {
  color: #007bff;
  text-decoration: none;
}

.content-table {
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* TABLE */
.table th {
  background: #007bff;
  color: white;
  text-align: left;
  padding: 12px;
}

.table tbody tr:hover {
  background: #f1f1f1;
}

/* SOURCE SECTION */
.source-section {
  background: #f1f1f1;
  padding: 20px;
  margin-top: 30px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
}

.source-section h4 {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.source-section p {
  color: #555;
  margin-top: 5px;
}

.source-section a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.source-section a:hover {
  text-decoration: underline;
}


/* PROMOTION ICON */
.promotion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.promotion-icon i {
  font-size: 18px;
  color: lightseagreen;
  margin-right: 8px;
}

.promotion-icon span {
  font-size: 14px;
  font-weight: bold;
  color: #555;
}


/* Tableau Map Container */
.tableau-container {
  text-align: center;
  margin: 10px auto;
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
}


/* Dropdown */
#country-select {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.tableau-container2 {
  width: 100%;
  overflow: hidden; /* Hides unwanted scrollbars */
  text-align: center; /* Centers the map */
}

.tableau-container2 object {
  max-width: 100%;
  height: auto;
}



/* FOOTER */

.comments-section {
  margin-top: 40px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
}

.comments-section textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}

.comments-section button {
  padding: 10px 20px;
  background-color: teal;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.comments-section button:hover {
  background-color: darkcyan;
}
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.blog-card {
  flex: 1 1 calc(33.33% - 20px);
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card h5 {
  font-size: 18px;
  margin-bottom: 10px;
  color: teal;
}

.blog-card a {
  text-decoration: none;
  color: #007bff;
  font-weight: bold;
}
.highlighted-sentence {
  color: #a706d3; /* deep purple for text */
  padding: 10px;
  border-radius: 6px;
  font-weight: 600;
}
.section-heading {
  color: lightseagreen;
  font-weight: 700;
  margin-top: 30px;
}
.content-text ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.blog-title {
  color: lightseagreen;
  font-weight: 700;
  font-size: 10;
}
.map-section {
  color: lightseagreen;
  font-weight: 700;
}
.key-trends {
  margin-top: 20px;
}

.trend-card {
  background-color: #ffffff;
  border-left: 5px solid lightseagreen;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.trend-card h5 {
  color: lightseagreen;
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 10px;
}

.trend-card:hover {
  transform: translateY(-4px);
}
.trend-intro {
  font-style: italic;
  color: #666;
  margin-bottom: 10px;
}
.subscribe-box input[type="email"] {
  border-radius: 50px;
  padding: 10px 20px;
}

.subscribe-box button {
  border-radius: 50px;
  padding: 10px 20px;
}

.badge {
  margin-right: 6px;
  font-size: 14px;
}
.footnote-ref {
  font-size: 0.8em;
  vertical-align: super;
  text-decoration: none;
}

.footnotes {
  font-size: 0.9em;
  color: #555;
  margin-top: 40px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.footnotes ol {
  padding-left: 20px;
}

.footnotes li {
  margin-bottom: 10px;
}
/* Container Setup */
.scroll-dialogue {
  padding: 4rem 1rem;
  background-color: #fdfdfd;
  max-width: 1000px;
  margin: auto;
}

/* Message Row */
.thought-row {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* tighter layout */
  margin-bottom: 3rem;
  gap: 1rem;
  flex-wrap: nowrap;
}

/* Reverse rows */
.scroll-dialogue .thought-row:nth-child(even) {
  flex-direction: row-reverse;
  justify-content: flex-start;
}

/* Speech Bubble */
.thought-bubble {
  background: #fff;
  border: 2px solid #ddd;
  padding: 1.25rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  max-width: 600px;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #333;
  flex: 1;
}

/* Avatar Style */
.scroll-dialogue img {
  width: 140px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 0 20px 5px rgba(255, 255, 0, 0.3);
  animation: float-loop 3s ease-in-out infinite;
  margin-bottom: 1rem;
}


/* Floating animation */
@keyframes float-loop {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* Responsive Fix */
@media (max-width: 768px) {
  .thought-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .scroll-dialogue .thought-row:nth-child(even) {
    flex-direction: column;
  }

  .thought-bubble {
    max-width: 100%;
  }

}
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition-property: opacity, transform;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
.footnote-ref {
  font-size: 0.75em;
  vertical-align: super;
  text-decoration: none;
  line-height: 1;
}

.footer {
  background: lightseagreen;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
  width: 100%;
  clear: both;
  position: relative;
}


.footnotes li {
  margin: 0.5em 0;
  padding-left: 0;
  line-height: 1.6;
}

.source-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

.source-wrapper .footnotes {
  padding-left: 0;
  margin: 0 auto;
  width: 100%;
  list-style-position: inside;
}

.source-wrapper .footnotes li {
  margin-left: 0;
  padding-left: 1.2em;
  text-indent: 0;
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.source-section {
  background: #f1f1f1;
  padding: 20px;
  margin-top: 30px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
}

.source-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

.footer {
  background: lightseagreen;
  color: white;
  text-align: center;
  padding: 15px;
  width: 100%;
  clear: both;
  position: relative;
  margin-top: auto;
}