/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* General Styles */
body {
    margin: 0;  
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background-color: #121212;
    overflow-x: hidden;
}

header {
    background-color: #0A1F44;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 93%;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

header h1 {
    color: #ffffff;
    margin: 0;
    font-size: 1.5rem;
}

#logo {
    max-width: 40px;  /* Adjust width as needed */
    height: auto;      /* Maintain aspect ratio */
}

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.menu-btn .line {
    width: 30px;
    height: 4px;
    background-color: white;
    border-radius: 2px;
    transition: 0.3s ease-in-out;
}

/* Hamburger to 'X' transformation */
.menu-btn.active .line:nth-child(1) {
    transform: rotate(45deg);
    position: relative;
    top: 5px;
}

.menu-btn.active .line:nth-child(2) {
    opacity: 0;
}

.menu-btn.active .line:nth-child(3) {
    transform: rotate(-45deg);
    position: relative;
    top: -5px;
}

/* Sidebar */
.sidebar {
    display: none;
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100%;
    background-color: #0A1F44;
    overflow-y: auto;
    transition: right 0.3s;
    z-index: 1000;
}

/* Sidebar Active State */
.sidebar.active {
    display: block;
    right: 0;
}

/* Sidebar Menu */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #444;
}

.menu-header h2 {
    margin: 0;
    color: white;
    font-size: 1.5rem;
}

.close-btn {
    font-size: 1.5rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

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

.sidebar ul li {
    border-bottom: 1px solid #444;
}

.sidebar ul li a {
    text-decoration: none;
    color: white;
    display: block;
    padding: 15px;
    transition: background 0.3s;
}

.sidebar ul li a:hover {
    background: #ff5733;
}

/* Footer */
footer {
    background-color: #0A1F44;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: white;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
    color: darkgreen;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.2rem;
    }

    .menu-btn {
        display: flex;
    }

    .menu-text {
        display: none;
    }

    .intro-overlay h2 {
        font-size: 1.5rem;
    }

    .intro-overlay p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .intro-overlay {
        width: 90%;
        padding: 0.8rem;
    }

    .intro-overlay h2 {
        font-size: 1.2rem;
    }

    .intro-overlay p {
        font-size: 0.9rem;
    }
}

.legal-regulatory {
    background-color: #f9f9f9;
    padding: 40px 20px;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.legal-regulatory h2 {
    font-size: 1em;
    margin-bottom: 20px;
    text-align: center;
}

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

.legal-section h3 {
    font-size: 1em;
    color: #005f80; /* Blue color */
    margin-bottom: 10px;
}

.legal-section p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 10px;
}

.legal-section ul {
    list-style-type: none;
    padding-left: 0;
}

.legal-section ul li {
    font-size: 1em;
    margin-bottom: 10px;
}

.legal-section ul li strong {
    font-weight: bold;
}

.legal-section a {
    color: #005f80;
    text-decoration: none;
}

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

.policy-page {
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

.policy-page h2 {
    font-size: 1em;
    margin-bottom: 30px;
    text-align: center;
}

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

.policy-section h3 {
    font-size: 1em;
    color: #005f80; /* Blue color */
    margin-bottom: 10px;
}

.policy-section p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 10px;
}

.policy-section ul {
    list-style-type: none;
    padding-left: 0;
}

.policy-section ul li {
    font-size: 1em;
    margin-bottom: 10px;
}

.policy-section ul li strong {
    font-weight: bold;
}

.policy-section a {
    color: #005f80;
    text-decoration: none;
}

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

.compliance-page {
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

.compliance-page h2 {
    font-size: 1em;
    margin-bottom: 30px;
    text-align: center;
}

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

.compliance-section h3 {
    font-size: 1em;
    color: #005f80; /* Blue color */
    margin-bottom: 10px;
}

.compliance-section p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 10px;
}

.compliance-section ul {
    list-style-type: none;
    padding-left: 0;
}

.compliance-section ul li {
    font-size: 1em;
    margin-bottom: 10px;
}

.compliance-section ul li a {
    color: #005f80;
    text-decoration: none;
}

.compliance-section ul li a:hover {
    text-decoration: underline;
}

.whistleblower-page {
    padding: 40px 20px;
    background-color: #f1f1f1;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.whistleblower-page h2 {
    font-size: 1em;
    text-align: center;
    margin-bottom: 30px;
}

.whistleblower-section {
    margin-bottom: 30px;
}

.whistleblower-section h3 {
    font-size: 1em;
    color: #005f80;
    margin-bottom: 10px;
}

.whistleblower-section p {
    font-size: 1em;
    line-height: 1.6;
}

.whistleblower-section ul {
    list-style-type: none;
    padding-left: 0;
}

.whistleblower-section ul li {
    font-size: 1em;
    margin-bottom: 10px;
}

.whistleblower-section ul li a {
    color: #005f80;
    text-decoration: none;
}

.whistleblower-section ul li a:hover {
    text-decoration: underline;
}

.cookies-page {
    padding: 40px 20px;
    background-color: #f9f9f9;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.cookies-page h2 {
    font-size: 1em;
    text-align: center;
    margin-bottom: 30px;
}

.cookies-section {
    margin-bottom: 30px;
}

.cookies-section h3 {
    font-size: 1em;
    color: #005f80;
    margin-bottom: 10px;
}

.cookies-section p,
.cookies-section ul {
    font-size: 1em;
    line-height: 1.6;
}

.cookies-section ul {
    list-style-type: none;
    padding-left: 0;
}

.cookies-section ul li {
    margin-bottom: 10px;
}

.disclaimers-page {
    padding: 40px 20px;
    background-color: #f1f1f1;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.disclaimers-page h2 {
    font-size: 1em;
    text-align: center;
    margin-bottom: 30px;
}

.disclaimer-section {
    margin-bottom: 30px;
}

.disclaimer-section h3 {
    font-size: 1em;
    color: #005f80;
    margin-bottom: 10px;
}

.disclaimer-section p {
    font-size: 1em;
    line-height: 1.6;
}

.trading-service-page {
    padding: 40px 20px;
    background-color: #f8f9fa;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.trading-service-page h2 {
    font-size: 1em;
    text-align: center;
    margin-bottom: 40px;
    color: #005f80;
}

.intro-section h3 {
    font-size: 1em;
    color: #005f80;
    margin-bottom: 15px;
    text-align: center;
}

.intro-section p {
    font-size: 1em;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 40px;
}

.trading-view-section h3 {
    font-size: 1em;
    color: #005f80;
    margin-bottom: 20px;
    text-align: center;
}

.tradingview-widget-container {
  height: 800px; /* Adjust height as needed */
  width: 1200%; /* Full width */
  max-width: 1200px; /* Optional max width */
  margin: 0 auto; /* Center the widget horizontally */
  position: relative; /* Maintain layout context */
}

.tradingview-widget-container__widget {
  height: 100%; /* Fill parent height */
  width: 100%; /* Fill parent width */
}

.trading-features {
    margin-bottom: 40px;
}

.trading-features h3 {
    font-size: 1em;
    color: #005f80;
    margin-bottom: 20px;
    text-align: center;
}

.trading-features ul {
    list-style-type: none;
    padding-left: 0;
    font-size: 1em;
    line-height: 1.8;
    text-align: center;
}

.trading-features ul li {
    margin-bottom: 15px;
}

.people-trading {
    margin-bottom: 40px;
}

.people-trading h3 {
    font-size: 1em;
    color: #005f80;
    margin-bottom: 20px;
    text-align: center;
}

.images {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.image-box {
    text-align: center;
}

.image-box img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
}

.image-box p {
    font-size: 1em;
    color: #555;
}

.cta-button {
    text-align: center;
    margin-top: 40px;
}

.cta-button-link {
    display: inline-block;
    padding: 15px 30px;
    background-color: #005f80;
    color: white;
    font-size: 1em;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button-link:hover {
    background-color: #003f5c;
    transform: scale(1.05);
}

.why-choose-us {
    margin: 40px 0;
    background-color: #e9f5ff;
    padding: 30px;
    border-radius: 10px;
}

.why-choose-us h3 {
    font-size: 1em;
    color: #005f80;
    margin-bottom: 20px;
    text-align: center;
}

.why-choose-us p {
    font-size: 1em;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
}

.why-choose-us ul {
    list-style-type: none;
    padding-left: 0;
    font-size: 1em;
    line-height: 1.8;
    text-align: center;
}

.why-choose-us ul li {
    margin-bottom: 15px;
}

.testimonials {
    margin-bottom: 40px;
}

.testimonials h3 {
    font-size: 1em;
    color: #005f80;
    text-align: center;
    margin-bottom: 30px;
}

.testimonials .testimonial {
    font-size: 1em;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
}

.testimonials .testimonial p {
    font-style: italic;
    color: #555;
}

.trading-faqs {
    margin-top: 40px;
}

.trading-faqs h3 {
    font-size: 1em;
    color: #005f80;
    text-align: center;
    margin-bottom: 20px;
}

.trading-faqs .faq {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.trading-faqs .faq h4 {
    font-weight: bold;
    color: #005f80;
}

.trading-faqs .faq p {
    color: #555;
}

@media (max-width: 768px) {
    .trading-view iframe {
        height: 250px;
    }

    .images {
        flex-direction: column;
        align-items: center;
    }

    .image-box img {
        width: 150px;
        height: 150px;
    }

    .cta-button-link {
        font-size: 1em;
        padding: 12px 24px;
    }

    .trading-features ul li,
    .why-choose-us ul li {
        font-size: 1.1em;
    }
}


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

.trading-features li {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.trading-features img {
    width: 100%; /* Full width for images */
    max-width: 600px; /* Maximum width to prevent excessive size */
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.trading-features strong {
    display: block;
    font-size: 1em;
    color: #005f80;
    margin-bottom: 10px;
}

.trading-features p {
    font-size: 1em;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .trading-features li {
        padding: 15px;
    }

    .trading-features img {
        max-width: 100%;
    }

    .trading-features p {
        font-size: 1em;
    }
}