<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Digital Marketing Agency</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
line-height: 1.6;
color: #fff;
background-color: #000;
}
header {
background: linear-gradient(90deg, #000, #0044cc);
color: white;
padding: 20px 10%;
text-align: center;
animation: fadeIn 2s ease-in-out;
}
header h1 {
margin: 0;
font-size: 2rem;
}
header p {
margin-top: 10px;
font-size: 1.2rem;
}
.cta {
margin-top: 20px;
}
.cta a {
background: #0044cc;
color: #fff;
text-decoration: none;
padding: 10px 20px;
border-radius: 5px;
font-size: 1rem;
transition: background 0.3s, transform 0.3s;
}
.cta a:hover {
background: #002266;
transform: scale(1.05);
}
.section {
padding: 40px 10%;
animation: slideIn 1s ease-in-out;
}
.section h2 {
text-align: center;
color: #0044cc;
animation: bounceIn 1s;
}
.services, .how-it-works {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
}
.service-item, .step {
background: #002266;
color: #fff;
border: 1px solid #0044cc;
border-radius: 8px;
padding: 20px;
width: calc(33% - 40px);
box-sizing: border-box;
transition: transform 0.3s, box-shadow 0.3s;
}
.service-item:hover, .step:hover {
transform: translateY(-5px);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.testimonials {
background: #001133;
padding: 40px 10%;
animation: fadeInUp 1s;
}
.testimonial-item {
margin-bottom: 20px;
font-style: italic;
}
.cta-section {
text-align: center;
background: linear-gradient(90deg, #0044cc, #000);
color: white;
padding: 30px 10%;
animation: pulse 2s infinite;
}
.cta-section a {
background: #fff;
color: #0044cc;
text-decoration: none;
padding: 10px 20px;
border-radius: 5px;
transition: background 0.3s, transform 0.3s;
}
.cta-section a:hover {
background: #002266;
color: white;
transform: scale(1.05);
}
footer {
background: #000;
color: #fff;
text-align: center;
padding: 20px 10%;
animation: fadeIn 2s ease-in-out;
}
footer a {
color: #0044cc;
text-decoration: none;
}
@media (max-width: 768px) {
.service-item, .step {
width: 100%;
}
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes slideIn {
from {
opacity: 0;
transform: translateX(-50px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
@keyframes bounceIn {
0% {
opacity: 0;
transform: scale(0.3);
}
50% {
opacity: 1;
transform: scale(1.05);
}
70% {
transform: scale(0.9);
}
100% {
transform: scale(1);
}
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
100% {
transform: scale(1);
}
}
</style>
</head>
<body>
<header>
<h1>Unlock Your Brand’s True Potential with Data-Driven Digital Marketing</h1>
<p>From visibility to conversions, we craft custom strategies to elevate your brand and drive measurable growth.</p>
<div class="cta">
<a href="#">Get a Free Marketing Consultation Today</a>
</div>
</header>
<section class="section about">
<h2>Your Partner in Digital Success</h2>
<p>At San, we specialize in building meaningful connections between your brand and your audience. With cutting-edge strategies, creative campaigns, and advanced analytics, we help businesses thrive in the ever-evolving digital landscape.</p>
</section>
<section class="section services">
<h2>Our Services</h2>
<div class="service-item">
<h3>Search Engine Optimization (SEO)</h3>
<p>Dominate search engines and attract high-intent traffic.</p>
</div>
<div class="service-item">
<h3>Pay-Per-Click (PPC) Advertising</h3>
<p>Maximize ROI with targeted campaigns on Google, Facebook, and beyond.</p>
</div>
<div class="service-item">
<h3>Social Media Marketing (SMM)</h3>
<p>Engage your audience and grow your community across platforms.</p>
</div>
<div class="service-item">
<h3>Content Marketing</h3>
<p>Deliver value and establish authority with compelling content.</p>
</div>
<div class="service-item">
<h3>Email Marketing</h3>
<p>Build lasting relationships and drive repeat sales.</p>
</div>
<div class="service-item">
<h3>Web Design & Development</h3>
<p>Create user-friendly, high-converting websites that captivate your audience.</p>
</div>
</section>
<section class="section testimonials">
<h2>Real Results, Real Impact</h2>
<div class="testimonial-item">
<p>“Working with San was a game-changer. In just three months, our website traffic tripled, and our leads increased by 200%.”</p>
<p>— Pav, Test</p>
</div>
<!-- Add more testimonials as needed -->
</section>
<section class="section how-it-works">
<h2>How It Works</h2>
<div class="step">
<h3>1. Book a Free Consultation</h3>
<p>Let’s discuss your goals and challenges.</p>
</div>
<div class="step">
<h3>2. Receive a Customized Strategy</h3>
<p>We’ll craft a detailed plan tailored to your needs.</p>
</div>
<div class="step">
<h3>3. Achieve Results Together</h3>
<p>Watch your business grow with our expert execution.</p>
</div>
</section>
<section class="cta-section">
<h2>Ready to Elevate Your Digital Presence?</h2>
<a href="#">Let’s Get Started</a>
</section>
<footer>
<p>Contact Information: Address, Phone, Email</p>
<p><a href="#">Privacy Policy</a> | <a href="#">Terms of Service</a></p>
<p>© 2023 San. All Rights Reserved.</p>
</footer>
</body>
</html>