/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

h1, h2, h3 {
    margin: 0;
}

button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; /* Ensures no underline for the name */
}
button a{
    
    text-decoration: none; /* Ensures no underline for the name */
}

button.cta:hover {
    background-color: #218838;
    
}

/* Hero Section */

/* Menu Bar */
.menu-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background-color: #28a745;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.menu-bar 
/* Menu Logo Container */
.logo-container {
    
    text-decoration: none; /* Ensures no underline for the entire link */
    
}
.menu-logo {
    display: flex; /* Aligns items horizontally */
    align-items: center; /* Vertically centers the logo and text */
}

.menu-logo img {
    height: 50px;
    width: auto;
}
/* Company Name Styling */
.company-name {
    font-size: 2em; /* Make the text larger */
    font-weight: bold; /* Emphasize the text */
    color: white; /* Set the text color to white */
    font-family: Arial, sans-serif; /* Use a clean, sans-serif font */
    margin-left: 20px; /* Add spacing between the logo and the text */
    white-space: nowrap; /* Prevent text wrapping */
    line-height: 1; /* Align text vertically with the logo */
text-decoration: none; /* Ensures no underline for the name */
}

/* Toggle Button */
.menu-toggle {
    background: none;
    color: white;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    padding: 10px;
}

/* Menu Items Styling */
.menu-items {
    list-style: none;
    display: none; /* Hidden by default */
    flex-direction: column; /* Stack menu items vertically */
    position: absolute;
    top: 100%; /* Position below the menu bar */
    right: 20px; /* Align to the right side */
    background-color: #333;
    padding: 10px;
    margin: 0;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.menu-items li {
    text-align: center;
}

.menu-items a {
    text-decoration: none;
    color: white;
    font-size: 1.2em;
    padding: 10px 15px;
    display: block; /* Make the clickable area larger */
    border-radius: 5px;
    transition: background-color 0.3s;
}

.menu-items a:hover {
    background-color: #28a745;
    color: white;
}

/* Show Menu When Active */
.menu-items.active {
    display: flex; /* Show the menu when active */
}
.hero {
    background: url('src/hero-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 3em;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    background: rgba(75, 54, 33, 0.3); /* Dark brown with higher transparency */
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block; /
    font-weight: bold;
}

.hero-content h1 {
    font-size: 1.5em;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    background: rgba(75, 54, 33, 0.3); /* Dark brown with higher transparency */
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block; /
    font-weight: bold;
}

.hero-content button {
    text-decoration: none; /* Ensures no underline for the name */
}
/* Investment Opportunities Section */
.investment-opportunities {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
}

.investment-opportunities h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.opportunity-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.opportunity {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    width: 300px;
    text-align: center;
}
.opportunity-button {
    text-decoration: none; /* Ensures no underline for the name */
}
.opportunity img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* How It Works Section */
.how-it-works {
    padding: 40px 20px;
    background-color: #eef9f0;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.steps {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    width: 300px;
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
}

.testimonials h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.testimonials-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    width: 300px;
    text-align: center;
}

/* Footer */
.footer {
    padding: 20px;
    background-color: #333;
    color: white;
    text-align: center;
}

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

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

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

/* Live Stocks Chart Section */
.live-stocks-chart {
    padding: 40px 20px;
    background-color: #eef9f0;
    text-align: center;
}

.live-stocks-chart h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.stock-charts {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.chart {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.chart h3 {
    font-size: 1.5em;
    color: #28a745;
    margin-bottom: 10px;
}

.tradingview-widget-container {
    width: 100%;
    height: 300px;
}


.signup-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.signup-title {
    font-size: 2em;
    text-align: center;
    color: #333;
    margin-bottom: 10px;
}

.signup-description {
    text-align: center;
    font-size: 1.2em;
    color: #555;
    margin-bottom: 20px;
}

/* Form Styles */
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

label {
    font-size: 1em;
    color: #333;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="file"] {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

input[type="file"] {
    background-color: #f5f5f5;
    cursor: pointer;
}

input[type="checkbox"] {
    margin-right: 10px;
}

button.signup-button {
    padding: 12px;
    font-size: 1.2em;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}

button.signup-button:hover {
    background-color: #218838;
}

/* Section for Broker Questions */
h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

.form-group label {
    font-weight: normal;
}

/* File Upload Styles */
input[type="file"] {
    font-size: 0.9em;
    padding: 5px;
    background-color: #eef9f0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Checkbox Agreement */
.form-group label[for="terms"] {
    font-size: 0.9em;
    color: #555;
}

.form-group label[for="terms"] a {
    color: #28a745;
    text-decoration: none;
}

.form-group label[for="terms"] a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .signup-container {
        padding: 15px;
    }

    .signup-title {
        font-size: 1.8em;
    }

    .signup-description {
        font-size: 1em;
    }

    button.signup-button {
        font-size: 1em;
    }
    }


/* Header */
.heroprojects {
    text-align: center;
    background-color: #eef9f0;
    padding: 50px 20px;
}


/* Main Section */
.main-content {
    padding: 40px 20px;
    text-align: center;
}

.main-content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
    padding: 0 10px;
}

.project-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent */
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: left;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    overflow: hidden;
}

.project-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
}

.project-card h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

.project-card p {
    font-size: 1em;
    margin-bottom: 15px;
    color: #555;
}

.project-card a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #28a745;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.project-card a:hover {
    background-color: #218838;
}

/* Investment Section */

.herotomato {
    text-align: center;
    background-color: #eef9f0;
    padding: 50px 20px;
}

.herotomato h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #28a745;
}

.herotomato p {
    font-size: 1.2em;
}
    .herochili {
    text-align: center;
    background-color: #eef9f0;
    padding: 50px 20px;
        }

    

.herochili h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.herochili p {
    font-size: 1.2em;
}


.investment-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 20px;
    background-color: #fff;
}

.image-container {
    flex: 1 1 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-container {
    flex: 1 1 50%;
    padding: 20px;
}

.info-container h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #d9534f;
}

.info-container ul {
    list-style: none;
    padding: 0;
}

.info-container li {
    margin-bottom: 10px;
    font-size: 1em;
    line-height: 1.5;
}

.info-container strong {
    color: #5cb85c;
}

.herookra {
    text-align: center;
    background-color: #eef9f0;
    padding: 50px 20px;
}

.herookra h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #28a745;
}

.herookra p {
    font-size: 1.2em;
}
