/* 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 */
    width: 150px;
}

.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;
}

/* Intro Section */
main {
    padding: 0;
}

.intro {
    position: relative;
    max-width: 100%;
    height: auto;
    overflow: hidden;
}

.intro img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 8px;
    z-index: 1;
    width: 80%;
    max-width: 600px;
}

.intro-overlay h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

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

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

.outlook {
    padding: 40px 20px;
    background-color: #121212;
    text-align: left;
}

.outlook h2 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: bold;
}

.outlook p {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

/* Style for the Read Report button */
.read-report-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ffff; /* Blue button */
    color: blue;
    text-decoration: none;
    border-radius: 5px; /* Rounded corners */
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.read-report-btn:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* WHO WE ARE Section */
.who-we-are {
    background-color: #fff;
    padding: 40px 20px;
    text-align: left;
    color: black;
}

.who-we-are h2 {
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: left;
}

.who-we-are p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.learn-more-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #007bff; /* Blue button */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #0056b3;
}

/* White Area Section */
.white-area {
    background-color: white; /* White background for this section */
    border-radius: 0px; /* Rounded corners for the section */
    padding: 20px;
    margin: 0px auto; /* Space above and below the section, horizontally centered */
    width: 90.6%; /* Adjust width of the section */
    max-width: 600px; /* Limit max width */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
}

/* Column Container */
.column-container {
    display: flex;
    flex-direction: column;
    width: 90%; /* Full width of the white area */
    padding: 20px;
    background-color: #f9f9f9; /* Light background for the column */
    border-radius: 10px; /* Rounded corners for the column */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow for the column */
}

/* Style for each item in the column */
.column-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0; /* Add space above and below each item */
    color: black; /* Text color for column items */
    font-weight: bold;
}

.column-item .item-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* Make the link clickable for the whole row */
    text-decoration: none; /* Remove underline */
    color: black; /* Text color */
    font-weight: bold;
}

.column-item .item-link:hover {
    color: #007BFF; /* Change color on hover */
}

.column-item .item-text {
    font-size: 16px;
    margin-right: 10px; /* Space between text and icon */
}

.column-item .item-icon {
    font-size: 18px; /* Adjust icon size */
    color: #333; /* Icon color */
}

/* Divider */
.divider {
    height: 1px;
    background-color: #ddd; /* Light gray divider */
    margin: 10px 0; /* Spacing between items */
}

/* Optional hover effect for each item */
.column-item:hover {
    background-color: #f0f0f0; /* Change background color on hover */
}

/* INVESTMENT INSIGHTS Section */
.investment-insights {
    padding: 50px 20px;
    text-align: center;
    background-color: #ffff;
    color: black;
}

.investment-insights h2 {
    font-size: 10px;
    margin-bottom: 10px;
    font-weight: bold;
}

.investment-insights p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

/* Blue Area Section */
.blue-area {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Ensure responsiveness */
    background-color: #004080; /* Blue background */
    padding: 30px;
    gap: 20px; /* Space between image boxes */
    border-radius: 2px; /* Rounded corners */
    margin: 0px 0; /* Space above and below the section */
}

.image-box {
    background: #fff; /* White background for the image box */
    border-radius: 10px; /* Rounded corners for each box */
    padding: 15px;
    text-align: center; /* Center align text */
    flex: 1 1 calc(33.33% - 40px); /* Flexible width for 3 boxes */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
}

.image-box img {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Rounded corners for the image */
    margin-bottom: 10px;
}

.image-box h3 {
    font-size: 18px;
    color: #004080; /* Match with blue area */
    margin-bottom: 8px;
}

.image-box p {
    font-size: 14px;
    color: #333;
}

/* Important Notice Section */
.important-notice {
    background-color: #fff; /* White background */
    padding: 20px;
    margin: 20px 0; /* Space above and below */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: center;
}

.important-notice p {
    font-size: 14px;
    color: #333; /* Dark text */
    line-height: 1.5; /* Improve readability */
}

.important-notice a {
    color: #004080; /* Blue for email link */
    text-decoration: underline;
}


/* General Styling */
.investment-solutions {
    background-color: #fff;
    padding: 2rem;
    margin-top: 2rem;
    color: black;
}

.centered-content {
    text-align: left;
    margin-bottom: 2rem;
}

.centered-content h2,
.centered-content h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.centered-content p {
    font-size: 1rem;
    color: #555;
}



.subsection {
    margin: 1rem 0;
}

.subsection h3 {
    font-size: 1rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.subsection p {
    font-size: 1rem;
    color: #555;
    margin: 0.3rem 0;
}

/* Full Width Image */
.full-width-image img {
    width: 100%;
    margin: 1rem 0;
    border-radius: 5px;
}

/* CTA Link */
.cta-link {
    font-size: 1rem;
    color: #0066cc;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
}

.cta-link i {
    color: #0066cc;
}



.blue-area h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.blue-area p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.contact-btn {
    background-color: #005bb5;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #004494;
}

/* Cookie Notice Popup */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 94%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 16px;
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.cookie-notice-content {
    max-width: 800px;
    margin: 0 auto;
}

.cookie-notice p {
    margin: 0;
    font-size: 14px;
}

.cookie-notice a {
    color: #ffb703;
    text-decoration: none;
}

.cookie-notice a:hover {
    text-decoration: underline;
}

.accept-btn {
    background-color: #ffb703;
    color: black;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 16px;
}

.accept-btn:hover {
    background-color: #e07b00;
}

/* About Page Styles */
  .about-section {
            text-align: center;
            background: url('img/photo-about-us-375x593-mob.jpg') no-repeat center center/cover;
            color: #fff;
            padding: 40px;
            border-radius: 2px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            max-width: 600px;
            width: 82%;
        }

        .about-section h2 {
            font-size: 2em;
            margin-bottom: 15px;
            color: chocolate;
        }

        .about-section p {
            font-size: 1.1em;
            color: white;
            line-height: 1.6;
        }

.mission-section {
    text-align: center;
    background-color: #fff;
    color: black;
    padding: 40px;
    border-radius: 2px;
    margin: 0px auto;
    max-width: 600px;
    width: 82%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mission-section h2 {
    font-size: 2em;
    margin-bottom: 15px;
}

.mission-section p {
    font-size: 1.1em;
    line-height: 1.6;
}

.vision-section {
    text-align: center;
    background: url('vision-bg.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 600px;
    width: 82%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.vision-section h2 {
    font-size: 2em;
    margin-bottom: 15px;
}

.vision-section p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.vision-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.vision-section ul li {
    font-size: 1em;
    margin: 10px 0;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: 5px;
}

.vision-section ul li strong {
    color: #ffd700; /* Golden color for the keywords */
}

.video-section {
    text-align: center;
    background: url('video-bg.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 40px 20px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.video-section h2 {
    font-size: 2em;
    margin-bottom: 15px;
}

.video-section p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    border: 5px solid rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    overflow: hidden;
}

.video-container iframe {
    width: 100%;
    max-width: 700px;
    height: 400px;
    border: none;
}

.our-we-trade {
    background-color: #004080; /* Blue background */
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.our-we-trade h2 {
    font-size: 1em;
    margin-bottom: 20px;
}

.our-we-trade .image-box {
    margin-bottom: 20px;
}

.our-we-trade .image-box img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.our-we-trade h3 {
    font-size: 1em;
    margin-top: 20px;
    font-weight: 300;
    text-align: left;
}

.our-we-trade p {
    font-size: 1em;
    line-height: 1.6;
    max-width: 900px;
    margin: 20px auto;
}

.join-us {
    background-color: #fff; /* White background */
    color: #333;
    padding: 40px 20px;
    text-align: center;
}

.join-us h2 {
    font-size: 1em;
    margin-bottom: 20px;
}

.join-us p {
    font-size: 1em;
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.explore-opportunities {
    font-size: 1em;
    font-weight: bold;
    color: #005f80; /* Blue color for the link */
    text-decoration: none;
    margin-bottom: 30px;
    display: inline-block;
}

.explore-opportunities span {
    margin-left: 10px;
    font-size: 1em;
}

.explore-opportunities:hover {
    text-decoration: underline;
}

.join-us .image-box {
    margin-top: 20px;
}

.join-us .image-box img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}