<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>All Truth Ministries International | Advancing the Living Word of God</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Georgia', serif;
line-height: 1.8;
color: #333;
background-color: #f9f7f4;
}
/* Header and Navigation */
header {
background-color: #2c5f2d;
padding: 20px 0;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
position: sticky;
top: 0;
z-index: 100;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.header-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}
.logo {
font-size: 28px;
font-weight: bold;
color: #f4d03f;
text-decoration: none;
}
nav ul {
list-style: none;
display: flex;
flex-wrap: wrap;
gap: 25px;
align-items: center;
}
nav a {
color: white;
text-decoration: none;
font-size: 16px;
font-weight: 500;
transition: color 0.3s ease;
padding: 8px 12px;
}
nav a:hover {
color: #f4d03f;
}
/* Hero Section */
.hero {
background: linear-gradient(135deg, rgba(44, 95, 45, 0.8), rgba(212, 165, 116, 0.7)), url('/home/ubuntu/atmic_hero_fall.png');
background-size: cover;
background-position: center;
height: 500px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: white;
padding: 40px 20px;
}
.hero-content h1 {
font-size: 48px;
margin-bottom: 15px;
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
font-weight: bold;
}
.hero-content p {
font-size: 22px;
margin-bottom: 30px;
text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.hero-buttons {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}
.cta-button {
display: inline-block;
background-color: #d4a574;
color: white;
padding: 15px 40px;
text-decoration: none;
border-radius: 5px;
font-size: 18px;
font-weight: bold;
transition: background-color 0.3s ease;
border: 2px solid #d4a574;
}
.cta-button:hover {
background-color: #c49563;
border-color: #c49563;
}
.cta-button-secondary {
background-color: transparent;
border: 2px solid white;
color: white;
}
.cta-button-secondary:hover {
background-color: rgba(255, 255, 255, 0.1);
}
/* Section Styles */
section {
padding: 60px 20px;
}
section h2 {
font-size: 36px;
color: #2c5f2d;
margin-bottom: 30px;
text-align: center;
}
section h3 {
font-size: 24px;
color: #2c5f2d;
margin-bottom: 15px;
margin-top: 20px;
}
section p {
font-size: 18px;
line-height: 1.8;
margin-bottom: 15px;
}
/* Who We Are Section */
.who-we-are {
background-color: white;
}
.who-we-are-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
}
.who-we-are-text {
padding: 20px;
}
.who-we-are-text p {
text-align: left;
}
.who-we-are-image {
text-align: center;
}
.who-we-are-image img {
max-width: 100%;
height: auto;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
/* Services Section */
.services {
background: linear-gradient(135deg, #f4d03f 0%, #f9e8b8 100%);
color: #333;
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-top: 40px;
}
.service-card {
background-color: white;
padding: 30px;
border-radius: 10px;
text-align: center;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}
.service-card:hover {
transform: translateY(-5px);
}
.service-card h3 {
color: #2c5f2d;
margin-bottom: 15px;
}
.service-card p {
font-size: 16px;
text-align: center;
}
/* Bible Enrichment Study Section */
.bible-study {
background-color: white;
}
.bible-study-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
}
.study-schedule {
background: linear-gradient(135deg, #f4d03f 0%, #f9e8b8 100%);
padding: 30px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.study-schedule h3 {
color: #2c5f2d;
margin-bottom: 20px;
}
.schedule-item {
margin-bottom: 20px;
padding-bottom: 15px;
border-bottom: 2px solid #d4a574;
background-color: white;
padding: 15px;
border-radius: 5px;
}
.schedule-item:last-child {
border-bottom: none;
}
.schedule-time {
font-weight: bold;
color: #2c5f2d;
font-size: 18px;
}
.schedule-activity {
color: #666;
margin-top: 5px;
}
/* GIVING PAGE SECTION */
.giving-section {
background: linear-gradient(135deg, #f4d03f 0%, #f9e8b8 100%);
}
.giving-header {
text-align: center;
margin-bottom: 40px;
}
.giving-header p {
font-size: 18px;
color: #333;
max-width: 600px;
margin: 0 auto;
}
/* Giving Type Boxes */
.giving-type-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 25px;
margin-bottom: 50px;
}
.giving-box {
background-color: white;
padding: 30px;
border-radius: 10px;
text-align: center;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
transition: all 0.3s ease;
cursor: pointer;
border: 3px solid transparent;
}
.giving-box:hover {
transform: translateY(-5px);
border-color: #2c5f2d;
box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.giving-box h4 {
font-size: 22px;
color: #2c5f2d;
margin-bottom: 15px;
}
.giving-box p {
font-size: 14px;
color: #666;
margin-bottom: 15px;
}
.giving-box button {
background-color: #2c5f2d;
color: white;
padding: 12px 25px;
border: none;
border-radius: 5px;
font-size: 16px;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s ease;
}
.giving-box button:hover {
background-color: #1a3a1b;
}
/* Giving Method Boxes */
.giving-methods-title {
text-align: center;
font-size: 28px;
color: #2c5f2d;
margin-bottom: 30px;
margin-top: 40px;
}
.giving-methods-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 20px;
margin-bottom: 50px;
}
.method-box {
background-color: white;
padding: 25px;
border-radius: 10px;
text-align: center;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
transition: all 0.3s ease;
cursor: pointer;
}
.method-box:hover {
transform: translateY(-5px);
box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.method-box h5 {
font-size: 20px;
color: #2c5f2d;
margin-bottom: 15px;
}
.method-box button {
background-color: #d4a574;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
font-size: 14px;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s ease;
}
.method-box button:hover {
background-color: #c49563;
}
/* Bible Enrichment Giving Section */
.bible-enrichment-giving {
background-color: white;
padding: 40px;
border-radius: 10px;
border-left: 5px solid #2c5f2d;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
margin-top: 40px;
text-align: center;
}
.bible-enrichment-giving h3 {
color: #2c5f2d;
margin-bottom: 15px;
}
.bible-enrichment-giving p {
font-size: 18px;
color: #666;
margin-bottom: 25px;
}
/* Testimonials Section */
.testimonials {
background-color: white;
}
.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 40px;
}
.testimonial-card {
background-color: #f9f7f4;
padding: 25px;
border-radius: 10px;
border-left: 5px solid #d4a574;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.testimonial-card p {
font-style: italic;
color: #555;
margin-bottom: 15px;
}
.testimonial-author {
font-weight: bold;
color: #2c5f2d;
}
/* Board Members Section */
.board-members {
background: linear-gradient(135deg, #f4d03f 0%, #f9e8b8 100%);
}
.board-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-top: 40px;
}
.board-card {
background-color: white;
padding: 20px;
border-radius: 10px;
text-align: center;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.board-card img {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 15px;
}
.board-card h3 {
color: #2c5f2d;
margin-bottom: 5px;
}
.board-card p {
color: #666;
font-size: 14px;
}
/* Ministers Section */
.ministers {
background-color: white;
margin-top: 40px;
padding: 40px 20px;
text-align: center;
}
.ministers h3 {
font-size: 28px;
color: #2c5f2d;
margin-bottom: 30px;
}
.ministers-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
}
.minister-card {
text-align: center;
}
.minister-card img {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 15px;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.minister-card h4 {
font-size: 20px;
color: #2c5f2d;
margin-bottom: 5px;
}
/* Contact Section */
.contact {
background-color: #2c5f2d;
color: white;
}
.contact h2 {
color: white;
}
.contact-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
margin-top: 40px;
}
.contact-info {
font-size: 18px;
line-height: 2;
}
.contact-info a {
color: #f4d03f;
text-decoration: none;
}
.contact-info a:hover {
text-decoration: underline;
}
.contact-form input,
.contact-form textarea {
width: 100%;
padding: 12px;
margin-bottom: 15px;
border: none;
border-radius: 5px;
font-size: 16px;
font-family: 'Georgia', serif;
}
.contact-form textarea {
resize: vertical;
min-height: 150px;
}
.contact-form button {
background-color: #f4d03f;
color: #2c5f2d;
padding: 12px 30px;
border: none;
border-radius: 5px;
font-size: 16px;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s ease;
}
.contact-form button:hover {
background-color: #d4a574;
}
/* Footer */
footer {
background-color: #1a3a1b;
color: white;
text-align: center;
padding: 30px 20px;
font-size: 14px;
}
footer p {
margin-bottom: 10px;
}
/* Responsive Design */
@media (max-width: 768px) {
nav ul {
gap: 15px;
}
nav a {
font-size: 14px;
}
.hero-content h1 {
font-size: 32px;
}
.hero-content p {
font-size: 18px;
}
.who-we-are-content,
.bible-study-content,
.contact-content {
grid-template-columns: 1fr;
}
section h2 {
font-size: 28px;
}
section p {
font-size: 16px;
}
.hero {
height: 350px;
}
.hero-buttons {
flex-direction: column;
}
.cta-button {
width: 100%;
}
}
@media (max-width: 480px) {
.logo {
font-size: 20px;
}
nav ul {
gap: 10px;
flex-direction: column;
width: 100%;
}
nav a {
font-size: 12px;
padding: 5px 8px;
}
.hero-content h1 {
font-size: 24px;
}
.hero-content p {
font-size: 16px;
}
.cta-button {
font-size: 16px;
padding: 12px 30px;
}
section {
padding: 40px 15px;
}
section h2 {
font-size: 22px;
}
section p {
font-size: 14px;
}
.giving-type-grid,
.giving-methods-grid {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<!-- Header and Navigation -->
<header>
<div class="container">
<div class="header-content">
<a href="#" class="logo">ATMIC</a>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#who-we-are">Who We Are</a></li>
<li><a href="#bible-study">Bible Enrichment</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#give">Give</a></li>
<li><a href="#board">Board Members</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="hero" id="home">
<div class="hero-content">
<div>
<h1>Advancing the Living Word of God with Power & Truth</h1>
<p>A global ministry committed to faith, teaching, healing, and spiritual growth.</p>
<div class="hero-buttons">
<a href="#bible-study" class="cta-button">Join Bible Enrichment</a>
<a href="#give" class="cta-button cta-button-secondary">Give Today</a>
</div>
</div>
</div>
</section>
<!-- Who We Are Section -->
<section class="who-we-are" id="who-we-are">
<div class="container">
<h2>Who We Are</h2>
<div class="who-we-are-content">
<div class="who-we-are-text">
<h3>Our Mission</h3>
<p>All Truth Ministries International (ATMIC) is a faith-based nonprofit organization dedicated to uplifting and empowering all nations. We teach the living Word of God with power, clarity, and purpose. We use Biblical principles through the teaching of the Living Word of God to address the spirit, soul, and body of those we serve.</p>
<h3>Our Vision</h3>
<p>We empower individuals and families to overcome life challenges through comprehensive support and faith-based guidance rooted in the living Word of God. We strive to provide practical biblical solutions, educational resources, and essential assistance to foster stability, growth, and well-being across all nations.</p>
</div>
<div class="who-we-are-image">
<img src="/home/ubuntu/diverse_nations_ministry.png" alt="Diverse Nations Ministry">
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section class="services" id="services">
<div class="container">
<h2>Our Services</h2>
<div class="services-grid">
<div class="service-card">
<h3>Spiritual Guidance</h3>
<p>We use Biblical principles through the teaching of the Living Word of God to guide your spiritual journey and personal growth.</p>
</div>
<div class="service-card">
<h3>Educational Resources</h3>
<p>Access comprehensive online courses, books, and materials designed to strengthen your faith and knowledge of God's Word.</p>
</div>
<div class="service-card">
<h3>Community Support</h3>
<p>Join our community of believers from all nations, united in prayer, faith, and love according to biblical principles.</p>
</div>
<div class="service-card">
<h3>Bible Enrichment Study</h3>
<p>Participate in our weekly Bible Enrichment Study sessions featuring live teachings, prayer, and worship music.</p>
</div>
</div>
</div>
</section>
<!-- Bible Enrichment Study Section -->
<section class="bible-study" id="bible-study">
<div class="container">
<h2>Bible Enrichment Study</h2>
<div class="bible-study-content">
<div class="study-schedule">
<h3>Weekly Schedule</h3>
<div class="schedule-item">
<div class="schedule-time">6:30 PM - 6:45 PM</div>
<div class="schedule-activity">Worship Music</div>
</div>
<div class="schedule-item">
<div class="schedule-time">6:45 PM - 7:00 PM</div>
<div class="schedule-activity">Prayer</div>
</div>
<div class="schedule-item">
<div class="schedule-time">7:00 PM - 8:30 PM</div>
<div class="schedule-activity">Bible Enrichment Teaching</div>
</div>
</div>
<div>
<h3>Join Our Community</h3>
<p>Every Tuesday, we gather to study God's Word, pray together, and grow in faith and understanding. Whether you are new to the faith or have been walking with Christ for years, you are welcome to join our community of all nations.</p>
<p>Recordings of all teachings are available for viewing on our website. To receive text reminders for our Bible Enrichment Study sessions, please sign up using the form below or contact us directly.</p>
<a href="#contact" class="cta-button">Sign Up for Reminders</a>
</div>
</div>
</div>
</section>
<!-- GIVING PAGE SECTION -->
<section class="giving-section" id="give">
<div class="container">
<h2>Support the Ministry</h2>
<div class="giving-header">
<p>Your generosity advances the Word of God and supports Bible Enrichment, outreach, and ministry expansion.</p>
</div>
<!-- Giving Type Boxes -->
<h3 style="text-align: center; color: #2c5f2d; margin-bottom: 30px;">Choose Your Giving Type</h3>
<div class="giving-type-grid">
<div class="giving-box">
<h4>One-Time Gift</h4>
<p>Make a single donation to support our ministry today.</p>
<button onclick="alert('Redirecting to payment...')">Give Now</button>
</div>
<div class="giving-box">
<h4>Weekly Support</h4>
<p>Commit to weekly giving to provide ongoing support.</p>
<button onclick="alert('Redirecting to payment...')">Set Up Weekly</button>
</div>
<div class="giving-box">
<h4>Monthly Partnership</h4>
<p>Become a monthly partner and sustain our mission.</p>
<button onclick="alert('Redirecting to payment...')">Start Monthly</button>
</div>
</div>
<!-- Giving Method Boxes -->
<h3 class="giving-methods-title">Choose Your Payment Method</h3>
<div class="giving-methods-grid">
<div class="method-box">
<h5>Zelle</h5>
<button onclick="alert('Zelle payment information...')">Pay with Zelle</button>
</div>
<div class="method-box">
<h5>PayPal</h5>
<button onclick="alert('PayPal payment information...')">Pay with PayPal</button>
</div>
<div class="method-box">
<h5>Venmo</h5>
<button onclick="alert('Venmo payment information...')">Pay with Venmo</button>
</div>
<div class="method-box">
<h5>Stripe</h5>
<button onclick="alert('Stripe payment information...')">Pay with Stripe</button>
</div>
<div class="method-box">
<h5>Tithely</h5>
<button onclick="alert('Tithely payment information...')">Pay with Tithely</button>
</div>
</div>
<!-- Bible Enrichment Giving Section -->
<div class="bible-enrichment-giving">
<h3>Give to Bible Enrichment Study</h3>
<p>Support the ongoing teaching and weekly enrichment sessions that transform lives through God's Word.</p>
<a href="#" class="cta-button">Give Now – Bible Enrichment</a>
</div>
<p style="text-align: center; font-size: 16px; margin-top: 40px; color: #333;"><strong>Note:</strong> All Truth Ministries International is a 501(c)(3) nonprofit organization. Your donations are tax-deductible.</p>
</div>
</section>
<!-- Board Members Section -->
<section class="board-members" id="board">
<div class="container">
<h2>Board Members</h2>
<div class="board-grid">
<div class="board-card">
<img src="/home/ubuntu/diverse_nations_ministry.png" alt="Pamela Bryant">
<h3>Pamela Bryant</h3>
<p>Founder & Director</p>
</div>
<div class="board-card">
<img src="/home/ubuntu/diverse_nations_ministry.png" alt="Jonathan Ng">
<h3>Jonathan Ng</h3>
<p>Board Member</p>
</div>
<div class="board-card">
<img src="/home/ubuntu/diverse_nations_ministry.png" alt="Dr. Michelle Bryant">
<h3>Dr. Michelle Bryant</h3>
<p>Board Member</p>
</div>
</div>
</div>
</section>
<!-- Ministers Section -->
<div class="ministers">
<h3>Our Ministers</h3>
<div class="ministers-grid">
<div class="minister-card">
<img src="/home/ubuntu/diverse_nations_ministry.png" alt="Minister Pamela">
<h4>Pamela Bryant</h4>
</div>
<div class="minister-card">
<img src="/home/ubuntu/diverse_nations_ministry.png" alt="Minister Jonathan">
<h4>Jonathan Ng</h4>
</div>
<div class="minister-card">
<img src="/home/ubuntu/diverse_nations_ministry.png" alt="Pastor Anthony">
<h4>Pastor Anthony</h4>
</div>
</div>
</div>
<!-- Contact Section -->
<section class="contact" id="contact">
<div class="container">
<h2>Contact Us</h2>
<div class="contact-content">
<div class="contact-info">
<h3 style="color: white; margin-bottom: 20px;">Get in Touch</h3>
<p><strong>Phone:</strong></p>
<p><a href="tel:+18668150738">+1-866-815-0738</a></p>
<p style="margin-top: 20px;"><strong>Email:</strong></p>
<p><a href="mailto:contact@alltruthministriesintl.org">contact@alltruthministriesintl.org</a></p>
<p style="margin-top: 20px;"><strong>Address:</strong></p>
<p>112 Harvard Ave #352<br>Claremont, CA 91711</p>
</div>
<form class="contact-form">
<input type="text" placeholder="Your Name" required>
<input type="email" placeholder="Your Email" required>
<input type="text" placeholder="Subject">
<textarea placeholder="Your Message" required></textarea>
<button type="submit">Send Message</button>
</form>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<p>© 2026 All Truth Ministries International. All rights reserved.</p>
<p>Advancing the Living Word of God to All Nations | Shalom Shalom</p>
</footer>
</body>
</html>