/* Base */
body {
margin: 0;
font-family: ‘Inter’, sans-serif;
color: #1a1a1a;
line-height: 1.6;
scroll-behavior: smooth;
background: #fff;
}
a { text-decoration: none; }
.button {
display: inline-block;
background: linear-gradient(135deg, #ff6b6b, #ff9f6b);
color: #fff;
padding: 0.8rem 2rem;
border-radius: 10px;
font-weight: 600;
transition: transform 0.3s, box-shadow 0.3s;
}
.button:hover {
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Hero */
.hero {
background: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0.2)), url(‘https://elevateadgroup.com/wp-content/uploads/2025/09/startup-594090_1280.jpg’) center/cover no-repeat;
height: 90vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
color: #333;
padding: 0 2rem;
position: relative;
}
.hero h1 {
font-size: 3rem;
margin-bottom: 1rem;
opacity: 0;
transform: translateY(20px);
animation: fadeUp 1s forwards 0.3s;
}
.hero p {
font-size: 1.25rem;
margin-bottom: 2rem;
max-width: 600px;
opacity: 0;
transform: translateY(20px);
animation: fadeUp 1s forwards 0.6s;
}

/* Fade Up Animation */
@keyframes fadeUp {
to {
opacity: 1;
transform: translateY(0);
}
}

/* Section Titles */
.section-title {
text-align: center;
font-size: 2rem;
margin-bottom: 2rem;
color: #ff6b6b;
position: relative;
}
.section-title::after {
content: ”;
display: block;
width: 60px;
height: 3px;
background: #ff6b6b;
margin: 0.5rem auto 0;
}

/* Sections */
section {
padding: 4rem 2rem;
max-width: 1100px;
margin: 0 auto;
opacity: 0;
transform: translateY(20px);
transition: all 0.6s ease-out;
}

/* About / What We Do / Growth */
.about, .what-we-do, .growth {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 2rem;
}
.about img, .what-we-do img, .growth img {
flex: 1 1 400px;
border-radius: 12px;
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.about .text, .what-we-do .text, .growth .text {
flex: 1 1 400px;
}

/* Cards */
.cards {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 2rem;
}
.card {
flex: 1 1 250px;
background: linear-gradient(135deg, #ffecec, #fff3f3);
border-radius: 12px;
padding: 2rem;
text-align: center;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.card h3 {
margin-bottom: 1rem;
color: #ff6b6b;
}
.card p {
font-size: 1rem;
}

/* Careers */
.careers .job {
margin-bottom: 2rem;
padding: 2rem;
background: linear-gradient(135deg, #ffecec, #fff3f3);
border-radius: 12px;
text-align: center;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
transition: transform 0.3s;
}
.careers .job:hover {
transform: translateY(-3px);
}
.careers .job h4 {
margin-bottom: 0.5rem;
}

/* Footer CTA */
.footer-cta {
background: linear-gradient(135deg, #ff6b6b, #ff9f6b);
color: #fff;
text-align: center;
padding: 4rem 2rem;
}
.footer-cta h2 { margin-bottom: 1rem; }
.footer-cta a.button { font-size: 1.1rem; }

/* Responsive */
@media(max-width: 768px){
.about, .what-we-do, .growth {
flex-direction: column;
}
.hero h1 { font-size: 2.25rem; }
.hero p { font-size: 1rem; }
}

Elevate Your Impact. Empower the Future.

We are brand ambassadors for Childhelp, growing a team of passionate leaders and creators. Join us and make a difference.

Join Our Team

Team Collaboration

Who We Are

Elevate Advertising Group is a management-driven team dedicated to helping brands and communities thrive. As Childhelp Brand Ambassadors, we bring creativity, leadership, and heart to every project. Together, we build careers while making meaningful impact.

What We Do

We represent Childhelp, raising awareness, engaging communities, and driving initiatives that protect and support children in need. Our team is trained, organized, and committed to results, blending professionalism with passion for positive change.

Activism and Community

Grow With Us

At Elevate, we are building more than campaigns—we’re building leaders. Join our team and access training, mentorship, and management opportunities that help you grow personally and professionally.

🚀 Leadership Growth

Develop management skills while leading a team of creative ambassadors.

🎨 Creative Impact

Design campaigns, events, and initiatives that truly make a difference.

🤝 Community Engagement

Build meaningful connections while supporting a vital cause.

Join Our Team

Brand Ambassador

Engage communities, represent Childhelp, and grow your career in a supportive team.

Apply Now

Team Leader

Lead a group of ambassadors, manage initiatives, and develop your leadership skills.

Apply Now

// Fade-in on scroll
const sections = document.querySelectorAll(‘section’);
const options = { threshold: 0.2 };
const observer = new IntersectionObserver((entries, observer) => {
entries.forEach(entry => {
if(entry.isIntersecting){
entry.target.style.opacity = 1;
entry.target.style.transform = ‘translateY(0)’;
}
});
}, options);

sections.forEach(section => observer.observe(section));