| Server IP : 103.234.187.230 / Your IP : 216.73.216.216 Web Server : Apache System : Linux lserver42043-ind.megavelocity.net 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/renewalbazaar/ |
Upload File : |
/* Global Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Arial', sans-serif;
}
/* Header Styles */
header {
background: #2c3e50;
padding: 1rem;
color: white;
}
.logo-container {
display: flex;
align-items: center;
gap: 1rem;
}
.logo {
width: 50px;
height: 50px;
background: #3498db;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
}
/* Navigation */
nav {
margin-top: 1rem;
}
nav ul {
list-style: none;
display: flex;
gap: 2rem;
}
nav a {
color: white;
text-decoration: none;
}
/* Main Content Styles */
main {
padding: 2rem;
max-width: 1200px;
margin: 0 auto;
}
/* Services Page Styles */
.service-detail {
margin-bottom: 3rem;
padding: 2rem;
background: #f5f6fa;
border-radius: 10px;
}
.service-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
margin-top: 1rem;
}
/* About Page Styles */
.about-content {
display: grid;
gap: 2rem;
}
.about-content div {
padding: 2rem;
background: #f5f6fa;
border-radius: 10px;
}
/* Contact Page Styles */
.contact-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
}
.contact-form form {
display: grid;
gap: 1rem;
}
.form-group {
display: grid;
gap: 0.5rem;
}
input, textarea {
padding: 0.5rem;
border: 1px solid #ddd;
border-radius: 5px;
}
/* Common Components */
.cta-button {
background: #3498db;
color: white;
padding: 0.8rem 1.5rem;
border: none;
border-radius: 5px;
cursor: pointer;
text-decoration: none;
display: inline-block;
margin-top: 1rem;
}
/* Footer */
footer {
background: #2c3e50;
color: white;
padding: 2rem;
text-align: center;
margin-top: 3rem;
}
/* Responsive Design */
@media (max-width: 768px) {
nav ul {
flex-direction: column;
gap: 1rem;
}
.service-content,
.contact-content {
grid-template-columns: 1fr;
}
}
.hero {
background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('renewal-bg.jpg');
background-size: cover;
color: white;
padding: 6rem 2rem;
text-align: center;
}
.hero h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.hero p {
font-size: 1.2rem;
margin-bottom: 2rem;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
.features, .logistics {
padding: 4rem 2rem;
background: #f5f6fa;
}
.features h2, .logistics h2 {
text-align: center;
margin-bottom: 3rem;
color: #2c3e50;
}
.features-grid, .logistics-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
}
.feature-card, .logistics-card {
background: white;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.feature-card h3, .logistics-card h3 {
color: #3498db;
margin-bottom: 1rem;
}
.logistics {
background: white;
}
/* Update responsive styles */
@media (max-width: 768px) {
.hero h1 {
font-size: 2rem;
}
.hero p {
font-size: 1rem;
}
.features-grid, .logistics-grid {
grid-template-columns: 1fr;
}
}