/* 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;
}

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);
    /* line-height: 1.6; */
}

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

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

/* 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;
}

.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: var(--text-light);
    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: .5rem 1rem;
    transition: all .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: 25px;
    margin-left: -100px;
}

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

.register-now-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;

    background-color: #00214A;
    font-family: "Arial", Sans-serif;
    font-weight: 500;
    fill: #C1C1C1;
    color: #C1C1C1;

}

/* .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: 530px;
}

.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 {
    height: 80px;
}

.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 {
    height: 50px;
    border-radius: 5px;
}

.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: left;
    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: 40px;
    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;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav ul li {
    margin-left: 25px;
}

.footer-nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    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 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;
}

.feature-text {
    color: #00214A;
    font-size: 18px;
    line-height: 1.5;
    font-family: "Arial", Sans-serif;
}

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

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

/* Benefits Section Styles */

.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-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: .5rem 1rem;

    transition: all .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: 312px;
            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;
        }