Skip to content

Commit

Permalink
our services added
Browse files Browse the repository at this point in the history
  • Loading branch information
komal-agarwal5 committed Oct 17, 2024
1 parent 07f9a29 commit 561dcb4
Show file tree
Hide file tree
Showing 2 changed files with 122 additions and 1 deletion.
47 changes: 46 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -655,6 +655,51 @@ <h3>Romantic Getaway</h3>
</div>
</section>

<!-- Our Services Section -->
<section class="services" id="services">
<h2>Our Services</h2>
<p>Travel smarter with our curated services designed to make your trips effortless and enjoyable.</p>

<div class="services-container">
<!-- Service Card: Interactive Travel Map -->
<div class="service-card">
<div class="icon">
<i class="fas fa-map-marker-alt"></i>
</div>
<h3>Travel Map</h3>
<p>Explore popular destinations across India and the world. Click on markers to learn more about each location.
</p>
</div>

<!-- Service Card: Hotel Finder -->
<div class="service-card">
<div class="icon">
<i class="fas fa-hotel"></i>
</div>
<h3>Hotel Finder</h3>
<p>Find the best hotels at affordable rates, handpicked to suit your budget and preferences.</p>
</div>

<!-- Service Card: Flight Booking -->
<div class="service-card">
<div class="icon">
<i class="fas fa-plane"></i>
</div>
<h3>Flight Booking</h3>
<p>Book flights at the best prices, with options tailored to your travel needs.</p>
</div>

<!-- Service Card: Travel Blog -->
<div class="service-card">
<div class="icon">
<i class="fas fa-pen"></i>
</div>
<h3>Travel Blog</h3>
<p>Read tips, guides, and personal stories from seasoned travelers.</p>
</div>
</div>
</section>

<!-- Cab or Auto Booking -->
<section id="cab-booking" class="cab-booking-section light-mode">
<div class="booking-container">
Expand Down Expand Up @@ -1647,7 +1692,7 @@ <h3>Quick Links</h3>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#">Contact</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="contributor/contributor.html">Our Contributor</a></li>
Expand Down
76 changes: 76 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2671,3 +2671,79 @@ textarea {
color: #333;
font-size: 16px;
}


.services {
padding: 4rem 2rem;
text-align: center;
background-color: #fff;
}

.services h2 {
font-size: 3.8rem;
margin-bottom: 1rem;
color: #00467f;
}

.services p {
font-size: 2.2rem;
margin-bottom: 3rem;
color: #666;
}

.services-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}

.service-card {
background-color: #f8f9fa;
border-radius: 15px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
padding: 2rem;
transition: transform 0.3s ease, box-shadow 0.3s ease;
text-align: center;
position: relative;
overflow: hidden;
}

.service-card:hover {
transform: translateY(-12px);
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.icon {
background-color: #00467f;
color: white;
border-radius: 50%;
width: 80px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem auto;
transition: background-color 0.3s ease;
}

.icon i {
font-size: 2rem;
}

.service-card:hover .icon {
background-color: #ffdd57;
color: #00467f;
}

.service-card h3 {
font-size: 2rem;
margin-bottom: 0.8rem;
color: #00467f;
}

.service-card p {
font-size: 1.5rem;
color: #666;
margin-bottom: 1rem;
line-height: 1.5;
}

0 comments on commit 561dcb4

Please sign in to comment.