SSD Cabs Services
Your trusted partner for a wide range of cab services, including one-way, roundtrip, local cabs, airport pick-up & drop, and tour packages.
Oneway
Travel conveniently with our one-way cab services to your destination.
Roundtrip
Enjoy a hassle-free roundtrip journey with our professional drivers.
Local Cab
Quick and affordable local cab services for your daily needs.
Airport Pick-up & Drop
Reliable and punctual airport pick-up and drop services, 24/7.
Tour Packages
Customized tour packages for a comfortable and enjoyable trip.
Step 2: CSS for Styling and Mobile Responsiveness
Add the following CSS to your WordPress theme’s style.css or a custom CSS file.
css
Copy
/* General Section Styling */
.ssd-cabs-services {
padding: 40px 0;
background-color: #f9f9f9;
}
.ssd-cabs-services .container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}
/* Section Heading */
.service-overview {
text-align: center;
margin-bottom: 30px;
}
.service-overview h2 {
font-size: 2rem;
margin-bottom: 10px;
}
.service-overview p {
font-size: 1.1rem;
color: #555;
}
/* Service Icons Grid */
.service-icons {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 30px;
margin-top: 30px;
}
/* Individual Service Item */
.service-item {
text-align: center;
width: 200px;
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}
/* Service Item Hover Effect */
.service-item:hover {
transform: translateY(-5px);
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
/* Service Icon Styling */
.service-icon {
margin-bottom: 15px;
}
.service-icon img {
width: 60px;
height: 60px;
object-fit: cover;
}
/* Service Name */
.service-item h3 {
font-size: 1.3rem;
margin-bottom: 10px;
color: #333;
}
/* Service Description */
.service-item p {
font-size: 1rem;
color: #777;
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
.service-icons {
flex-direction: column;
align-items: center;
}
.service-item {
width: 80%; /* Adjust width on smaller screens */
margin-bottom: 20px;
}
.service-item h3 {
font-size: 1.2rem;
}
.service-item p {
font-size: 0.9rem;
}
.service-icon img {
width: 50px; /* Adjust icon size on smaller screens */
height: 50px;
}
}