<section class=”premium-services”>
<h2 class=”service-title”>Our Services</h2>
<div class=”services-grid”>
<!– SEO –>
<div class=”service-card”>
<div class=”snow”></div>
<div class=”black-orb”>
<h3>SEO</h3>
</div>
<p>Rank higher on Google and grow organic traffic.</p>
</div>
<!– SMM –>
<div class=”service-card”>
<div class=”snow”></div>
<div class=”black-orb”>
<h3>SMM</h3>
</div>
<p>Powerful social media marketing for brand growth.</p>
</div>
<!– WORDPRESS –>
<div class=”service-card”>
<div class=”snow”></div>
<div class=”black-orb”>
<h3>WordPress</h3>
</div>
<p>Modern fast WordPress websites with premium design.</p>
</div>
</div>
</section>
<style>
/* SECTION */
.premium-services {
background: #050505;
padding: 100px 20px;
text-align: center;
font-family: Poppins, sans-serif;
}
/* TITLE */
.service-title {
font-size: 48px;
color: #ffffff;
text-shadow: 0 0 20px rgba(255,255,255,0.8);
margin-bottom: 60px;
}
/* GRID */
.services-grid {
max-width: 1200px;
margin: auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 40px;
}
/* CARD */
.service-card {
position: relative;
background: linear-gradient(145deg, #8b0000, #ff2b2b);
border-radius: 25px;
padding: 80px 30px;
min-height: 450px;
border: 1px solid rgba(255,0,0,0.5);
box-shadow: 0 15px 40px rgba(255,0,0,0.3);
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
overflow: hidden;
transition: 0.4s;
}
.service-card:hover {
transform: translateY(-10px) scale(1.05);
box-shadow: 0 0 80px rgba(255,0,0,0.6);
}
/* ORB */
.black-orb {
width: 220px;
height: 220px;
min-width: 220px;
min-height: 220px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
background: radial-gradient(circle at 30% 30%, #222222, #000000 70%);
box-shadow:
0 20px 45px rgba(255,255,255,0.15),
0 0 40px rgba(255,255,255,0.1),
0 10px 30px rgba(0,0,0,0.7),
inset 0 15px 25px rgba(255,255,255,0.05),
inset 0 -10px 20px rgba(0,0,0,0.5);
margin-bottom: 30px;
flex-shrink: 0;
transition: 0.4s;
}
.black-orb h3 {
margin: 0;
font-size: 42px;
color: #ffffff;
font-weight: bold;
text-shadow: 0 0 12px rgba(0,0,0,0.5);
}
.black-orb:hover {
transform: scale(1.05);
}
/* TEXT */
.service-card p {
color: #f0f0f0;
font-size: 16px;
text-align: center;
margin-top: 20px;
}
/* SNOW */
.snow span {
position: absolute;
width: 4px;
height: 4px;
background: #ff2b2b;
border-radius: 50%;
opacity: 0.5;
animation: snow 12s linear infinite;
}
@keyframes snow {
0% { transform: translateY(-10px); opacity: 0.5; }
100% { transform: translateY(400px); opacity: 0; }
}
/* ✅ RESPONSIVE FIX (ONLY ADDITION) */
@media (max-width: 992px) {
.service-title {
font-size: 36px;
}
.service-card {
padding: 60px 20px;
min-height: auto;
}
.black-orb {
width: 180px;
height: 180px;
}
.black-orb h3 {
font-size: 34px;
}
}
@media (max-width: 600px) {
.service-title {
font-size: 28px;
}
.services-grid {
grid-template-columns: 1fr;
}
.black-orb {
width: 150px;
height: 150px;
}
.black-orb h3 {
font-size: 26px;
}
.service-card p {
font-size: 14px;
}
}
</style>
<script>
document.querySelectorAll(“.snow”).forEach(s => {
for (let i = 0; i < 20; i++) {
const dot = document.createElement(“span”);
dot.style.left = Math.random() * 100 + “%”;
dot.style.animationDelay = Math.random() * 10 + “s”;
dot.style.animationDuration = (10 + Math.random() * 8) + “s”;
s.appendChild(dot);
}
});
</script>
