<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Green Future Conference 2025</title>
  <!-- Link to external CSS -->
  <link rel="stylesheet" href="style.css" />
  <!-- Google Fonts -->
  <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Open+Sans&display=swap" rel="stylesheet">
</head>
<body>
  <header>
    <!-- Logo Section on a White/Neutral Background -->
    <div class="logo-section">
      <div class="container">
        <a href="/">
          <img src="https://jointconference.neocities.org/images/Joint%20Conference%20Logo_Illustrator%20File.png" alt="Joint Conference Logo" class="conference-logo" />
        </a>
      </div>
    </div>
    <!-- Navigation Section with a Green Background -->
    <div class="nav-section">
      <div class="container">
        <nav class="navbar">
          <ul class="nav-links">
            <li><a href="#about">About</a></li>
            <li><a href="#agenda">Agenda</a></li>
            <li><a href="#speakers">Speakers</a></li>
            <li><a href="#sponsors">Sponsors</a></li>
            <li><a href="#register">Register</a></li>
          </ul>
        </nav>
      </div>
    </div>
  </header>

  <!-- Hero Section -->
  <section class="hero">
    <div class="hero-content">
      <h2>Join the Leaders in Sustainable Waste Management</h2>
      <p>
        Featuring IRF, ILCSWMA, and SWANA – Pioneering the future of recycling and solid waste management.
      </p>
      <a href="#register" class="btn">Register Now</a>
    </div>
  </section>

  <!-- About Section -->
  <section id="about" class="about">
    <div class="container">
      <h2>About the Conference</h2>
      <p>
        Discover the latest trends, innovations, and solutions in recycling and waste management. Connect with industry leaders and pioneers from IRF, ILCSWMA, and SWANA while exploring new business opportunities.
      </p>
    </div>
  </section>

  <!-- Agenda Section -->
  <section id="agenda" class="agenda">
    <div class="container">
      <h2>Conference Agenda</h2>
      <div class="agenda-items">
        <div class="agenda-item">
          <h3>Keynote Sessions</h3>
          <p>Hear from top industry experts on emerging technologies and sustainable practices.</p>
        </div>
        <div class="agenda-item">
          <h3>Workshops & Panels</h3>
          <p>Participate in hands-on sessions and interactive discussions with leaders in the field.</p>
        </div>
        <div class="agenda-item">
          <h3>Networking Events</h3>
          <p>Engage with peers, innovators, and potential business partners in a dynamic environment.</p>
        </div>
      </div>
    </div>
  </section>

  <!-- Speakers Section -->
  <section id="speakers" class="speakers">
    <div class="container">
      <h2>Featured Speakers</h2>
      <div class="speaker-grid">
        <div class="speaker">
          <img src="speaker1.jpg" alt="Speaker 1" />
          <h3>Jane Doe</h3>
          <p>CEO, Green Innovations</p>
        </div>
        <div class="speaker">
          <img src="speaker2.jpg" alt="Speaker 2" />
          <h3>John Smith</h3>
          <p>Director, Waste Solutions</p>
        </div>
        <div class="speaker">
          <img src="speaker3.jpg" alt="Speaker 3" />
          <h3>Mary Johnson</h3>
          <p>Expert, Recycling Technologies</p>
        </div>
      </div>
    </div>
  </section>

  <!-- Sponsors Section -->
  <section id="sponsors" class="sponsors">
    <div class="container">
      <h2>Sponsorship Opportunities</h2>
      <p>
        Showcase your business in front of industry leaders and decision-makers. Partner with us to drive innovation and sustainable growth in waste management.
      </p>
      <a href="#contact" class="btn">Become a Sponsor</a>
    </div>
  </section>

  <!-- Registration Section -->
  <section id="register" class="register">
    <div class="container">
      <h2>Register Today</h2>
      <p>
        Don’t miss your chance to be part of this transformative event. Secure your spot and join us on the journey toward a greener future.
      </p>
      <a href="registration.html" class="btn">Register Now</a>
    </div>
  </section>

  <!-- Footer -->
  <footer>
    <div class="container">
      <p>&copy; 2025 Green Future Conference. All Rights Reserved.</p>
    </div>
  </footer>
</body>
</html>
