/* Global Styles */
:root {
  --primary-color: #00214a;
  --secondary-color: #1e3a8a;
  --accent-color: #6ec1e4;
  --text-light: #ffffff;
  --text-dark: #1f2937;
  --form-bg: #f9f9f9;
  --btn-primary: #0a2851;
  --hero-title-h1: 30px;
  --section-title-h2: 35px;
}

/* Hero H1 Styling */
.hero-main-title {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.2;
  font-family: "Arial", sans-serif;
}

video {
  width: 100%; /* Responsive width */
}
.padding-70 {
  padding: 70px 0px;
}

.bg-color {
  background-color: #eeeeee;
}

.container {
  max-width: 1140px !important;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  overflow-y: auto;
  margin: 0;
  padding: 0;
  /* line-height: 1.6; */
}

html {
  overflow-y: auto;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

a {
  text-decoration: none;
  color: #cc3366;
}

/* Content Link Styling */
.content-link {
  color: #00214a;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.content-link:hover {
  color: #cc3366;
  text-decoration: underline;
}

/* Navbar Styles */
.navbar {
  background-color: var(--primary-color);
  padding: 1rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  color: var(--text-light);
  font-weight: 700;
  font-size: 1.5rem;
}

.navbar-brand img {
  margin-right: 0.5rem;
  height: 50px;
  width: auto;
  max-height: 50px;
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--text-light);
  font-weight: 600;
  padding: 10px 20px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: var(--accent-color);
}

.dropdown-menu {
  background-color: var(--primary-color);
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  margin-top: 0;
}

/* Add hover functionality for desktop */

.dropdown-item {
  color: #ffffff !important;
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--accent-color);
}

.language-dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
}

.language-dropdown img {
  margin-right: 0.25rem;
}

/* .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: 6px solid;
    border-right: 6px solid transparent;
    border-bottom: 0;
    border-left: 6px solid transparent;
} */

/* Open dropdown on hover */
.navbar-nav .dropdown:hover > .dropdown-menu {
  display: block;
  margin-top: 0; /* optional: remove dropdown spacing */
}

/* Optional: smooth appearance */
.navbar-nav .dropdown-menu {
  transition: all 0.3s ease;
}

/* Hide dropdown by default */
/* #investDropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    background: #fff;
  }
   */
/* Show on hover for desktop */
@media (min-width: 769px) {
  .nav-item.dropdown:hover > #investDropdown {
    display: block;
  }
}

/* Hero Section */
.hero-section {
  background-color: #faf7f1;
  padding: 20px 0;
  display: flex;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 20px;
}

.hero-content p {
  margin-bottom: 2rem;
  font-size: 18px;
  font-weight: 500;
  color: #454545;
}

/* Signup Form */
.signup-form-container {
  background-color: #ffffff;
  padding: 2rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
  width: 80%;
  margin-inline: auto;
}

.signup-form-container h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  text-align: center;
  font-weight: 800;
  font-size: 30px;
}

.signup-form .form-label {
  margin-bottom: 0.25rem;
}

.signup-form .form-control {
  width: 100%;
  border: 1px solid #666;
  border-radius: 3px;
  padding: 0.5rem 1rem;
  transition: all 0.3s;
}

.signup-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
}

.signup-form .btn-primary {
  background-color: var(--btn-primary);
  border: none;
  border-radius: 3px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  margin-top: 1rem;
  text-transform: uppercase;
}

.signup-form .btn-primary:hover,
.signup-form .btn-primary:focus {
  background-color: var(--secondary-color);
}

.signup-form .form-text {
  text-align: left;
  font-size: 15px;
  color: #000;
  font-family: poppins;
}

.signup-form .form-text a {
  color: var(--primary-color);
  font-weight: 600;
}

/* IntlTelInput Customization */
.iti {
  width: 100%;
}

.what-is-trader p {
  text-align: left;
  font-family: "roboto";
  font-size: 18px;
  font-weight: 400;
  color: #454545;
}

.what-is-trader h2 {
  font-size: 32px;
  font-family: "Arial", Sans-serif;
  font-weight: 600;
  color: #282827;
  text-align: center;
}

/* How It Works Section */

.steps-container {
  display: flex;
  flex-direction: column;
}

.step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
  padding-right: 40px;
}

.number-line-container {
  display: flex;
  align-items: center;
  margin-right: 15px;
  padding-top: 3px;
}

.step-number {
  background-color: #00214ac7;
  color: #c1c1c1;
  width: 35px;
  height: 40px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 2;
  margin-top: 0;
  margin-right: 15px;
}

.step-line {
  width: 40px;
  height: 2px;
  background-color: #00214a;
  position: relative;
  z-index: 1;
}

.step-content {
  flex: 1;
  padding-left: 0;
  position: relative;
  top: -1px;
}

.step-header {
  font-size: 29px;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 5px;
  font-family: "Arial", Sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  color: #282827;
}

.step-description {
  color: #454545;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 10px;
}

.register-btn-container {
  margin-top: 20px;
  margin-bottom: 30px;
  text-align: center;
}

.register-now-btn {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  background-color: #00214a;
  font-family: "Arial", Sans-serif;
  font-weight: 600;
  font-size: 16px;
  fill: #c1c1c1;
  color: #c1c1c1;
  min-width: 250px;
  text-align: center;
}

.register-now-btn:hover {
  background-color: #001530;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 33, 74, 0.3);
  text-decoration: none;
}

/* Mobile optimization for CTAs */
@media (max-width: 768px) {
  .register-now-btn {
    padding: 14px 30px;
    font-size: 15px;
    min-width: 200px;
    width: auto;
    max-width: 90%;
  }

  .register-btn-container {
    margin-top: 25px;
    margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  .register-now-btn {
    padding: 12px 25px;
    font-size: 14px;
    min-width: 180px;
    width: 100%;
    max-width: 100%;
  }
}

/* .register-now-btn:hover {
    background: linear-gradient(to right, #4361ee, #3a0ca3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
    color: white;
    text-decoration: none;
} */

.button-container {
  margin-top: 20px;
}

.phone-images {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.phone-images img {
  max-width: 100%;
  height: auto;
}

.trader-ai-app {
  font-family: "Arial", Sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #282827;
}

.trader-ai-app iframe {
  margin: 20px auto;
  display: block;
  border-radius: 20px;
}

.trading-opportunities .opportunities-content .box .icon img {
  width: 80px;
  height: 80px;
  max-width: 80px;
  object-fit: contain;
}

.box {
  background-color: #00214ac7;
  gap: 10px;
  color: white;
  text-align: center;
  padding: 20px 0px;
  border-radius: 20px;
  min-height: 250px;
}

.box .text {
  text-align: center;
  font-family: "Arial", Sans-serif;
  font-weight: 400;
  color: #c1c1c1;
}

.box .number {
  font-family: "Arial", Sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: #c1c1c1;
}

.second-row {
  margin-top: -15px;
}

.img-box img {
  margin-top: 20px;
  margin-inline: auto;
  display: block;
  width: 100%;
}

.first-row {
  gap: 90px;
}

.trading-opportunities h2 {
  font-family: "Arial", Sans-serif;
  font-size: 29px;
  font-weight: 600;
  text-transform: capitalize;
  color: #282827;
  text-align: center;
  margin-bottom: 30px;
  line-height: 35px;
}

.ai-offers .container .row .col {
  display: flex;
}

.ai-offers .card img {
  width: 50px;
  height: 50px;
  max-width: 50px;
  border-radius: 5px;
  object-fit: contain;
}

.ai-offers .card {
  display: flex;
  flex-direction: row;
  flex: 1;
  border-radius: 0;
  border: none;
  min-height: 225px;
  padding: 15px;
}

.ai-offers .card .card-title {
  font-family: "Arial", Sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.ai-offers .card .card-text {
  color: #454545;
  font-weight: 400;
  font-family: "Roboto";
}

.ai-offers .section-title-h2 {
  text-align: center;
  padding: 5px;
}

.ai-offers .register-btn-container .register-now-btn {
  text-align: center;
  margin-inline: auto;
  display: block;
  width: 160px;
}

/* Trader Ai App Benefits Section */
.trader-ai-benefits {
  background-color: #00214a;
  padding: 80px 0;
  color: #ffffff;
}

.trader-ai-benefits .benefits-title h2 {
  font-family: "Arial", Sans-serif;
  font-size: 34px;
  font-weight: 600;
  text-transform: capitalize;
  color: #c1c1c1;
  text-align: center;
}

.trader-ai-benefits .benefits-list {
  padding-left: 15px;
}

.trader-ai-benefits .benefits-list ul li {
  color: #c1c1c1;
  font-weight: 400;
}

/* Stats Counter Section */
.stats-counter {
  background: linear-gradient(90deg, #9d7fbd 0%, #8395c5 100%);
  padding: 25px 0;
  text-align: center;
}

.counter-item {
  padding: 5px 15px;
}

.counter-value {
  font-size: 44px;
  font-weight: 700;
  color: #333;
  font-family: "Arial", Sans-serif;
  margin-bottom: 2px;
  line-height: 1.1;
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.counter,
.suffix {
  display: inline-block;
}

.prefix {
  display: inline-block;
}

.counter {
  min-width: 60px;
}

.counter-text {
  font-size: 18px;
  color: #333;
  font-family: "Arial", Sans-serif;
  font-weight: 500;
}

.member-community h2 {
  font-family: "Arial", Sans-serif;
  font-size: 35px;
  font-weight: 600;
  text-transform: capitalize;
  color: #282827;
  text-align: left;
}

.member-community p {
  font-size: 18px;
  font-weight: 400;
  color: #454545;
  font-family: "Roboto";
}

.open-account .register-btn-container .register-now-btn {
  text-align: center;
  margin-inline: auto;
  display: block;
  width: 210px;
  fill: #c1c1c1;
  color: #c1c1c1;
  font-weight: 500;
}

.open-account ul li {
  font-weight: 400;
  color: #454545;
  font-family: "Roboto";
}

.game-changer {
  background-color: #eeeeee;
  padding: 0px 0px 60px 0px;
}

/* FAQ Section */
.faq-section {
  padding: 60px 0px 20px 0px;
  background-color: #eeeeee;
}

.faq-title h2 {
  font-size: 29px;
  font-family: "Arial", Sans-serif;
  font-weight: 600;
  color: #282827;
}

.accordion-item {
  border: none;
  margin-bottom: 10px;
  background-color: transparent;
}

.accordion-button {
  background-color: transparent;
  font-family: "Arial", Sans-serif;
  color: #282827;
  font-weight: 600;
  font-size: 18px;
  padding: 10px 0;
  box-shadow: none;
  width: 80%;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #282827;
  box-shadow: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-size: 80%;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 11l6-6 6 6'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 0 0 20px 0;
  width: 80%;
}

.accordion-body p {
  color: #454545;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Footer Section */
.footer {
  width: 100%;
  background-color: #00214a;
  color: #ffffff;
}

.footer-top {
  background-color: #00214a;
  padding: 20px 0;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img {
  height: 50px;
  margin-right: 10px;
}

.footer-logo span {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  font-family: "Arial", Sans-serif;
}

.footer-nav ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav ul li {
  margin-left: 20px;
  white-space: nowrap;
}

.footer-nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  font-family: "Arial", Sans-serif;
  transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
  color: #c1c1c1;
}

.footer-disclaimers {
  padding: 30px 0;
  background-color: #00214a;
  font-family: "Arial", Sans-serif;
}

.risk-warning,
.risk-disclosure,
.legal-restrictions {
  margin-bottom: 20px;
}

.warning-title,
.disclosure-title,
.restrictions-title {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
  display: inline;
  font-size: 14px;
}

.footer-disclaimers p {
  color: #ffffff;
  font-size: 13px;
}

.risk-warning,
.risk-disclosure,
.legal-restrictions {
  margin-bottom: 0px;
}

/*  ********************************* invest page ********************************** */

.trade-invest {
  background-image: url(/assets/traderai-trade-and-invest-home-bg01-1-scaled.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 220px;
  display: flex;
  align-items: center;
  position: relative;
}

.trade-invest::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.trade-content {
  width: 100%;
  /* margin-inline: auto; */
  position: relative;
  z-index: 1;
}

.trade-content h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 500;
  font-family: "Arial", sans-serif;
}

.trade-content p {
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
  font-family: "Arial", sans-serif;
}

.trade-content a {
  color: rgb(192, 2, 2);
  text-decoration: none;
}

/* Investment Journey Section Styles */
.investment-journey {
  background-color: #fff;
  padding: 60px 0;
}

.investment-journey h2 {
  color: #00214a;
  font-size: 28px;
  font-weight: 600;
  font-family: "Arial", sans-serif;
  margin-bottom: 25px;
}

.investment-journey p {
  margin-bottom: 20px;
  font-family: "Arial", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #00214a;
}

.highlight-text {
  color: #ff5722;
  font-weight: 600;
}

.investment-benefits {
  padding-left: 20px;
  margin-bottom: 20px;
}

.investment-benefits li {
  color: #454545;
  font-size: 18px;
  margin-bottom: 10px;
  font-family: "Arial", sans-serif;
  position: relative;
  padding-left: 5px;
}

.investment-journey .button-container {
  margin-top: 30px;
  text-align: left;
}

/* Beginner or Pro Section Styles */
.beginner-pro-section {
  background-color: #00d37e;
  padding: 60px 0;
}

.beginner-pro-section .section-title {
  color: #00214a;
  margin-bottom: 20px;
  font-family: "Arial", Sans-serif;
  font-size: 40px;
  font-weight: 500;
}

.beginner-pro-section .container .row .col-md-6 {
  display: flex;
}

.beginner-pro-section .container .row .resource-box {
  flex: 1;
}

.resource-box {
  background-color: #00d27a;
  border: 1px solid #00214a;
  border-radius: 15px;
  padding: 25px 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.box-title {
  color: #00214a;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: "Arial", sans-serif;
  text-align: center;
}

.box-content {
  color: #00214a;
  font-size: 18px;
  font-family: "Arial", sans-serif;
  text-align: center;
}

.safety-first {
  padding: 50px 0px;
}

.safety-first p {
  color: #00214a;
  line-height: 30px;
}

/* Investment Journey Steps Section */
.investment-journey-steps {
  background-color: #00ce78;
  padding: 60px 0 20px 0px;
}

.investment-journey-steps .section-title {
  color: #00214a;
  margin-bottom: 10px;
  font-family: "Arial", Sans-serif;
  font-size: 28px;
  font-weight: 500;
}

.step-box {
  padding: 15px;
  height: 100%;
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  gap: 20px;
}

.step-icon {
  margin-bottom: 15px;
}

.step-icon img {
  width: 50px;
  height: 50px;
  opacity: 0.9;
}

.step-title {
  color: #00214a;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: "Arial", sans-serif;
  text-align: left;
}

.step-content {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.register-btn {
  display: inline-block;
  background-color: #00214a;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Arial", sans-serif;
  font-size: 18px;
  text-align: center;
}

.register-btn:hover {
  background-color: #001b3e;
  color: white;
}

.app-store-btn {
  display: inline-block;
  margin-left: 20px;
  vertical-align: middle;
}

.app-store-btn img {
  height: 42px;
}

.investment-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}

.step-icon i {
  font-size: 50px;
}

.future-awaits h2 {
  font-family: "Arial", Sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #00214a;
}

.future-awaits {
  padding-bottom: 50px;
}

/* Market Page Styles */
.market-banner {
  background-image: url(/assets/TraderAi-Market.webp);
  background-size: cover;
  background-position: center;
  padding: 40px 10px;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.market-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 216, 186, 0.5);
  /* #05D8BA with opacity */
  z-index: 1;
}

.market-banner .container {
  max-width: 1140px;
  position: relative;
}

.market-banner h1 {
  color: #f8f8f8;
  font-size: 40px;
  font-weight: 600;
  font-family: "Arial", sans-serif;
  line-height: 1.2;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.market-content {
  padding: 60px 0;
}

.market-content .container {
  max-width: 1140px;
}

.market-content p {
  color: #00214a;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-family: "Arial", sans-serif;
}

.market-content ul {
  padding-left: 40px;
  margin-bottom: 25px;
  list-style-type: disc;
}

.market-content ul li {
  color: #00214a;
  font-size: 18px;
  margin-bottom: 10px;
  font-family: "Arial", sans-serif;
  position: relative;
  line-height: 1.5;
}

/* Trading tips and features section */
.trading-section h2 {
  color: #00214a;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 25px;
  font-family: "Arial", sans-serif;
}

.trading-section h3 {
  color: #00214a;
  font-size: 28px;
  font-weight: 600;
  margin: 30px 0 20px;
  font-family: "Arial", sans-serif;
}

.trading-section p {
  color: #00214a;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-family: "Roboto";
}

.trading-section ul {
  padding-left: 25px;
  margin-bottom: 25px;
  list-style-type: disc;
}

.trading-section ul li {
  color: #00214a;
  font-size: 18px;
  margin-bottom: 8px;
  font-family: "Arial", sans-serif;
  line-height: 1.5;
}

.trading-section .tip-title {
  font-weight: 600;
  color: #00214a;
}

.trading-section a {
  color: #cc3366;
  text-decoration: none;
  transition: color 0.3s ease;
}

.trading-section a:hover {
  color: #00214a;
  text-decoration: underline;
}

/* Join Us section */
.join-us-section {
  background-color: #aaf781;
  padding: 50px 90px 50px 20px;
  margin-bottom: 10px;
  margin-top: 100px;
}

.join-us-section h3 {
  color: #00214a;
  font-size: 28px;
  font-weight: 600;
  font-family: "Arial", sans-serif;
}

.join-us-section p {
  color: #00214a;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 0;
  font-family: "Arial", sans-serif;
}

.join-us-section .signup-link {
  color: #cc3366;
  text-decoration: none;
  transition: color 0.3s ease;
}

.join-us-section .signup-link:hover {
  text-decoration: underline;
}

/* How It Works Page Styles */
.how-it-works-section {
  padding: 80px 0;
  text-align: center;
}

.how-it-works-heading {
  color: #000;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 60px;
  font-family: "Roboto", sans-serif;
}

.video-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 40px;
  position: relative;
  border-right: 1px solid #000;
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

.start-now-btn {
  background-color: #00214a;
  color: #fff;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
  text-decoration: none;
  font-family: "Arial", Sans-serif;
  font-size: 18px;
  font-weight: 500;
  padding: 20px 60px 20px 60px;
}

.start-now-btn:hover {
  background-color: #001530;
  color: #fff;
}

/* Automated Trading Page Styles */

.automated-banner {
  padding: 60px 0;
}

.automated-banner h1 {
  color: #00214a;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: "Arial", Sans-serif;
}

.automated-banner h2 {
  color: #00214a;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 25px;
  font-family: "Arial", Sans-serif;
}

.automated-banner p {
  color: #00214a;
  margin-bottom: 20px;
  font-family: "Arial", Sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}

.automated-banner img {
  max-width: 100%;
  height: 311px;
}

.features-section {
  padding: 60px 0;
  background-color: #fff;
}

.features-section h2 {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 28px;
  font-weight: 600;
}

.feature-heading {
  color: #00214a;
  font-size: 18px;
  font-family: "Arial", Sans-serif;
  font-weight: 600;
  margin-bottom: 5px;
}

.feature-text {
  color: #00214a;
  font-size: 18px;
  line-height: 1.5;
  font-family: "Arial", Sans-serif;
  margin-top: 0;
  margin-bottom: 20px;
}

.feature-text p {
  color: #00214a;
  font-size: 18px;
  line-height: 1.5;
  font-family: "Arial", Sans-serif;
  margin-top: 0;
  margin-bottom: 20px;
}

.strategy-link {
  color: #cc3366;
  text-decoration: none;
  font-weight: 500;
}

.strategy-link:hover {
  text-decoration: underline;
}

/* Benefits Section Styles */

.benefits-section {
  padding: 60px 0;
  background-color: #fff;
}

.benefits-section h2 {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 25px;
}

.benefit-heading {
  color: #00214a;
  font-size: 18px;
  font-family: "Arial", Sans-serif;
  font-weight: 600;
  margin-bottom: 5px;
}

.benefit-text {
  color: #00214a;
  font-size: 18px;
  line-height: 1.6;
  font-family: "Arial", Sans-serif;
  margin-top: 0;
  margin-bottom: 25px;
}

.benefit-text p {
  color: #00214a;
  font-size: 18px;
  line-height: 1.6;
  font-family: "Arial", Sans-serif;
  margin-top: 0;
  margin-bottom: 25px;
}

/* Conclusion Section Styles */
.conclusion-section {
  padding: 0;
  margin: 10px 0px;
}

.conclusion-content {
  background-color: #048800;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
  position: relative;
}

.conclusion-content::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #fff;
}

.conclusion-section h2 {
  color: white;
  font-family: "Arial", Sans-serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

.conclusion-section p {
  color: white;
  font-family: "Arial", Sans-serif;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.note-section {
  margin-top: 20px;
}

.note-section p {
  font-size: 15px;
}

.contact-section {
  margin-top: 20px;
}

.phone-numbers {
  margin-top: 5px;
}

.phone-number {
  color: #00214a;
  font-weight: 600;
  margin-right: 15px;
}

.contact-section h3 {
  color: white;
  font-family: "Arial", Sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-link {
  color: #cc3366;
  text-decoration: none;
  font-weight: 500;
}

.contact-link:hover {
  text-decoration: underline;
}

/* Privacy Policy Styles */
.privacy-policy-section {
  padding: 60px 0;
}

.privacy-policy-title {
  color: #00214a;
  text-align: center;
  font-family: "Arial", Sans-serif;
  font-size: 60px;
  font-weight: 500;
  margin-bottom: 15px;
}

.privacy-policy-subtitle {
  color: #00214a;
  font-size: 32px;
  font-weight: 600;
  margin: 30px 0 15px;
  font-family: "Roboto", Sans-serif;
  padding-bottom: 10px;
}

.privacy-policy-text {
  color: #00214a;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  font-family: "Roboto", Sans-serif;
}

.privacy-policy-list {
  padding-left: 20px;
  margin-bottom: 20px;
}

.privacy-policy-list li {
  color: #444;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 10px;
  font-family: "Roboto", Sans-serif;
}

.emphasis-text {
  color: #ff5722;
  font-weight: 600;
}

.first-text {
  color: #00214a;
  font-size: 20px !important;
  text-align: left;
  font-family: "Arial", Sans-serif;
  font-weight: 400;
  line-height: 30px;
}

.privacy-policy-text.highlight-text {
  color: #ff5722;
  font-weight: 600;
  text-transform: capitalize;
}

.privacy-policy-text a.terms-link {
  color: #00214a;
  font-weight: 500;
  text-decoration: underline;
}

.privacy-policy-text a.terms-link:hover {
  color: #0056b3;
}

/* Terms and Conditions Styles */
.terms-section {
  padding: 60px 0;
}

.terms-title {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 15px;
}

.terms-subtitle {
  color: #0e3343;
  font-size: 32px;
  font-weight: 800;
  margin: 30px 0 15px;
  font-family: "arial", Sans-serif;
  padding-bottom: 10px;
}

.terms-intro {
  color: #00214a;
  font-size: 18px;
  text-align: left;
  font-family: "Arial", Sans-serif;
  font-weight: 400;
  line-height: 30px;
}

.terms-content {
  padding-left: 40px;
  margin-top: 25px;
}

.terms-item {
  margin-bottom: 20px;
}

.terms-text {
  color: #00214a;
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: "Arial", Sans-serif;
}

.term-heading {
  color: #00214a;
  font-weight: 600;
  font-family: "Arial", Sans-serif;
  margin-right: 5px;
  display: inline-block;
}

.terms-item .terms-text strong {
  color: #00214a;
  font-weight: 600;
  font-family: "Arial", Sans-serif;
  margin-right: 5px;
}

.terms-text.highlight-text {
  color: #ff5722;
  font-weight: 600;
  text-transform: capitalize;
}

.terms-text a.terms-link {
  color: #cc3366;
  font-weight: 500;
  text-decoration: none;
}

.terms-text a.terms-link:hover {
  color: #0056b3;
}

.highlight-text {
  color: #ff5722;
  font-weight: 600;
}

.contact-section {
  margin-top: 20px;
}

/* About Page Styles */
.about-hero {
  text-align: center;
  padding: 50px 0 30px;
}

.about-hero h1 {
  color: #00214a;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: "Arial", Sans-serif;
}

.about-hero p {
  color: #00214a;
  font-size: 18px;
  line-height: 1.6;
  font-family: "Roboto", Sans-serif;
}

.about-vision {
  background-color: #00d37e;
  position: relative;
  overflow: hidden;
  margin: 40px auto;
  border-radius: 15px;
  height: 350px;
  width: 80%;
  display: flex;
  align-items: center;
}

.about-vision::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/assets/Traderai-Pioneering-the-Future-of-Trading.webp);
  background-size: cover;
  background-position: bottom;
  opacity: 0.15;
  z-index: 1;
}

.about-vision .container {
  position: relative;
  z-index: 2;
}

.about-vision h2 {
  color: #00214a;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: "Arial", Sans-serif;
  text-align: center;
}

.about-vision p {
  color: #00214a;
  font-size: 18px;
  line-height: 1.6;
  font-family: "Roboto", Sans-serif;
  text-align: center;
}

.what-sets-us {
  padding: 40px 0 0px;
}

.what-sets-us h2 {
  color: #00214a;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 35px;
  font-family: "Arial", Sans-serif;
}

.feature-item {
  margin-bottom: 25px;
}

.feature-item h3 {
  color: #00214a;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  font-family: "Arial", Sans-serif;
}

.feature-item p {
  color: #00214a;
  font-size: 18px;
  line-height: 1.6;
  font-family: "Roboto", Sans-serif;
  margin-bottom: 0;
}

.feature-item a {
  color: #cc3366;
  text-decoration: none;
}

.feature-number {
  font-weight: bold;
  margin-right: 5px;
}

/* Subsidiaries Section Styles */
.subsidiaries-section {
  padding: 20px 0 60px;
}

.subsidiaries-section h2 {
  color: #00214a;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
  font-family: "Arial", Sans-serif;
}

.subsidiaries-section h3 {
  color: #00214a;
  font-size: 22px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  font-family: "Arial", Sans-serif;
}

.subsidiaries-list {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 30px;
}

.subsidiaries-list li {
  color: #00214a;
  font-size: 18px;
  margin-bottom: 12px;
  font-family: "Roboto", Sans-serif;
  line-height: 1.6;
}

.subsidiaries-list strong {
  font-weight: 600;
  font-family: "Arial", Sans-serif;
}

.join-text,
.connected-text {
  color: #00214a;
  font-size: 18px;
  line-height: 1.6;
  font-family: "Roboto", Sans-serif;
  margin-bottom: 20px;
}

.future-link {
  color: #cc3366;
  text-decoration: none;
}

.future-link:hover {
  text-decoration: underline;
}

/* *******************************contact-section*************************************** */

.contact-title {
  text-align: center;

  padding-top: 30px;
}

.contact-title h1 {
  font-family: "Arial", Sans-serif;

  font-size: 40px;

  font-weight: 500;

  color: #000000;
}

.contact-form-section {
  padding: 60px 0px;
}

.contact-form-container {
  background-color: #00d37e;

  border-radius: 20px;

  padding: 30px;

  max-width: 500px;

  margin: 0 auto;

  width: 80%;
}

.contact-form-container h2 {
  color: #333;

  margin-bottom: 15px;

  font-weight: 800;

  text-align: center;

  text-transform: uppercase;

  font-size: 26px;
}

.contact-form label {
  display: block;

  font-weight: 400;

  color: #333;
}

.contact-form .form-control {
  width: 100%;

  border: 1px solid #666;

  border-radius: 3px;

  padding: 0.5rem 1rem;

  transition: all 0.3s;
}

.contact-form-btn {
  background-color: #000;

  color: #fff;

  border: none;

  padding: 10px 0;

  width: 100%;

  margin-top: 15px;

  text-transform: uppercase;

  font-size: 16px;
}

.policy-text {
  text-align: left;

  margin-top: 15px;

  font-size: 15px;

  color: #000;

  font-family: poppins;
}

.policy-text a {
  color: #333;

  text-decoration: underline;

  font-weight: 600;
}

.contact-info {
  display: flex;

  flex-direction: column;

  justify-content: center;

  padding-left: 50px;
}

.contact-info-item {
  display: flex;

  align-items: center;

  margin-bottom: 25px;
}

.contact-info-icon {
  margin-right: 15px;
}

.contact-info-text {
  font-size: 16px;

  color: #333;

  font-weight: 500;
}

.contact-support {
  text-align: center;

  margin-top: 30px;
}

.contact-support h3 {
  margin-bottom: 15px;

  font-family: "Arial", Sans-serif;

  font-size: 28px;

  font-weight: 600;
}

.contact-support-btn {
  background-color: #61ce70;

  color: #fff;

  border: none;

  padding: 10px 30px;

  font-weight: 600;

  border-radius: 3px;

  text-decoration: none;

  display: inline-block;

  transition: background-color 0.3s;

  font-size: 18px;
}

.contact-support-btn:hover {
  background-color: #5aa8c9;

  color: #fff;
}

.contact-info .contact-info-item {
  padding-left: 42px;

  padding-bottom: 25px;

  font-family: "Arial", Sans-serif;

  font-size: 18px;

  font-weight: 400;

  line-height: 16px;
}

.contact-info .contact-info-item i {
  font-size: 20px;
}

/* *******************************metatrader-section*************************************** */

.metaTrader-header-section {
  background-color: #0a0e17;

  color: white;

  min-height: 220px;

  position: relative;

  overflow: hidden;

  background-image: url("/assets/traderai-mt5-scaled.webp");

  background-size: cover;

  background-position: center;

  display: flex;
  align-items: flex-end;
}
.metaTrader-header-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.metaTrader-header-section .container {
  position: relative;
  z-index: 2;
}

.metaTrader-header-section h1 {
  font-size: 2.5rem;

  margin-bottom: 20px;

  font-family: "Arial", Sans-serif;
  font-weight: 500;
  color: #ffffff;
}

.metaTrader-header-section p {
  font-family: "Arial", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: #ffffff;
}
.metatrader-content-section .row {
  margin-bottom: 30px;
}

.metatrader-content-section {
  padding: 40px 0;
}

.metatrader-content-section h2 {
  color: #00214a;

  margin-bottom: 25px;

  font-family: "Arial", Sans-serif;
  font-size: 30px;
  font-weight: 600;
}

.metatrader-content-section p {
  color: #00214a;
  font-size: 18px;
  line-height: 30px;
  font-family: "Roboto", Sans-serif;
  margin-bottom: 20px;
  font-weight: 400;
}

/* MT5 Features specific styles */
.highlight-pink {
  color: #cc3366;
}

.highlight-bold {
  font-weight: bold;
}

.highlight-italic {
  font-style: italic;
  font-weight: bold;
}

/* Link styles for the MT5 Features section */
.metatrader-content-section a {
  text-decoration: none;
}

.metatrader-content-section a {
  color: #cc3366;
}

.metatrader-content-section a.highlight-bold {
  font-weight: bold;
  color: inherit;
}

/* *******************************metatrader-section*************************************** */

/* ***********************************************flexible-deposit-section*************************************************** */

.deposit-hero {
  background-image: url("/assets/traderai-flexible-deposit.webp");
  background-size: cover;
  background-position: center;
  color: white;
  /* padding: 80px 0; */
  position: relative;
  text-align: center;
  min-height: 220px;
  display: flex;
  align-items: end;
  justify-content: flex-start;
}

.deposit-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.deposit-hero .container {
  position: relative;
  z-index: 1;
  text-align: left;
}

.deposit-hero h1 {
  font-size: 40px;
  font-family: "Arial", Sans-serif;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 20px;
}

.deposit-hero p {
  font-family: "Arial", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
}

.crypto-options {
  padding: 40px 0px;
}

.crypto-options h2 {
  margin-bottom: 20px;
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 28px;
  font-weight: 600;
}

.crypto-card {
  background-color: #00d37e;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  width: 90%;
  color: #0d2944;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.crypto-card h3 {
  font-family: "Arial", Sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #00214a;
}

.crypto-card p {
  font-size: 16px;
  font-family: "Arial", Sans-serif;
  font-weight: 300;
  color: #000000;
}

.crypto-card .highlight {
  color: #cc3366;
}

.deposit-steps h2 {
  font-family: "Arial", Sans-serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #00214a;
}

/* .deposit-steps ol {
    counter-reset: step-counter;
    list-style-type: none;
    padding-left: 0;
} */

.deposit-steps ol li {
  margin-bottom: 12px;
  font-family: "Arial", Sans-serif;
  font-size: 16px;
  font-weight: 400;

  position: relative;
}

.deposit-steps ol li strong {
  color: #0d2944;
  font-weight: 700;
  font-size: 16px;
}

.deposit-steps ol li em {
  color: #cc3366;
  font-style: normal;
}

/* Key Features Styles */
.key-features {
  padding: 60px 0px 20px 0px;
}

.key-features h2 {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.feature-card {
  background-color: #00d37e;
  border-radius: 12px;
  padding: 30px 50px;
  height: 100%;
  color: #00214a;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.feature-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.feature-img {
  width: 50px;
  height: auto;
}

.feature-svg {
  color: #00214a;
  width: 46px;
  height: 46px;
}

.feature-card h3 {
  font-family: "Arial", Sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #00214a;
  margin-bottom: 15px;
}

.feature-card p {
  font-family: "Arial", Sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #00214a;
  font-weight: 400;
  margin: 0;
}

.key-features .row {
  margin-left: -10px;
  margin-right: -10px;
}

.key-features .col-md-6 {
  padding: 0 10px;
}

.assistance-section {
  margin-top: 50px;
}

.assistance-section h3 {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.assistance-section p {
  font-family: "Arial", Sans-serif;
  font-size: 16px;
  color: #00214a;
  margin: 0;
  width: 80%;
}

.assistance-section a {
  color: #cc3366;
  text-decoration: none;
}

.assistance-section a:hover {
  text-decoration: underline;
}
/* ***********************************************flexible-deposit-section*************************************************** */

/* ***********************************************why-choose-forex-trading-section*************************************************** */

/* Why Forex Trading Styles */
.forex-section {
  padding: 60px 0 40px;
}

.forex-heading {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}

.forex-text {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 0;
  width: 60%;
}

.forex-text strong {
  color: #00214a;
  font-weight: 600;
}

.forex-text-bold {
  color: #00214a;
  font-weight: 600;
}

.forex-image {
  max-width: 100%;
  height: auto;
  border-radius: 0;
}

.forex-advantages {
  margin-top: 0;
  padding: 60px 60px 0px 60px;
}

.advantage-card {
  margin-bottom: 100px;
}

.forex-advantages .row .col-lg-6:nth-of-type(3) .advantage-text {
  border-bottom: 4px solid #cccccc; /* Add your style */
  padding-bottom: 100px;
}
.forex-advantages .row .col-lg-6:nth-of-type(4) .advantage-text {
  border-bottom: 4px solid #cccccc; /* Add your style */
  padding-bottom: 125px;
}

.advantage-title {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  border-top: 4px solid #cccccc;
  padding: 10px 0 15px;
}

.advantage-text {
  color: #333;
  font-family: "Arial", Sans-serif;
  font-size: 16px;
  line-height: 1.6;
  max-width: 100%;
}

.forex-highlight {
  color: #cc3366;
  font-style: normal;
  font-weight: normal;
}
.forex-image {
  height: 85%;
}

.advantage-text strong {
  color: #00214a;
  font-weight: 600;
}

.forex-intro {
  max-width: 100%;
}

.italic-highlight {
  font-style: italic;
  color: #cc3366;
}
/* Educational Resources Section */
.educational-resources {
  margin-bottom: 60px;
  background-color: #fff;
  text-align: center;
}

.resources-heading {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.resources-text {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
/* ***********************************************why-choose-forex-trading-section*************************************************** */

/* Share Trading Styles */

.share-trading-heading {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.share-trading-image {
  max-width: 100%;
  height: 300px;
  margin-left: auto;
  display: block;
}

.share-advantage-section {
  margin-top: 60px;
  padding-bottom: 40px;
}

.share-advantage-card {
  margin-bottom: 50px;
}

.share-advantage-title {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.share-advantage-text {
  color: #00214a;
  font-family: "Roboto", Sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: 400;
}

.share-highlight-text {
  color: #cc3366;
  font-weight: normal;
}

.share-text-bold {
  color: #00214a;
  font-weight: 700;
}

.share-text-italic {
  font-style: italic;
  color: #00214a;
  font-weight: bold;
}

/* CFDs Share Trading Styles */
.cfd-hero {
  background-image: url("/assets/CFDs-share-Trading.webp");
  background-size: cover;
  background-position: center;
  padding: 20px 0;
  position: relative;
  color: white;
  min-height: 220px;
  display: flex;
  align-items: end;
  justify-content: flex-start;
}

.cfd-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.cfd-hero-content {
  position: relative;
  z-index: 2;
}

.cfd-hero-title {
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
  font-family: "Arial", Sans-serif;
}

.cfd-hero-text {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  margin: 0 auto;
  font-family: "Arial", Sans-serif;
}

.cfd-content-section {
  padding: 30px 0 0;
}

.cfd-section {
  margin-bottom: 40px;
}

.cfd-section-title {
  font-size: 28px;
  font-weight: 600;
  color: #00214a;
  margin-bottom: 20px;
  font-family: "Arial", Sans-serif;
}

.cfd-text {
  font-size: 16px;
  line-height: 1.6;
  color: #00214a;
  font-family: "Roboto", Sans-serif;
  margin-bottom: 15px;
}

.cfd-highlight {
  color: #cc3366;
  font-weight: normal;
}

.cfd-bold {
  font-weight: 700;
  color: #00214a;
}

.cfd-italic {
  font-style: italic;
}

/* Indices CFDs Trading Styles */
.indices-hero {
  background-image: url("/assets/Indices-CFDs-Trading.webp");
  background-size: cover;
  background-position: center;
  padding: 20px 0;
  position: relative;
  color: white;
  min-height: 220px;
  display: flex;
  align-items: end;
  justify-content: flex-start;
}

.indices-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.indices-hero-content {
  position: relative;
  z-index: 2;
}

.indices-hero-title {
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
  font-family: "Arial", Sans-serif;
}

.indices-hero-text {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  margin: 0 auto;
  font-family: "Arial", Sans-serif;
}

.indices-content-section {
  padding: 60px 0 0;
}

.indices-section {
  margin-bottom: 40px;
}

.indices-section-title {
  font-size: 28px;
  font-weight: 600;
  color: #00214a;
  margin-bottom: 20px;
  font-family: "Arial", Sans-serif;
}

.indices-text {
  font-size: 16px;
  line-height: 1.6;
  color: #00214a;
  font-family: "Roboto", Sans-serif;
  margin-bottom: 15px;
}

.indices-highlight {
  color: #cc3366;
  font-weight: normal;
}

.indices-italic {
  font-style: italic;
}

/* trade-and-commodities Trading Styles */
.trade-and-commodities {
  background-image: url("/assets/Trade-and-Commodities-CFDs.webp");
  background-size: cover;
  background-position: center;
  padding: 20px 0;
  position: relative;
  color: white;
  min-height: 220px;
  display: flex;
  align-items: end;
  justify-content: flex-start;
}

.trade-and-commodities::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* choose-to-trade-crypto Styles */
.choose-to-trade-crypto {
  background-image: url("/assets/Choose-to-Trade-Crypto-CFDs-in-AI-Trading.webp");
  background-size: cover;
  background-position: center;
  padding: 20px 0;
  position: relative;
  color: white;
  min-height: 220px;
  display: flex;
  align-items: end;
  justify-content: flex-start;
}

.choose-to-trade-crypto::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* etfs-funds Styles */
.etfs-funds {
  background-image: url("/assets/Indices-CFDs-Trading.webp");
  background-size: cover;
  background-position: center;
  padding: 20px 0;
  position: relative;
  color: white;
  min-height: 220px;
  display: flex;
  align-items: end;
  justify-content: flex-start;
}

.etfs-funds::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* instruments-specification Styles */
.instruments-specification {
  background-image: url("/assets/Instruments-Specification-in-AI-Trading.webp");
  background-size: cover;
  background-position: center;
  padding: 20px 0;
  position: relative;
  color: white;
  min-height: 220px;
  display: flex;
  align-items: end;
  justify-content: flex-start;
}

.instruments-specification::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* download-traderai-app Styles */

.download-app-wrapper .download-title {
  font-size: 40px;
  margin: 20px 0 40px;
  font-family: "Arial", Sans-serif;
  font-weight: 500;
  color: #00214a;
}
.download-app-wrapper .download-screens img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.download-app-wrapper .download-description h2 {
  font-family: "Arial", Sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: #00214a;
  margin-bottom: 20px;
}

.download-app-wrapper .download-description p {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  margin: 0 auto 50px;
}

.download-app-wrapper .download-feature-section {
  margin: 0 auto;
  text-align: left;
}

.download-app-wrapper .download-feature-section h2 {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 30px;
}
.download-app-wrapper .download-feature-section ul li::marker {
  color: #7a7a7a;
}

.download-app-wrapper .download-feature-list h3 {
  font-size: 16px;
  color: #00214a;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: "Roboto", Sans-serif;
}

.download-app-wrapper .download-feature-list p {
  color: #2c3e50;
  font-size: 16px;
  font-family: "Roboto", Sans-serif;
}

.download-app-wrapper .download-now-title {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: left;
}
.download-app-wrapper .download-now-section .download-options li::marker {
  color: #7a7a7a;
}
.download-app-wrapper .download-options p {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 16px;
}

.download-app-wrapper .app-store-link {
  color: #000;
  text-decoration: none;
}
/* Get Started Section */
.download-app-wrapper .get-started-section {
  margin-top: 50px;
}

.download-app-wrapper .get-started-title {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 30px;
}

.download-app-wrapper .steps-list li {
  margin-bottom: 5px;
  color: #00214a;
  font-family: "Roboto", Sans-serif;
  font-size: 16px;
}
.download-app-wrapper .steps-list li::marker {
  color: #7a7a7a;
}

/* Contact Section */
.download-app-wrapper .down-contact-section {
  margin-top: 60px;
}

.download-app-wrapper .down-contact-title {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}

.download-app-wrapper .down-contact-section p {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 16px;
}

.download-app-wrapper .down-contact-link {
  color: #cc3366;
  text-decoration: none;
}

.download-app-wrapper .down-contact-link:hover {
  text-decoration: underline;
}

.download-app-wrapper .download-step-content {
  color: #00214a;
  font-family: "Roboto", Sans-serif;
  font-size: 16px;
}

.download-app-wrapper .download-step-content strong {
  font-weight: 600;
  margin-right: 5px;
}

/* MetaTrader 5 Page Styles */

.metaTrader-header-section {
  background-color: #0a0e17;
  color: white;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  background-image: url("/assets/traderai-mt5-scaled.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.metaTrader-header-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.metaTrader-header-section .container {
  position: relative;
  z-index: 2;
}

.metaTrader-header-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-family: "Arial", Sans-serif;
  font-weight: 500;
  color: #ffffff;
}

.metaTrader-header-section p {
  font-family: "Arial", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: #ffffff;
}

.metatrader-content-section {
  padding: 40px 0;
}

.metatrader-content-section .row {
  margin-bottom: 30px;
}

.metatrader-content-section h2 {
  color: #00214a;
  margin-bottom: 25px;
  font-family: "Arial", Sans-serif;
  font-size: 30px;
  font-weight: 600;
}

.metatrader-content-section p {
  color: #00214a;
  font-size: 18px;
  line-height: 30px;
  font-family: "Roboto", Sans-serif;
  margin-bottom: 20px;
  font-weight: 400;
}

/* MT5 Features specific styles */
.highlight-pink {
  color: #cc3366;
}

.highlight-bold {
  font-weight: bold;
}

.highlight-italic {
  font-style: italic;
  font-weight: bold;
}

/* Link styles for the MT5 Features section */
.metatrader-content-section a {
  text-decoration: none;
  color: #cc3366;
}

.metatrader-content-section a.highlight-bold {
  font-weight: bold;
  color: inherit;
}

/* Flexible Deposit Options Page Styles */

.deposit-hero {
  background-image: url("/assets/traderai-flexible-deposit.webp");
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
  text-align: center;
  min-height: 220px;
  display: flex;
  align-items: end;
  justify-content: flex-start;
}

.deposit-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.deposit-hero .container {
  position: relative;
  z-index: 1;
  text-align: left;
}

.deposit-hero h1 {
  font-size: 40px;
  font-family: "Arial", Sans-serif;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 20px;
}

.deposit-hero p {
  font-family: "Arial", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
}

.crypto-options {
  padding: 40px 0px;
}

.crypto-options h2 {
  margin-bottom: 20px;
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 28px;
  font-weight: 600;
}

.crypto-card {
  background-color: #00d37e;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  width: 90%;
  color: #0d2944;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.crypto-card h3 {
  font-family: "Arial", Sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #00214a;
}

.crypto-card p {
  font-size: 16px;
  font-family: "Arial", Sans-serif;
  font-weight: 300;
  color: #000000;
}

.crypto-card .highlight {
  color: #cc3366;
}

.deposit-steps {
  padding: 40px 0;
}

.deposit-steps h2 {
  font-family: "Arial", Sans-serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #00214a;
}

.deposit-steps ol li {
  margin-bottom: 12px;
  font-family: "Arial", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  position: relative;
}

.deposit-steps ol li strong {
  color: #0d2944;
  font-weight: 700;
  font-size: 16px;
}

.deposit-steps ol li em {
  color: #cc3366;
  font-style: normal;
}

/* Key Features Styles */
.key-features {
  padding: 60px 0px 20px 0px;
}

.key-features h2 {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.feature-card {
  background-color: #00d37e;
  border-radius: 12px;
  padding: 30px 50px;
  height: 100%;
  color: #00214a;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.feature-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.feature-img {
  width: 50px;
  height: auto;
}

.feature-svg {
  color: #00214a;
  width: 46px;
  height: 46px;
}

.feature-card h3 {
  font-family: "Arial", Sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #00214a;
  margin-bottom: 15px;
}

.feature-card p {
  font-family: "Arial", Sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #00214a;
  font-weight: 400;
  margin: 0;
}

.key-features .row {
  margin-left: -10px;
  margin-right: -10px;
}

.key-features .col-md-6 {
  padding: 0 10px;
}

.assistance-section {
  margin-top: 50px;
}

.assistance-section h3 {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.assistance-section p {
  font-family: "Arial", Sans-serif;
  font-size: 16px;
  color: #00214a;
  margin: 0;
  width: 80%;
}

.assistance-section a {
  color: #cc3366;
  text-decoration: none;
}

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

/* Why Choose Forex Trading Page Styles */

.forex-section {
  padding: 60px 0 40px;
}

.forex-heading {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}

.forex-text {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 0;
  width: 60%;
}

.forex-text strong {
  color: #00214a;
  font-weight: 600;
}

.forex-text-bold {
  color: #00214a;
  font-weight: 600;
}

.forex-image {
  max-width: 100%;
  height: 85%;
  border-radius: 0;
}

.forex-intro {
  max-width: 100%;
}

.forex-advantages {
  margin-top: 0;
  padding: 60px 60px 0px 60px;
}

.advantage-card {
  margin-bottom: 100px;
}

.forex-advantages .row .col-lg-6:nth-of-type(3) .advantage-text {
  border-bottom: 4px solid #cccccc;
  padding-bottom: 100px;
}

.forex-advantages .row .col-lg-6:nth-of-type(4) .advantage-text {
  border-bottom: 4px solid #cccccc;
  padding-bottom: 125px;
}

.advantage-title {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  border-top: 4px solid #cccccc;
  padding: 10px 0 15px;
}

.advantage-text {
  color: #333;
  font-family: "Arial", Sans-serif;
  font-size: 16px;
  line-height: 1.6;
  max-width: 100%;
}

.advantage-text strong {
  color: #00214a;
  font-weight: 600;
}

.forex-highlight {
  color: #cc3366;
  font-style: normal;
  font-weight: normal;
}

.italic-highlight {
  font-style: italic;
  color: #cc3366;
}

/* Educational Resources Section */
.educational-resources {
  margin-bottom: 60px;
  background-color: #fff;
  text-align: center;
}

.resources-heading {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.resources-text {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Share Trading Page Styles */

.share-trading-section {
  padding: 60px 0;
}

.share-trading-heading {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.share-trading-image {
  max-width: 100%;
  height: 300px;
  margin-left: auto;
  display: block;
}

.share-advantage-section {
  margin-top: 60px;
  padding-bottom: 40px;
}

.share-advantage-card {
  margin-bottom: 50px;
}

.share-advantage-title {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.share-advantage-text {
  color: #00214a;
  font-family: "Roboto", Sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: 400;
}

.share-highlight-text {
  color: #cc3366;
  font-weight: normal;
}

.share-text-bold {
  color: #00214a;
  font-weight: 700;
}

.share-text-italic {
  font-style: italic;
  color: #00214a;
  font-weight: bold;
}

/* CFDs Share Trading Page Styles */

.cfd-hero {
  background-image: url("/assets/CFDs-share-Trading.webp");
  background-size: cover;
  background-position: center;
  padding: 20px 0;
  position: relative;
  color: white;
  min-height: 220px;
  display: flex;
  align-items: end;
  justify-content: flex-start;
}

.cfd-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.cfd-hero-content {
  position: relative;
  z-index: 2;
}

.cfd-hero-title {
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
  font-family: "Arial", Sans-serif;
}

.cfd-hero-text {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  margin: 0 auto;
  font-family: "Arial", Sans-serif;
}

.cfd-content-section {
  padding: 30px 0 0;
}

.cfd-section {
  margin-bottom: 40px;
}

.cfd-section-title {
  font-size: 28px;
  font-weight: 600;
  color: #00214a;
  margin-bottom: 20px;
  font-family: "Arial", Sans-serif;
}

.cfd-text {
  font-size: 16px;
  line-height: 1.6;
  color: #00214a;
  font-family: "Roboto", Sans-serif;
  margin-bottom: 15px;
}

.cfd-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #00214a;
  font-family: "Roboto", Sans-serif;
  margin-bottom: 15px;
}

.cfd-highlight {
  color: #cc3366;
  font-weight: normal;
}

.cfd-bold {
  font-weight: 700;
  color: #00214a;
}

.cfd-italic {
  font-style: italic;
}

/* Indices CFDs Trading Page Styles */

.indices-hero {
  background-image: url("/assets/Indices-CFDs-Trading.webp");
  background-size: cover;
  background-position: center;
  padding: 20px 0;
  position: relative;
  color: white;
  min-height: 220px;
  display: flex;
  align-items: end;
  justify-content: flex-start;
}

.indices-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.indices-hero-content {
  position: relative;
  z-index: 2;
}

.indices-hero-title {
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
  font-family: "Arial", Sans-serif;
}

.indices-hero-text {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  margin: 0 auto;
  font-family: "Arial", Sans-serif;
}

.indices-content-section {
  padding: 60px 0 0;
}

.indices-section {
  margin-bottom: 40px;
}

.indices-section-title {
  font-size: 28px;
  font-weight: 600;
  color: #00214a;
  margin-bottom: 20px;
  font-family: "Arial", Sans-serif;
}

.indices-text {
  font-size: 16px;
  line-height: 1.6;
  color: #00214a;
  font-family: "Roboto", Sans-serif;
  margin-bottom: 15px;
}

.indices-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #00214a;
  font-family: "Roboto", Sans-serif;
  margin-bottom: 15px;
}

.indices-highlight {
  color: #cc3366;
  font-weight: normal;
}

.indices-italic {
  font-style: italic;
}

/* Trade and Commodities CFDs Page Styles */

.trade-and-commodities {
  background-image: url("/assets/Trade-and-Commodities-CFDs.webp");
  background-size: cover;
  background-position: center;
  padding: 20px 0;
  position: relative;
  color: white;
  min-height: 220px;
  display: flex;
  align-items: end;
  justify-content: flex-start;
}

.trade-and-commodities::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Choose to Trade Crypto CFDs Page Styles */

.choose-to-trade-crypto {
  background-image: url("/assets/Choose-to-Trade-Crypto-CFDs-in-AI-Trading.webp");
  background-size: cover;
  background-position: center;
  padding: 20px 0;
  position: relative;
  color: white;
  min-height: 220px;
  display: flex;
  align-items: end;
  justify-content: flex-start;
}

.choose-to-trade-crypto::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* ETFs Funds CFDs Page Styles */

.etfs-funds {
  background-image: url("/assets/Indices-CFDs-Trading.webp");
  background-size: cover;
  background-position: center;
  padding: 20px 0;
  position: relative;
  color: white;
  min-height: 220px;
  display: flex;
  align-items: end;
  justify-content: flex-start;
}

.etfs-funds::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Instruments Specification Page Styles */

.instruments-specification {
  background-image: url("/assets/Instruments-Specification-in-AI-Trading.webp");
  background-size: cover;
  background-position: center;
  padding: 20px 0;
  position: relative;
  color: white;
  min-height: 220px;
  display: flex;
  align-items: end;
  justify-content: flex-start;
}

.instruments-specification::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Download Trader AI App Page Styles */

.download-app-wrapper .download-title {
  font-size: 40px;
  margin: 20px 0 40px;
  font-family: "Arial", Sans-serif;
  font-weight: 500;
  color: #00214a;
}

.download-app-wrapper .download-screens img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.download-app-wrapper .download-description h2 {
  font-family: "Arial", Sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: #00214a;
  margin-bottom: 20px;
}

.download-app-wrapper .download-description p {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  margin: 0 auto 50px;
}

.download-app-wrapper .download-feature-section {
  margin: 0 auto;
  text-align: left;
}

.download-app-wrapper .download-feature-section h2 {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 30px;
}

.download-app-wrapper .download-feature-section ul li::marker {
  color: #7a7a7a;
}

.download-app-wrapper .download-feature-list h3 {
  font-size: 16px;
  color: #00214a;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: "Roboto", Sans-serif;
}

.download-app-wrapper .download-feature-list p {
  color: #2c3e50;
  font-size: 16px;
  font-family: "Roboto", Sans-serif;
}

.download-app-wrapper .download-now-title {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: left;
}

.download-app-wrapper .download-now-section .download-options li::marker {
  color: #7a7a7a;
}

.download-app-wrapper .download-options p {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 16px;
}

.download-app-wrapper .app-store-link {
  color: #000;
  text-decoration: none;
}

/* Get Started Section */
.download-app-wrapper .get-started-section {
  margin-top: 50px;
}

.download-app-wrapper .get-started-title {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 30px;
}

.download-app-wrapper .steps-list li {
  margin-bottom: 5px;
  color: #00214a;
  font-family: "Roboto", Sans-serif;
  font-size: 16px;
}

.download-app-wrapper .steps-list li::marker {
  color: #7a7a7a;
}

/* Contact Section */
.download-app-wrapper .down-contact-section {
  margin-top: 60px;
}

.download-app-wrapper .down-contact-title {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}

.download-app-wrapper .down-contact-section p {
  color: #00214a;
  font-family: "Arial", Sans-serif;
  font-size: 16px;
}

.download-app-wrapper .down-contact-link {
  color: #cc3366;
  text-decoration: none;
}

.download-app-wrapper .down-contact-link:hover {
  text-decoration: underline;
}

.download-app-wrapper .download-step-content {
  color: #00214a;
  font-family: "Roboto", Sans-serif;
  font-size: 16px;
}

.download-app-wrapper .download-step-content strong {
  font-weight: 600;
  margin-right: 5px;
}

/* Terms and Conditions Specific Styles */
.terms-container {
  width: 100%;
  margin: 0 auto;
}

.terms-full-content {
  margin-top: 20px;
}

.terms-full-content p {
  color: #00214a;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  font-family: "Arial", Sans-serif;
}

.terms-full-content h2 {
  color: #0e3343;
  font-size: 32px;
  font-weight: 800;
  margin: 30px 0 15px;
  font-family: "arial", Sans-serif;
  padding-bottom: 10px;
}

.terms-full-content h3 {
  color: #00214a;
  font-size: 24px;
  font-weight: 600;
  margin: 25px 0 10px;
  font-family: "Arial", Sans-serif;
}

.terms-full-content ul {
  padding-left: 40px;
  margin-bottom: 20px;
  list-style-type: disc;
}

.terms-full-content ul li {
  color: #00214a;
  font-size: 17px;
  margin-bottom: 8px;
  font-family: "Arial", Sans-serif;
  line-height: 1.6;
}

.terms-full-content strong {
  color: #00214a;
  font-weight: 600;
  font-family: "Arial", Sans-serif;
}

.terms-full-content a {
  color: #cc3366;
  font-weight: 500;
  text-decoration: none;
}

.terms-full-content a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.terms-full-content .trader-ai-text {
  font-weight: 600;
  color: #00214a;
}

.terms-full-content span {
  font-weight: 600;
  color: #00214a;
}

/* AI Trading for Beginners Page Styles */

/* Hero Section */
.beginners-hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #00214a 0%, #003d7a 100%);
}

.beginners-hero-title {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: "Arial", Sans-serif;
}

.beginners-hero-description {
  color: #fff;
  font-size: 20px;
  margin-bottom: 30px;
  font-family: "Arial", Sans-serif;
}

.beginners-hero-btn {
  padding: 15px 40px;
  font-size: 18px;
}

/* Introduction Section */
.beginners-intro-section {
  padding: 70px 0;
}

.beginners-intro-section h2.section-title-h2 {
  color: #00214a;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 25px;
  font-family: "Arial", Sans-serif;
  text-align: center;
}

.beginners-intro-section h3 {
  color: #00214a;
  font-size: 24px;
  margin: 30px 0 15px;
  font-family: "Arial", Sans-serif;
  font-weight: 600;
}

.beginners-intro-section p {
  color: #00214a;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-family: "Arial", Sans-serif;
}

/* Benefits Section */
.beginners-benefits-section {
  padding: 0 0 40px 0;
}

.beginners-benefits-section h3 {
  color: #00214a;
  font-size: 24px;
  margin: 40px 0 15px;
  font-family: "Arial", Sans-serif;
  font-weight: 600;
}

.beginners-benefits-section .row {
  margin-top: 30px;
}

.benefit-card {
  padding: 25px;
  background: #f8f9fa;
  border-radius: 10px;
  height: 100%;
  border-left: 4px solid #61ce70;
}

.benefit-card h4 {
  color: #00214a;
  margin-bottom: 15px;
  font-family: "Arial", Sans-serif;
  font-weight: 600;
}

.benefit-icon {
  color: #61ce70;
  font-weight: bold;
  margin-right: 8px;
  font-size: 20px;
}

.benefit-card p {
  color: #00214a;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  font-family: "Arial", Sans-serif;
}

/* Steps Section */
.beginners-steps-section {
  padding: 0 0 40px 0;
}

.beginners-steps-section h3 {
  color: #00214a;
  font-size: 24px;
  margin: 40px 0 15px;
  font-family: "Arial", Sans-serif;
  font-weight: 600;
}

.beginners-steps-section .row {
  margin-top: 30px;
}

.step-circle {
  background: #61ce70;
  color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px;
  font-weight: bold;
}

.beginners-steps-section h4 {
  color: #00214a;
  margin-bottom: 15px;
  font-family: "Arial", Sans-serif;
  font-weight: 600;
}

.beginners-steps-section p {
  color: #00214a;
  font-size: 18px;
  font-family: "Arial", Sans-serif;
}

/* Trading Instruments Section */
.beginners-trading-section {
  padding: 0 0 40px 0;
}

.beginners-trading-section h3 {
  color: #00214a;
  font-size: 24px;
  margin: 40px 0 15px;
  font-family: "Arial", Sans-serif;
  font-weight: 600;
}

.trading-instruments-list {
  list-style: none;
  padding: 0;
}

.trading-instruments-list li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 18px;
  font-family: "Arial", Sans-serif;
  color: #00214a;
}

.trading-instruments-list li strong {
  font-weight: 600;
  color: #00214a;
}

.instrument-icon {
  color: #00214a;
  font-weight: bold;
  margin-right: 8px;
  font-size: 20px;
}

/* Tips Section */
.beginners-tips-section {
  padding: 0 0 40px 0;
}

.beginners-tips-section h3 {
  color: #00214a;
  font-size: 24px;
  margin: 40px 0 15px;
  font-family: "Arial", Sans-serif;
  font-weight: 600;
}

.tips-list {
  padding-left: 25px;
}

.tips-list li {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.6;
  font-family: "Arial", Sans-serif;
  color: #00214a;
}

.tips-list li strong {
  font-weight: 600;
  color: #00214a;
}

/* CTA Section */
.beginners-cta-section {
  padding: 0 0 40px 0;
}

.cta-box {
  background: #f5f5f5;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 50px;
}

.cta-box h3 {
  color: #00214a;
  font-size: 28px;
  margin-bottom: 15px;
  font-family: "Arial", Sans-serif;
  font-weight: 600;
}

.cta-box p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #00214a;
  font-family: "Arial", Sans-serif;
}

.cta-box .register-now-btn {
  padding: 15px 40px;
  font-size: 18px;
}

/* Warning Section */
.beginners-warning-section {
  padding: 0 0 70px 0;
}

.warning-box {
  margin-top: 40px;
  padding: 30px;
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  border-radius: 5px;
}

.warning-box h4 {
  color: #856404;
  margin-bottom: 15px;
  font-family: "Arial", Sans-serif;
  font-weight: 600;
}

.warning-box p {
  color: #856404;
  margin: 0;
  font-size: 16px;
  font-family: "Arial", Sans-serif;
}

/* Best AI Trading Platform Page Styles */

/* Hero Section */
.best-platform-hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #00214a 0%, #003d7a 100%);
}

.best-platform-hero-title {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: "Arial", Sans-serif;
}

.best-platform-hero-description {
  color: #fff;
  font-size: 20px;
  margin-bottom: 30px;
  font-family: "Arial", Sans-serif;
}

.best-platform-hero-btn {
  padding: 15px 40px;
  font-size: 18px;
}

/* Introduction Section */
.best-platform-intro-section {
  padding: 70px 0 40px 0;
}

.best-platform-intro-section h2.section-title-h2 {
  color: #00214a;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 25px;
  font-family: "Arial", Sans-serif;
  text-align: center;
}

.best-platform-intro-section p {
  color: #00214a;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-family: "Arial", Sans-serif;
}

.best-platform-intro-section h3 {
  color: #00214a;
  font-size: 24px;
  margin: 30px 0 15px;
  font-family: "Arial", Sans-serif;
  font-weight: 600;
}

/* Features Section */
.best-platform-features-section {
  padding: 0 0 40px 0;
}

.best-platform-features-section .row {
  margin-top: 30px;
}

.platform-feature-card {
  padding: 25px;
  background: #f8f9fa;
  border-radius: 10px;
  height: 100%;
  border-left: 4px solid #61ce70;
}

.platform-feature-card h4 {
  color: #00214a;
  margin-bottom: 15px;
  font-family: "Arial", Sans-serif;
  font-weight: 600;
}

.platform-feature-icon {
  margin-right: 8px;
  font-size: 20px;
}

.platform-feature-card p {
  color: #00214a;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  font-family: "Arial", Sans-serif;
}

/* Key Features List Section */
.best-platform-key-features-section {
  padding: 0 0 40px 0;
}

.best-platform-key-features-section h3 {
  color: #00214a;
  font-size: 24px;
  margin: 40px 0 15px;
  font-family: "Arial", Sans-serif;
  font-weight: 600;
}

.key-features-list {
  list-style: none;
  padding: 0;
}

.key-features-list li {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  font-size: 18px;
  font-family: "Arial", Sans-serif;
  color: #00214a;
}

.key-features-list li .checkmark {
  color: #00214a;
  font-weight: bold;
  margin-right: 8px;
}

/* Testimonial Section */
.best-platform-testimonial-section {
  padding: 0 0 40px 0;
}

.best-platform-testimonial-section h3 {
  color: #00214a;
  font-size: 24px;
  margin: 40px 0 15px;
  font-family: "Arial", Sans-serif;
  font-weight: 600;
}

.testimonial-box {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.testimonial-quote {
  font-size: 18px;
  color: #00214a;
  margin-bottom: 20px;
  font-family: "Arial", Sans-serif;
}

.testimonial-box p {
  color: #00214a;
  font-size: 18px;
  font-family: "Arial", Sans-serif;
  line-height: 1.6;
}

/* Comparison Table Section */
.best-platform-comparison-section {
  padding: 0 0 40px 0;
}

.best-platform-comparison-section h3 {
  color: #00214a;
  font-size: 24px;
  margin: 40px 0 15px;
  font-family: "Arial", Sans-serif;
  font-weight: 600;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  font-family: "Arial", Sans-serif;
}

.comparison-table thead tr {
  background: #00214a;
  color: #fff;
}

.comparison-table th {
  padding: 15px;
  text-align: left;
  font-weight: 600;
}

.comparison-table th:nth-child(2),
.comparison-table th:nth-child(3) {
  text-align: center;
}

.comparison-table tbody tr {
  border-bottom: 1px solid #eee;
}

.comparison-table td {
  padding: 15px;
  color: #00214a;
}

.comparison-table td.trader-ai-col {
  text-align: center;
  color: #61ce70;
  font-weight: 600;
}

.comparison-table td:nth-child(3) {
  text-align: center;
}

/* Steps Section */
.best-platform-steps-section {
  padding: 0 0 40px 0;
}

.best-platform-steps-section h3 {
  color: #00214a;
  font-size: 24px;
  margin: 40px 0 15px;
  font-family: "Arial", Sans-serif;
  font-weight: 600;
}

.best-platform-steps-section .row {
  margin-top: 30px;
}

.best-platform-steps-section .step-circle {
  background: #61ce70;
  color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px;
  font-weight: bold;
}

.best-platform-steps-section h4 {
  color: #00214a;
  margin-bottom: 15px;
  font-family: "Arial", Sans-serif;
  font-weight: 600;
}

.best-platform-steps-section p {
  color: #00214a;
  font-size: 18px;
  font-family: "Arial", Sans-serif;
}

/* CTA Section */
.best-platform-cta-section {
  padding: 0 0 40px 0;
}

.best-platform-cta-section .cta-box {
  background: #f5f5f5;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 50px;
}

.best-platform-cta-section .cta-box h3 {
  color: #00214a;
  font-size: 28px;
  margin-bottom: 15px;
  font-family: "Arial", Sans-serif;
  font-weight: 600;
}

.best-platform-cta-section .cta-box p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #00214a;
  font-family: "Arial", Sans-serif;
}

.best-platform-cta-section .cta-box .register-now-btn {
  padding: 15px 40px;
  font-size: 18px;
}

/* Disclaimer Section */
.best-platform-disclaimer-section {
  padding: 0 0 70px 0;
}

.disclaimer-box {
  margin-top: 40px;
  padding: 30px;
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  border-radius: 5px;
}

.disclaimer-box h4 {
  color: #856404;
  margin-bottom: 15px;
  font-family: "Arial", Sans-serif;
  font-weight: 600;
}

.disclaimer-box p {
  color: #856404;
  margin: 0;
  font-size: 16px;
  font-family: "Arial", Sans-serif;
}

/* AI Market Analysis Page Styles */

/* How It Works Box */
.market-analysis-how-section {
  padding: 0 0 40px 0;
}

.how-it-works-box {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  margin: 30px 0;
  border-left: 4px solid #61ce70;
}

.how-it-works-box h4 {
  color: #00214a;
  margin-bottom: 15px;
  font-family: "Arial", Sans-serif;
  font-weight: 600;
}

.how-it-works-box p {
  margin: 0;
  color: #00214a;
  font-size: 18px;
  font-family: "Arial", Sans-serif;
}

/* Benefits with Large Icons */
.market-analysis-benefits-section {
  padding: 0 0 40px 0;
}

.market-analysis-benefits-section h3 {
  color: #00214a;
  font-size: 24px;
  margin: 40px 0 15px;
  font-family: "Arial", Sans-serif;
  font-weight: 600;
}

.market-analysis-benefits-section .row {
  margin-top: 30px;
}

.benefit-icon-card {
  text-align: center;
  padding: 20px;
}

.benefit-icon-card .large-icon {
  font-size: 48px;
  color: #61ce70;
  margin-bottom: 15px;
}

.benefit-icon-card h4 {
  color: #00214a;
  margin-bottom: 15px;
  font-family: "Arial", Sans-serif;
  font-weight: 600;
}

.benefit-icon-card p {
  color: #00214a;
  font-size: 18px;
  font-family: "Arial", Sans-serif;
}

/* Note Box */
.market-analysis-note-section {
  padding: 0 0 70px 0;
}

.note-box {
  margin-top: 40px;
  padding: 30px;
  background: #e7f3ff;
  border-left: 4px solid #007bff;
  border-radius: 5px;
}

.note-box h4 {
  color: #004085;
  margin-bottom: 15px;
  font-family: "Arial", Sans-serif;
  font-weight: 600;
}

.note-box p {
  color: #004085;
  margin: 0;
  font-size: 16px;
  font-family: "Arial", Sans-serif;
}

/* =============================================== */
/* Blog Post Template Styles */
/* =============================================== */

.blog-post-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.blog-post-container {
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  padding: 30px 40px;
  margin-bottom: 30px;
}

.blog-post-header {
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.blog-post-title {
  font-size: 30px;
  font-weight: 600;
  color: #54595f;
  font-family: "Roboto", Sans-serif;
  margin-bottom: 15px;
  line-height: 1.3;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #adadad;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto Slab", sans-serif;
}

.blog-post-image {
  margin-bottom: 30px;
}

.blog-post-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
}

.blog-post-content {
  color: #777;
  font-size: 16px;
  line-height: 1.8;
  font-family: "Roboto", Sans-serif;
  margin-bottom: 40px;
}

.blog-post-content p {
  margin-bottom: 20px;
}

.blog-post-content h2,
.blog-post-content h3 {
  color: #54595f;
  margin: 30px 0 15px;
  font-weight: 600;
  font-family: "Roboto", Sans-serif;
}

.blog-post-content h2 {
  font-size: 24px;
}

.blog-post-content h3 {
  font-size: 20px;
}

.blog-post-content ul,
.blog-post-content ol {
  margin-bottom: 20px;
  padding-left: 25px;
}

.blog-post-content li {
  margin-bottom: 10px;
  color: #777;
}

.blog-post-content strong {
  color: #54595f;
  font-weight: 600;
}

.blog-post-tags {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.blog-post-tag {
  display: inline-block;
  background-color: #f5f5f5;
  color: #777;
  padding: 5px 15px;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
}

.blog-post-tag:hover {
  background-color: #61ce70;
  color: #fff;
}

.blog-post-share {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-post-share span {
  font-weight: 500;
  color: #54595f;
}

.blog-post-share a {
  color: #777;
  font-size: 18px;
  transition: color 0.3s;
  margin-right: 15px;
}

.blog-post-share a:hover {
  color: #61ce70;
}

/* Blog Breadcrumb */
.blog-breadcrumb {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.blog-breadcrumb p {
  margin: 0;
  font-size: 16px;
}

.blog-breadcrumb a {
  color: #00214a;
  font-weight: 600;
  margin: 0 15px;
  text-decoration: none;
  transition: color 0.3s;
}

.blog-breadcrumb a:hover {
  color: #61ce70;
}

/* Sidebar Widgets */
.sidebar-widget {
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  padding: 25px;
  margin-bottom: 30px;
}

.sidebar-widget-title {
  font-size: 20px;
  font-weight: 600;
  color: #54595f;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  font-family: "Roboto", Sans-serif;
}

/* Recent Posts Widget */
.recent-posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recent-post-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.recent-post-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.recent-post-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  margin-right: 15px;
  flex-shrink: 0;
  border-radius: 4px;
}

.recent-post-title {
  font-size: 15px;
  font-weight: 500;
  color: #54595f;
  margin-bottom: 5px;
  font-family: "Roboto", Sans-serif;
  line-height: 1.4;
  transition: color 0.3s;
  text-decoration: none;
  display: block;
}

.recent-post-title:hover {
  color: #61ce70;
}

.recent-post-date {
  font-size: 12px;
  color: #adadad;
  font-family: "Roboto Slab", sans-serif;
}

/* Categories Widget */
.categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-item {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.category-item:last-child {
  border-bottom: none;
}

.category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #777;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s;
  font-family: "Roboto", Sans-serif;
}

.category-link:hover {
  color: #61ce70;
}

.category-count {
  background-color: #f5f5f5;
  color: #777;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 3px;
  transition: all 0.3s;
}

.category-link:hover .category-count {
  background-color: #61ce70;
  color: #fff;
}

/* Tags Widget */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* =============================================== */
/* Blog Archive (Listing) Styles */
/* =============================================== */

.blog-section {
  padding: 10px 0 60px 0;
}

.blog-card {
  background-color: #fff;
  border-radius: 0;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  height: 100%;
  transition: transform 0.3s;
  position: relative;
  overflow: hidden;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.blog-img-container {
  position: relative;
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog-card:hover img {
  transform: scale(1.05);
}

.blog-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #61ce70;
  color: white;
  padding: 0.6em 1.2em;
  border-radius: 999px;
  font-size: 12px;
  font-family: "Roboto", Sans-serif;
  font-weight: 500;
}

.blog-card-body {
  padding: 40px 30px 0px 30px;
}

.blog-card-title {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #54595f;
  font-family: "Roboto", Sans-serif;
  line-height: 1.3;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.blog-card-title a:hover {
  color: #61ce70;
}

.blog-card-text {
  color: #777;
  font-size: 15px;
  margin-bottom: 25px;
  min-height: 75px;
  font-family: "Roboto", Sans-serif;
  line-height: 1.6;
}

.blog-read-more {
  display: inline-block;
  color: #61ce70;
  font-weight: 500;
  font-size: 12px;
  text-decoration: none;
  transition: color 0.3s;
  margin-bottom: 20px;
  font-family: "Roboto", Sans-serif;
}

.blog-read-more:hover {
  color: #4db35e;
}

.blog-meta {
  display: flex;
  align-items: center;
  border-top: 1px solid #eee;
  color: #adadad;
  font-size: 12px;
  gap: 20px;
  padding: 20px 30px 20px 30px;
  font-weight: 400;
  font-family: "Roboto Slab", sans-serif;
}

/* Blog Pagination */
.blog-pagination {
  margin-top: 40px;
  text-align: center;
}

.blog-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-pagination .page-numbers {
  display: inline-block;
  padding: 10px 15px;
  background-color: #fff;
  color: #00214a;
  border: 1px solid #eee;
  text-decoration: none;
  transition: all 0.3s;
  font-family: "Roboto", Sans-serif;
  font-weight: 500;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background-color: #61ce70;
  color: #fff;
  border-color: #61ce70;
}

.blog-pagination .prev,
.blog-pagination .next {
  font-weight: 600;
}

/* No Posts Found */
.no-posts-found {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.no-posts-found h2 {
  color: #00214a;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: "Arial", Sans-serif;
}

.no-posts-found p {
  color: #777;
  font-size: 16px;
  font-family: "Roboto", Sans-serif;
}

/* Responsive Adjustments for Blog Cards */
@media (max-width: 768px) {
  .blog-card-body {
    padding: 30px 20px 0px 20px;
  }

  .blog-card-title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .blog-card-text {
    font-size: 14px;
    min-height: auto;
  }

  .blog-meta {
    padding: 15px 20px;
    gap: 15px;
  }
}

/* Phone Validation Error Styling */
input[type="tel"].phone-error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.phone-error-msg {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

/* IntlTelInput Error State */
.iti.iti--allow-dropdown input.phone-error {
  border-color: #dc3545;
}
