<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Electronics on Easy Installments</title>
<style>
body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
background-color: #2c3e50; /* Dark background */
color: #ecf0f1; /* Light text for better contrast */
overflow-x: hidden;
}
.header {
background-image: url('https://instalment.pk/images/web-images/comprslider.png');
background-size: cover;
background-position: center;
color: #ecf0f1;
padding: 100px 20px;
text-align: center;
animation: fadeIn 2s ease-in-out;
}
.header h1 {
font-size: 55px;
font-weight: bold;
color: #ecf0f1;
text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
animation: slideInDown 1s ease-out;
}
.header p {
font-size: 24px;
margin-top: 15px;
background-color: rgba(255, 255, 255, 0.8); /* Light background for highlight */
display: inline-block; /* Make background wrap around text */
padding: 10px; /* Add some padding */
border-radius: 8px; /* Slightly rounded corners */
color: black; /* Set font color to black */
animation: slideInUp 1.5s ease-out;
}
.container {
padding: 70px 20px;
text-align: center;
background-color: #34495e;
animation: fadeInUp 1.5s ease-out;
}
.container h1 {
color: #1abc9c;
font-size: 46px;
margin-bottom: 40px;
font-weight: bold;
animation: zoomIn 1.2s ease-in-out;
}
.product-box {
background-color: #2c3e50;
border-radius: 15px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
margin: 40px auto;
padding: 50px;
width: 85%;
max-width: 800px;
animation: bounceIn 1.8s ease;
}
.product-box img {
max-width: 100%;
border-radius: 15px;
transition: transform 0.4s ease;
}
.product-box img:hover {
transform: scale(1.1);
}
.product-box p {
font-size: 22px;
margin: 25px 0;
color: #bdc3c7;
}
.cta {
background-color: #1abc9c;
color: white;
padding: 20px 50px;
text-decoration: none;
border-radius: 50px;
font-size: 26px;
transition: background-color 0.3s ease, transform 0.3s ease;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
animation: pulse 2s infinite;
}
.cta:hover {
background-color: #16a085;
transform: translateY(-5px);
}
.footer {
background-color: #1abc9c;
color: white;
text-align: center;
padding: 30px;
margin-top: 50px;
font-size: 18px;
}
/* Animations */
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes slideInDown {
from { transform: translateY(-50px); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}
@keyframes slideInUp {
from { transform: translateY(50px); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(50px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes zoomIn {
from { transform: scale(0); }
to { transform: scale(1); }
}
@keyframes bounceIn {
0%, 20%, 40%, 60%, 80%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
</style>
</head>
<body>
<div class="header">
<h1>Electronics at Your Fingertips</h1>
<p style="background-color: rgba(255, 255, 255, 0.8); padding: 10px; border-radius: 8px; color: black;">No Down Payment! Pay Just 999/= Rupees Per Month After You Receive Your Product</p>
</div>
<div class="container">
<h1>Grab Your Favorite Gadgets Now</h1>
<div class="product-box">
<img src="https://www.hcsupermart.com/wp-content/uploads/2021/08/mobile-banner-final.jpg" alt="Product Image">
<p>Choose from top-tier smartphones, laptops, home appliances, and more. No upfront cost – start paying only after you get your product!</p>
</div>
<a href="https://www.youtube.com/@techpk3013" class="cta">Shop Now</a>
</div>
<div class="footer">
<p>© 2024 Electronics World | Easy Installments, No Hassle</p>
</div>
</body>
</html>