<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>WealthPro Agency - Financial Advising</title>

    <style>

        /* Basic Reset and Variables */

        :root {

            --primary-color: #004a99; /* Deep Blue */

            --secondary-color: #33aaff; /* Lighter Blue/Accent */

            --text-color: #333;

            --light-bg: #f4f4f9;

        }


        * {

            margin: 0;

            padding: 0;

            box-sizing: border-box;

        }


        body {

            font-family: 'Arial', sans-serif;

            line-height: 1.6;

            color: var(--text-color);

            background-color: #fff;

        }


        /* --- Global Styles --- */

        .container {

            width: 90%;

            max-width: 1200px;

            margin: auto;

            overflow: hidden;

            padding: 20px 0;

        }


        h2, h3 {

            color: var(--primary-color);

            text-align: center;

            margin-bottom: 20px;

        }


        /* --- Header/Banner Section --- */

        #banner {

            background: var(--primary-color);

            color: #fff;

            text-align: center;

            padding: 100px 20px;

            background-image: url('financial-banner-placeholder.jpg'); /* REPLACE with your image URL */

            background-size: cover;

            background-position: center;

            height: 350px;

            display: flex;

            flex-direction: column;

            justify-content: center;

            position: relative;

        }


        #banner::before {

            content: '';

            position: absolute;

            top: 0;

            left: 0;

            right: 0;

            bottom: 0;

            background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */

            z-index: 1;

        }


        #banner h1 {

            font-size: 3.5em;

            margin-bottom: 5px;

            z-index: 2;

        }


        #banner p {

            font-size: 1.5em;

            font-weight: 300;

            z-index: 2;

        }


        /* --- About Us Section --- */

        #about {

            padding: 40px 0;

            background-color: var(--light-bg);

            border-bottom: 1px solid #ddd;

        }


        .about-content {

            display: flex;

            align-items: center;

            gap: 40px;

            flex-wrap: wrap;

        }


        .about-text {

            flex: 2;

            min-width: 300px;

        }


        .about-image {

            flex: 1;

            min-width: 250px;

            max-width: 350px;

        }


        .about-image img {

            width: 100%;

            height: auto;

            border-radius: 8px;

            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

        }


        /* --- Services Section --- */

        #services {

            padding: 40px 0;

        }


        .services-list {

            list-style: none;

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

            gap: 20px;

            text-align: center;

        }


        .service-item {

            background: var(--light-bg);

            padding: 30px 20px;

            border-radius: 8px;

            border-top: 5px solid var(--secondary-color);

            transition: transform 0.3s;

        }


        .service-item:hover {

            transform: translateY(-5px);

            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

        }


        .service-item h3 {

            margin-top: 0;

            margin-bottom: 15px;

        }


        /* --- Agents Section --- */

        #agents {

            padding: 40px 0;

            background-color: var(--light-bg);

            border-top: 1px solid #ddd;

        }


        .agents-grid {

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

            gap: 30px;

        }


        .agent-card {

            text-align: center;

            padding: 20px;

            border: 1px solid #ccc;

            border-radius: 8px;

            background: #fff;

        }


        .agent-card img {

            width: 120px;

            height: 120px;

            border-radius: 50%;

            object-fit: cover;

            margin-bottom: 15px;

            border: 3px solid var(--secondary-color);

        }


        .agent-card h4 {

            margin: 0;

            color: var(--primary-color);

        }


        .agent-card p {

            font-size: 0.9em;

            color: #666;

            margin-top: 5px;

        }


        /* --- Contact Us Section --- */

        #contact {

            padding: 40px 0;

        }


        #contact form {

            max-width: 600px;

            margin: auto;

            padding: 30px;

            background: var(--light-bg);

            border-radius: 8px;

            box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);

        }


        .form-group {

            margin-bottom: 20px;

        }


        .form-group label {

            display: block;

            margin-bottom: 5px;

            font-weight: bold;

        }


        .form-group input,

        .form-group textarea {

            width: 100%;

            padding: 10px;

            border: 1px solid #ccc;

            border-radius: 4px;

            font-size: 1em;

        }


        .form-group textarea {

            resize: vertical;

            min-height: 150px;

        }


        button[type="submit"] {

            display: block;

            width: 100%;

            background: var(--secondary-color);

            color: #fff;

            padding: 15px;

            border: none;

            border-radius: 4px;

            cursor: pointer;

            font-size: 1.1em;

            transition: background 0.3s;

        }


        button[type="submit"]:hover {

            background: #007bb5;

        }


        /* --- Footer --- */

        footer {

            background: var(--primary-color);

            color: #fff;

            text-align: center;

            padding: 20px 0;

            margin-top: 20px;

        }


        /* --- Responsive Adjustments --- */

        @media (max-width: 768px) {

            #banner h1 {

                font-size: 2.5em;

            }

            #banner p {

                font-size: 1.2em;

            }

            .about-content {

                flex-direction: column;

                text-align: center;

            }

            .about-image {

                order: -1; /* Puts image above text on mobile */

            }

        }

    </style>

</head>

<body>


    <header id="banner">

        <h1>WealthPro Agency</h1>

        <p>Your Path to Financial Security and Prosperity.</p>

    </header>


    <section id="about" class="container">

        <h2>About WealthPro Agency</h2>

        <div class="about-content">

            <div class="about-text">

                <p><strong>WealthPro Agency</strong> is dedicated to providing personalized and holistic financial guidance. We empower individuals, families, and businesses to achieve their long-term financial goals through expert planning and disciplined execution.</p>

                <p>We believe financial success isn't about luck—it's about having a clear strategy. Our independent, client-first approach ensures that the advice you receive is always tailored to your unique needs, helping you build, protect, and transfer wealth efficiently.</p>

            </div>

            <div class="about-image">

                <img src="about-us-placeholder.jpg" alt="WealthPro Agency team meeting" loading="lazy">

            </div>

        </div>

    </section>


    <hr>


    <section id="services" class="container">

        <h2>Our Core Services</h2>

        <ul class="services-list">

            <li class="service-item">

                <h3>Investing and Savings</h3>

                <p>Strategies for wealth accumulation, retirement planning, college savings, and expert portfolio management.</p>

            </li>

            <li class="service-item">

                <h3>Tax Reductions</h3>

                <p>Proactive tax-efficient planning to minimize liabilities and maximize the efficiency of your investments.</p>

            </li>

            <li class="service-item">

                <h3>Insurance & Risk Management</h3>

                <p>Comprehensive protection plans including life, disability, and long-term care insurance for true financial security.</p>

            </li>

        </ul>

    </section>


    <hr>


    <section id="agents" class="container">

        <h2>Meet Our Licensed Agents</h2>

        <div class="agents-grid">

            <div class="agent-card">

                <img src=“img_farid.jpeg" alt=“Farid Khatib“ loading="lazy">

                <h4>Farid Khatib</h4>

                <p>Lead Financial Planner</p>

            </div>

            <div class="agent-card">

                <img src="img_nasim.jpeg" alt=“Nasim Adabi” loading="lazy">

                <h4>Nasim Adabi</h4>

                <p>Financial Planner</p>

            </div>

            <div class="agent-card">

                <img src="img_manijeh.jpeg" alt=“Manijeh Moradjo” loading="lazy">

                <h4>Manijeh Moradjo</h4>

                <p>Financial Planner</p>

            </div>

            <div class="agent-card">

                <img src="img_sara.jpeg" alt=“Sara Azad“ loading="lazy">

                <h4>Sara Azad</h4>

                <p>Financial Planner</p>

            </div>

<div class="agent-card">

                <img src="img_yeganah.jpeg" alt=“Yeganeh Alirezaee“ loading="lazy">

                <h4>Yeganeh Alirezaee</h4>

                <p>Financial Planner</p>

            </div>

        </div>

    </section>


    <hr>


    <section id="contact" class="container">

        <h2>Contact Us</h2>

        <p style="text-align: center; margin-bottom: 30px;">Ready to secure your financial future? Fill out the form below to schedule a consultation.</p>

        <form action="submit_form.php" method="POST">

            <div class="form-group">

                <label for="name">Full Name</label>

                <input type="text" id="name" name="name" required>

            </div>

            <div class="form-group">

                <label for="email">Email Address</label>

                <input type="email" id="email" name="email" required>

            </div>

            <div class="form-group">

                <label for="phone">Phone Number (Optional)</label>

                <input type="tel" id="phone" name="phone">

            </div>

            <div class="form-group">

                <label for="message">Your Inquiry</label>

                <textarea id="message" name="message" required placeholder="Tell us a little bit about your financial goals..."></textarea>

            </div>

            <button type="submit">Send Message</button>

        </form>

    </section>


    <footer>

        <p>&copy; <script>document.write(new Date().getFullYear())</script> WealthPro Agency. All rights reserved.</p>

    </footer>


</body>

</html>