/* header */
/* Reset */

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  z-index: 999;
  background-color: #202577;
  backdrop-filter: blur(10px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.logo-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.site-header {
  height: 90px;
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 20p 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 24px;
  color: #202577;
  /* Royal Blue */
}

.logo .tagline {
  font-size: 12px;
  color: #888;
}

.logo {
  /* animation: movedown 1s linear 1;
animation-delay: 1s;
visibility: hidden;
animation-fill-mode: forwards; */

  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 100px;
  /* border-radius: 50%;
  width: auto; */
}

/* Navigation */
.site-nav .nav-list {
  list-style: none;

  display: flex;
  gap: 25px;
  align-items: center;
}

.site-nav .nav-list li a {
  text-decoration: none;
  color: #202577;
  font-weight: 500;
  padding: 10px 5px;
  position: relative;
}

/* Mega Menu */
.has-mega {
  position: relative;
}

.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  display: flex;
  gap: 40px;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 0.3s ease;
  z-index: 999;
}

.mega-menu .mega-column {
  width: 200px;
  display: flex;
  flex-direction: column;
}

.mega-menu .mega-column h4 {
  font-size: 16px;
  color: #4169e1;
  margin-bottom: 10px;
}

.mega-menu .mega-column a {
  text-decoration: none;
  color: #1a2950;
  font-size: 14px;
  margin: 5px 0;
  transition: 0.2s;
}

.mega-menu .mega-column a:hover {
  color: #aa8e00;
  /* Golden */
}

/* Responsive */
/* @media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav .nav-list {
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .mega-menu {
    flex-direction: column;
    min-width: 100%;
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: 20px 0;
  }
} */
/* RESPONSIVE */
@media (max-width: 768px) {
  .nav {
    display: none;
    /* hide normal nav */
  }

  .hamburger {
    display: block;
    /* show hamburger */
  }
}

/* mobile view */
/* Hide drawer by default */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
  padding: 20px;
  z-index: 1000;
  transition: right 0.3s ease;
  overflow-y: auto;
}

/* Show drawer when active */
.mobile-drawer.active {
  right: 0;
}

/* Close button */
.close-drawer {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: block;
  margin-left: auto;
  margin-bottom: 20px;
}

/* Drawer nav links */
.drawer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.drawer-nav li {
  margin-bottom: 15px;
}

.drawer-nav a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
}

/* Hamburger icon */
.menu-toggle {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  display: none;
  /* Hide on desktop */
}

/* Responsive: show hamburger icon on mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;
  }
}

/* Optional: Prevent background scroll when drawer is open */
body.no-scroll {
  overflow: hidden;
}

/* header */
/*-------------------- home page---------------- */
/* Font and Reset */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  color: #1a1a1a;
  /* max-width: 100%; */
  overflow-x: hidden;
}

/* Shared styles */
h1,
h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.75rem;

}

/* banner---------- */
.home-banner-section {

  position: relative;
  overflow: hidden;
  /* <-- change from overflow-x to hidden both axes */
  height: 80vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  color: white;
}

.home-banner-container {
  max-width: 1200px;
  margin: 0 auto;
  /* centers it */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
}

.video-background {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  object-fit: cover;
  /* makes video behave like background-image: cover */
}

.home-banner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.6); */
  /* Dark overlay */
  z-index: 1;
}

.home-banner-content {
  position: relative;
  z-index: 2;

  max-width: 700px;
  padding: 40px 20px;
  text-align: start;

  animation: moveright 1s linear 1;
  visibility: hidden;
  animation-fill-mode: forwards;

}

.home-banner-content h1 {
  font-size: 4em;
  font-weight: 700;
  text-align: start;
  color: #ffd700;
}

.home-banner-content p {
  font-size: 1.2em;
  color: white;
  margin-bottom: 30px;
}

.home-banner-content .cta-button {
  /* margin-left: auto; */
  background-color: #202577;
  display: block;
  color: white;
  border: none;
  padding: 14px 30px;
  font-size: 1em;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.home-banner-content .cta-button:hover {
  background-color: #e09c00;
}

@media (max-width: 768px) {
  .home-banner-section {
    justify-content: center;
    text-align: center;
    padding: 0 20px;
  }

  .home-banner-content h1 {
    font-size: 2em;
  }
}

/* Section Wrapper */
.global-market-oppurtunities-features {
  padding: 40px 20px;
  /* background: url('assets/img/1.png'); */
  /* linear-gradient(180deg, rgba(26, 29, 58, 0.9), rgba(13, 15, 35, 0.9)),  */
  text-align: center;
  color: #fff;
}

/* Heading */
.global-market-oppurtunities-features h2 {

  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 15%;
  font-size: 2rem;
  color: #202577;
  margin-bottom: 50px;
}

.global-market-oppurtunities-features .description {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 50px;
  color: black;
  line-height: 1.6;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Make feature boxes look nice */
.feature-box {
  display: flex;
  animation: leftAppear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 15%;
  flex-direction: column;
  /* stack elements vertically */
  justify-content: space-between;
  /* push button to bottom */
  align-items: center;
  /* center all elements horizontally */
  text-align: center;
  background: linear-gradient(135deg, #202577, #333333);
  color: white;
  padding: 20px;
  max-width: 250px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
}


.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.6);
}

/* Feature Images */
.feature-box img {

  height: 80px;
  width: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Titles */
.feature-box h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

/* Descriptions */
.feature-box p {
  font-size: 0.9rem;
  color: #cccccc;
  line-height: 1.6;
}

/* Section: Assets */
.most-well-liked-assets {

  animation: leftAppear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 15%;
  padding: 40px 20px;
  text-align: center;

  background:
    linear-gradient(180deg, rgba(26, 29, 58, 0.6), rgba(13, 15, 35, 0.9)),
    /* background-color: black; */
}

.most-well-liked-assets .description {
  margin-top: 10px;
  margin-bottom: 30px;
  color: white;
}

.assets-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  font-size: 14px;
  color: white;
}

.assets-features div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.assets-features img {
  width: 16px;
  height: 16px;
  background-color: #ffd700;
  /* color: #ffd700; */
}

/* cfd */
.cfd-section {
  background-size: cover;
  background-position: center;
  padding: 40px 20px;
  /* width: 100%; */
  /* full width background */
}

.cfd-container {
  max-width: 1200px;
  /* control content width */
  margin: 0 auto;
  /* center content */
  text-align: center;
}

.cfd-table {
  width: 100%;
  /* take full of container */
  border-collapse: collapse;
  text-align: left;
  color: #ffd700;
}

h2 {

  font-size: 1.75rem;
  color: #ffd700;
}

.cfd-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.tab-btn {
  padding: 10px 20px;
  border: none;
  background: #f5f5f5;
  border-radius: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

.tab-btn.active {
  background: #ffd700;
  color: #fff;
}

/* instrument column */
.cfd-table td:first-child {
  color: #ffffff;
  /* white */
  font-weight: 500;
}

.cfd-table td:se-child {
  color: #ffffff;
  /* white */
  font-weight: 500;
}

/* Buy & Sell columns (2nd and 3rd td) */
td:nth-child(2),
td:nth-child(3) {
  color: #ffffff;
  /* white */
}

.cfd-table th,
.cfd-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #eee;
}

.cfd-table td img {
  width: 32px;
  margin-right: 8px;
  vertical-align: middle;
}

.change-red {
  color: red;
}

.read-more-btn {
  padding: 6px 12px;
  border: 1px solid #ffd700;
  color: #ffd700;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.note {
  font-size: 12px;
  color: white;
  margin-top: 20px;
}

.see-all a {
  display: inline-block;
  margin-top: 10px;
  color: white;
  font-weight: 500;
  text-decoration: none;
}

/* cfd */
/* Dynamic Trading Platforms */


.platforms-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.bold {
  font-weight: 700;
}

.platform-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.tab-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  background-color: #f5f5f5;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.tab-btn.active {
  background-color: #ffd700;
  color: black;
}

.platform-content {
  background-color: #f9f9fb;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  margin-top: 20px;
  gap: 30px;
  text-align: left;
}

.platform-text {
  flex: 1 1 400px;
}

.platform-text h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.platform-text p {
  margin: 10px 0;
  font-size: 15px;
  color: #333;
}

.download-buttons {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.download-buttons img {
  height: 40px;
  cursor: pointer;
}

.platform-image {
  flex: 1 1 400px;
  text-align: right;
}

.platform-image img {
  width: 100%;
  max-width: 320px;
}

/* why choose us */
.why-choose-us {
  padding: 60px 20px;
  text-align: center;
}

.why-choose-us h2 {

  animation: leftAppear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 15%;
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 40px;
}

.white-icon {
  fill: white;
  width: 40px;
  /* optional */
  height: 40px;
}

.why-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.choose-card {
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 15%;
  flex: 1 1 240px;
  max-width: 250px;
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-card:hover {

  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.choose-card img {
  height: 60px;
  margin-bottom: 20px;
}

.choose-card h3 {
  font-size: 18px;
  color: #202577;
  margin-bottom: 10px;
}

.choose-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Mobile: stack nicely */
@media (max-width: 768px) {
  .why-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .choose-card {
    max-width: 100%;
    width: 90%;
  }
}

/* why choose us */
/* CTA-------------------------------- */

.cta-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background-color: white;
}

.cta-text {
  flex: 1 1 400px;
  padding: 20px;
  max-width: 600px;
}

.cta-text h2 {
  text-align: start;
  font-size: 1.75rem;
  color: #202577;
  margin-bottom: 40px;
}

.cta-text p {
  font-size: 1.1em;
  color: #333;
  line-height: 1.6;
}

.cta-image {
  flex: 1 1 400px;
  max-width: 500px;
  padding: 20px;
  text-align: center;
}

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

@media (max-width: 768px) {
  .cta-section {
    flex-direction: column;
    text-align: center;
  }

  .cta-image {
    display: none;
  }

  .cta-text h2 {
    text-align: center;
    font-size: 2em;
  }
}

.cta-section-btn {
  background-color: #202577;
  /* theme color */
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  /* added margin */
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-section-btn:hover {
  background-color: #e09c00;
  /* darker shade on hover */
  transform: translateY(-2px);
}

.cta-section-btn:active {
  background-color: #0e123d;
  /* pressed state */
  transform: translateY(0);
}

/* CTA-------------------------------- */

/* Sticky bottom bar */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background:
    linear-gradient(to right, white, #202577, #202577, white);
  text-align: center;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
  /* z-index: 1000; */
}

.bar-text {
  margin: 0;
  font-size: 16px;
  color: #ffd700;
}

@media (max-width: 768px) {
  .bottom-bar {

    background: #202577
      /* linear-gradient(to right, white, , #202577, white);  */
      /* z-index: 1000; */
  }

}

/* ------------------- home page ------------------------------------------- */
/* about us page --------------------------------- */
/* --- About Us Section --- */
.about-us-section {
  background-color: white;
  padding: 80px 20px;
  color: #202577;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* Left Text Content */
.about-text {
  flex: 1;
  min-width: 300px;
  text-align: justify;
}

.about-text h2 {
  text-align: start;
  font-size: 1.75rem;
  color: #202577;
  margin-bottom: 1px !important;
  padding-bottom: 0px !important;
}

.about-text h2 span {
  color: #ffd609;
  position: relative;
  text-shadow:
    -1px -1px 0 #1a2950,
    1px -1px 0 #1a2950,
    -1px 1px 0 #1a2950,
    1px 1px 0 #1a2950;
  /* Navy Blue border effect */
}

.about-text .subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 600;
  color: #333;
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #555;
}

/* Right Image */
.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  /* border: 4px solid #EFDA73; */
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-us-section {
    padding: 20px 20px;
  }

  .about-content {
    gap: 0;
  }

  .about-image img {
    display: none;
  }

  .about-text h2 {
    text-align: center;
    font-size: 28px;
  }

  .about-text .subtitle {
    text-align: center;
    font-size: 18px;
  }
}

/* Full width black background */
.advantages-section {
  width: 100%;
}

/* Content container (max-width + center) */
.advantages-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.advantages-header {
  text-align: center;
  /* margin-bottom: 40px; */

  animation: leftAppear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 15%;
}

.advantages-title {
  font-size: 1.75rem;
  color: #ffd609;
  /* white on black bg */
}

.advantages-subtitle {
  color: white;
  font-size: 1rem;
}

/* Cards */
.advantage-card {
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 15%;

  background: #ffd609;
  color: black;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  grid-row: span 3;
  max-height: 520px;

  object-fit: cover;
}

.advantage-card img {
  /* width: 100%; */
  padding: auto;
  max-height: 200px;
  object-fit: unset;
}

.advantage-card-large {

  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 15%;

  background: #ffd609;
  color: white;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  grid-row: span 3;
  max-height: 400px;
}

.advantage-card h3,
.advantage-card p {
  color: black;
}

.advantage-content {
  padding: 5px;
  flex-direction: column;
  justify-content: center;
}

.advantage-name {
  font-size: 1rem;
  margin-bottom: 6px;
  color: #fff;
}

.advantage-description {
  font-size: 0.75rem;
  color: #ccc;
}

/* Responsive Design */
@media (max-width: 992px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .advantage-card-large {
    grid-row: auto;
  }

  .advantage-card img {
    height: 70%;

    object-fit: cover;
  }

  .advantage-card {

    object-fit: cover;
    height: 200px;
    max-width: 90%;
    /* 🔥 remove fixed width on mobile */
  }
}

/* mission-vision------------ */
.mv-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.mv-header {
  text-align: center;
  margin-bottom: 50px;
}

.mv-header h2 {

  font-size: 1.75rem;
  color: #202577;
  margin-bottom: 10px;
}

.mv-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.mv-card {
  background: #f5faff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 30px 20px;
  max-width: 500px;
  flex: 1 1 300px;
  text-align: center;
  border-top: 6px solid #202577;
}

.mv-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #202577;
}

.mv-card h3 {
  font-size: 1.6em;
  color: #202577;
  margin-bottom: 15px;
}

.mv-card p {
  font-size: 1.05em;
  line-height: 1.6;
  color: #333;
}

@media (max-width: 768px) {
  .mv-header h2 {
    font-size: 2.2em;
  }

  .mv-card {
    padding: 25px 15px;
  }
}

/* Core Values Section */
.core-values {
  background: linear-gradient(135deg, #0f0f1a, #202577);
  /* Dark indigo gradient */
  padding: 80px 0;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

/* Limit width */
.values-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  /* <-- white spacing left-right */
}

/* Title */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin: 12px auto 0;
  background: #ffd700;
  border-radius: 2px;
}

/* Grid Layout */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Value Cards */
.value-card {

  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 15%;

  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
  transform: rotate(25deg);
  transition: opacity 0.3s ease;
  opacity: 0;
}

.value-card:hover::before {
  opacity: 1;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

/* Icons */
.value-card .icon {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #ffd700;
}

.value-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffd700;
}

.value-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
}

@media (max-width: 768px) {
  .values-grid {
    display: block;
    /* fallback to normal block layout */
  }

  .value-card {
    margin-bottom: 20px;
  }
}

/* ------------about us page ------------------------ */

.contact-section {
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #202577;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-heading {
  text-align: center;
  margin-bottom: 50px;
}

.contact-heading h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-heading h2 span {
  color: #EFDA73;
  text-shadow:
    -1px -1px 0 #202577,
    1px -1px 0 #202577,
    -1px 1px 0 #202577,
    1px 1px 0 #202577;
}

.contact-heading p {
  font-size: 16px;
  color: #555;
}

/* Main Content */
.contact-content {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Contact Form */
.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-form h2 {
  text-align: start;
  margin-bottom: 50px;
  color: #202577;
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
  font-family: inherit;
  transition: 0.3s border ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #202577;
  outline: none;
}

.submit-btn {
  background-color: #202577;
  color: #fff;
  border: none;
  padding: 14px 26px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s background ease;
}

.submit-btn:hover {
  background-color: #e09c00;
}

/* Contact Info */
.contact-info {
  flex: 1;
  /* min-width: 280px; */
  background-color: #fff;
  padding: 40px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #202577;
}

.contact-info p {
  margin-bottom: 10px;
  color: #333;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }

  .contact-form,
  .contact-info {
    width: 100%;
  }
}

/* -----------how-we-can-help-you---------------- */
.how-we-work {
  position: relative;
  max-width: 800px;
  margin: auto;
}

.how-we-work h2 {
  font-size: 1.75rem;
  font-weight: bold;
  text-align: start;
  color: #202577;
}

.how-we-work h2 span {
  color: #aa8e00;
}

/* Vertical line */
.timeline {
  position: relative;
  margin: 50px auto;
  padding-left: 40px;
  border-left: 4px solid #202577;
}

/* Timeline item */
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

/* Circle number */
.timeline-item::before {
  content: attr(data-step);
  position: absolute;
  left: -33px;
  top: 0;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 4px solid #202577;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #202577;
  font-size: 16px;
}

/* Content box */
.timeline-content {
  background: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 2px solid #202577;
}

.timeline-content h3 {
  margin: 0 0 5px;
  font-size: 18px;
  color: #202577;
}

.timeline-content p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* Different colors for each step */
.timeline-item[data-step="2"]::before,
.timeline-item[data-step="2"] .timeline-content {
  border-color: #aa8e00;
  color: #aa8e00;
}

.timeline-item[data-step="4"]::before,
.timeline-item[data-step="4"] .timeline-content {
  border-color: #aa8e00;
  color: #aa8e00;
}

.timeline-item[data-step="3"]::before,
.timeline-item[data-step="3"] .timeline-content {
  border-color: #202577;
  color: #202577;
}

/* ---------how-we-can-help-you------------- */
/* your info is safe with us ------------------------ */
.privacy-box {
  background-color: #ffffff;

  padding-bottom: 50px;
}

.privacy-box h2 {
  margin-bottom: 15px;
  font-size: 24px;
  color: #202577;
}

.privacy-box p {
  color: #aa8e00;
  font-size: 16px;
  text-align: center;
  line-height: 1.6;
}

.lock-icon {
  text-align: center;
  font-size: 48px;
  color: #4CAF50;
  margin-bottom: 15px;
}

/* your info is safe with us ------------------------ */
/* contact us------------------ */
/* FOOTER------------------------------- */
/* risk-warning------------- */
.footer {
  background-color: black;
  color: white;
  font-family: Arial, sans-serif;
}

/* Desktop - 5 columns, first wider */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 30px;
}

.company-info {
  display: flex;
  flex-direction: column;
}

.company-text h3 {
  color: #fff;
  margin-bottom: 10px;
}

.company-text p {
  line-height: 1.6;
  font-size: 12px;
  color: #fff;
}

.footer-column h4 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.8;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-column a {
  font-size: 12px;
  color: #EFDA73;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.risk-warning {
  max-width: 1200px;
  margin: 10px auto;
  text-align: justify;
  line-height: 1.6;
  font-size: 10px;
  color: grey;
}

.footer-divider {
  height: 2px;
  margin: 15px auto;
  max-width: 1200px;
  background: linear-gradient(to right, transparent, white 40%, white 60%, transparent);
  border-radius: 50%;
}

.rights-reserved {
  text-align: justify;
  padding: 10px 10px;  display: flex;
  flex-direction: row;
  max-width: 1300px;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
}

.rights-reserved a {
  display: block;
  margin-top: 8px;
  color: white;
  text-decoration: none;
}

.rights-reserved a:hover {
  text-decoration: underline;
}

/* ---------- RESPONSIVENESS ---------- */

/* Tablet (2 columns layout) */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .company-info {
    grid-column: span 2;
    /* full width for company info */
  }
}

/* Mobile (1 column stacked) */
@media (max-width: 600px) {
  .footer-container {
    text-align: center;
  }

  .company-info {
    align-items: center;
  }

  .footer-column {
    margin-top: 20px;
  }

  .risk-warning {
    padding: 20px;
  }
}

/* trading hero section */
/* Trading Hero Section */
.trading-hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 60vh;
  /* smaller height */
  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 0 20px;
}

.trading-hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.trading-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 15px;
}

.trading-hero-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.trading-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: white;
}

.trading-hero-content .cta-button {
  background-color: #ffd700;
  color: #202577;
  border: none;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.trading-hero-content .cta-button:hover {
  background-color: #e09c00;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .trading-hero-section {
    height: auto;
    padding: 60px 20px;
  }

  .trading-hero-content h1 {
    font-size: 2rem;
  }

  .trading-hero-content p {
    font-size: 1rem;
  }
}

/*  */

/* learn-more-btn */
.learn-more-btn {

  margin: 0 auto;
  color: #202577;
  border: none;
  padding: 14px 30px;
  font-size: 1em;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.learn-more-btn {
  background-color: #FFD700;
}



/* All Animations================ */
@keyframes appear {
  from {
    opacity: 0;
    scale: 0.5;
    /* transform: translateX(-100px); */

  }

  to {
    opacity: 1;
    scale: 1;
    /* transform: translateX(0px); */
  }
}

@keyframes leftAppear {
  from {
    opacity: 0;
    scale: 0.5;
    transform: translateX(-100px);

  }

  to {
    opacity: 1;
    scale: 1;
    transform: translateX(0px);
  }
}

@keyframes moveright {
  0% {
    transform: translateX(-50px);
    visibility: visible;

  }

  100% {
    transform: translateX(0px);
    visibility: visible;
  }
}

@keyframes movedown {
  0% {
    transform: translateY(-100px);
    visibility: hidden;
  }

  100% {
    transform: translateY(0);
    visibility: visible;
  }

  /* animation: movedown 1s linear 1;
animation-delay: 1s;
visibility: hidden;
animation-fill-mode: forwards; */
  /* nav */
  /* animation: movedown 1s linear 1;
animation-delay: 1.5s;
visibility: hidden;
animation-fill-mode: forwards; */

}