Skip to content

Commit

Permalink
Update Services.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Tejas-Sawant-iffort authored Oct 9, 2024
1 parent 40ce639 commit a0b0bda
Showing 1 changed file with 47 additions and 7 deletions.
54 changes: 47 additions & 7 deletions Services.html
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,38 @@
height: auto; /* Allow card height to adjust */
}
}
.chat-section {
text-align: center; /* Center text */
}

.chat-section h3 {
font-family: 'Courier New', Courier, monospace; /* Monospace font for a robotic look */
font-weight: bold; /* Bold text */
color: #00FF00; /* Neon green color for a robotic effect */
text-shadow: 0 0 5px rgba(0, 255, 0, 0.7); /* Glowing effect */
}

.chat-section p {
margin: 10px 0; /* Margin for spacing */
font-size: 16px; /* Regular font size */
}

.logo-links {
display: flex; /* Flexbox layout */
justify-content: center; /* Center logos */
gap: 20px; /* Space between logos */
margin-top: 20px; /* Space above logos */
}

.logo-links img {
max-width: 80px; /* Set max width for logos */
transition: transform 0.2s; /* Transition for hover effect */
}

.logo-links img:hover {
transform: scale(1.1); /* Scale up on hover */
}

</style>
</head>

Expand Down Expand Up @@ -321,14 +353,22 @@ <h3>E-commerce Solutions</h3>
<!-- Cards content here -->


<div style="font-family: Arial, sans-serif; font-size: 16px; color: #fff; text-align: center; font-weight: bold;font-style: italic;">
Powered by Iffort
</div>


<div class="buttons" style="display: flex; justify-content: center; padding: 10px; gap: 10px;">
<button class="view-service neon-button" onclick="window.location.href='http://samples.iffort.ai:99/'">Connect Iffort</button>
<button class="view-service neon-button" onclick="window.open('https://wa.me/917447679060', '_blank')">Connect on Whatsapp</button>
<button class="view-service neon-button" onclick="window.location.href='tel:+917447679060'">Connect on Call</button>
<div class="chat-section">
<h3>Let’s have a chat</h3>
<p>Schedule a call with us to discuss how we can help you leverage AI for your business and stay ahead of the competition</p>

<div class="logo-links">
<a href="https://link1.com" target="_blank"><img src="logo1.png" alt="Logo 1"></a>
<a href="https://link2.com" target="_blank"><img src="logo2.png" alt="Logo 2"></a>
<a href="https://link3.com" target="_blank"><img src="logo3.png" alt="Logo 3"></a>
</div>
</div>


<div style="font-family: Arial, sans-serif; font-size: 16px; color: #fff; text-align: center; font-weight: bold;font-style: italic; margin-left:90%;">
Powered by Iffort
</div>

</div>
Expand Down

0 comments on commit a0b0bda

Please sign in to comment.