new pages added of hire

This commit is contained in:
2025-01-15 17:48:46 +05:30
parent d9e5cdc8f4
commit 9591a56cd7
15 changed files with 1649 additions and 564 deletions

View File

@@ -273,14 +273,39 @@ p {
gap: 10px;
align-items: center;
text-align: center;
transition: all 0.3s ease-in;
-webkit-transition: all 0.3s ease-in;
-moz-transition: all 0.3s ease-in;
-ms-transition: all 0.3s ease-in;
-o-transition: all 0.3s ease-in;
}
.award-rec-sec .award-content:hover img {
transform: scale(1.06);
-webkit-transform: scale(1.06);
-moz-transform: scale(1.06);
-ms-transform: scale(1.06);
-o-transform: scale(1.06);
transition: transform 0.3s ease-in;
-webkit-transition: transform 0.3s ease-in;
-moz-transition: transform 0.3s ease-in;
-ms-transition: transform 0.3s ease-in;
-o-transition: transform 0.3s ease-in;
}
.award-rec-sec img {
width: 90%;
width: 88%;
height: auto;
margin-bottom: 16px;
transition: transform 0.3s ease-in;
-webkit-transition: transform 0.3s ease-in;
-moz-transition: transform 0.3s ease-in;
-ms-transition: transform 0.3s ease-in;
-o-transition: transform 0.3s ease-in;
}
.team-aug-sec {
background: #121212;
}
@@ -601,12 +626,8 @@ button.next_arrow {
margin-bottom: 10px;
}
.choose-your-path-box .lets_talk a,
.lets_talk button {
padding: 8px 25px;
font-weight: 400;
font-size: 0.9rem;
margin-bottom: 10px;
.choose-your-path-box .lets_talk {
margin: 0;
}
/* ***** Ai page start ***** */
@@ -936,6 +957,10 @@ button.next_arrow {
margin: 50px 0;
}
.lets_talk{
margin-top: 30px;
}
.home-form .lets_talk a,
.home-form .lets_talk button {
width: 30%;
@@ -1536,10 +1561,7 @@ button.next_arrow {
.hire-expert-sec {
padding-bottom: 80px;
padding-top: 200px;
}
.hire-expert-sec {}
.hire-expert-sec .lets_talk {
margin-top: 30px;
@@ -3489,9 +3511,53 @@ p.btn-sym {
/* hire uiux */
.hire-uiux-sec {
background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../images/new-img/uiux-banner.webp);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
.experience-count-sec {
padding: 80px 0;
}
.experience-count-main {
display: flex;
align-items: center;
justify-content: space-around;
gap: 40px;
flex-wrap: wrap;
}
.experience-count {
display: flex;
align-items: center;
gap: 20px;
}
.experience-count-img {
padding: 14px;
background-color: #333333;
border-radius: 4px;
}
.experience-count img {
width: 30px;
height: 30px;
}
.experience-count-inn .mid-para {
font-weight: 700;
font-size: 1.8rem;
margin-bottom: 2px;
}
.experience-count-inn .grey-para {
margin-bottom: 0;
}
@@ -3660,6 +3726,23 @@ p.btn-sym {
@media (max-width:991px) {
.experience-count {
gap: 10px;
}
.experience-count-main {
gap: 20px;
}
.experience-count-inn .mid-para {
font-size: 1.5rem;
}
.experience-count-inn .grey-para {
margin-bottom: 0;
font-size: 14px;
}
.developer-cards {
grid-template-columns: repeat(2, 1fr);
}
@@ -3867,6 +3950,17 @@ p.btn-sym {
padding: 40px 0;
}
.experience-count-main {
gap: 30px;
align-items: center;
}
.experience-count {
justify-content: center;
flex-direction: column;
text-align: center;
}
.developer-cards {
grid-template-columns: repeat(1, 1fr);
}

View File

@@ -88,8 +88,8 @@ li {
}
::-webkit-scrollbar {
width: .3rem;
height: .1rem;
width: .6rem;
height: .07rem;
}
::-webkit-scrollbar-track {

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 181 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@@ -2,7 +2,7 @@
document.addEventListener("click", (e) => {
const isDropdownButton = e.target.matches("[data_dropdown_button]");
// If click is inside an active dropdown, do nothing
if (!isDropdownButton && e.target.closest("[data_dropdown]") != null) return;
@@ -356,3 +356,60 @@ slider.addEventListener("input", updateSliderProgress);
updateSliderProgress();
// *********** Range input end
// *********** Countdown start
function animateCountUp(element, target, duration) {
let start = 0;
const increment = Math.ceil(target / (duration / 16));
const timer = setInterval(() => {
start += increment;
if (start >= target) {
element.textContent = target + "+";
clearInterval(timer);
} else {
element.textContent = start + "+";
}
}, 16);
}
function startCounterAnimation() {
const parent = document.querySelector(".experience-count-main");
if (parent) {
const counters = parent.querySelectorAll(".mid-para");
const durations = [2000, 2000, 2000];
counters.forEach((counter, index) => {
const target = parseInt(counter.textContent.replace("+", ""));
animateCountUp(counter, target, durations[index]);
});
}
}
document.addEventListener("DOMContentLoaded", () => {
const section = document.querySelector(".experience-count-sec");
if (section) {
const observer = new IntersectionObserver(
(entries, observer) => {
entries.forEach((entry) => {
if (entry.isIntersecting) {
startCounterAnimation();
observer.unobserve(section);
}
});
},
{ threshold: 0.5 }
);
observer.observe(section);
}
});
// *********** Countdown end

View File

@@ -680,7 +680,7 @@
</div>
<div class="tooltip-container">
<img loading="lazy" src="../assets/images/new-img/cloud.svg" alt="">
<span class="tooltip">Cloud Service</span>
<span class="tooltip">Google Cloud Service</span>
</div>
<div class="tooltip-container">
<img loading="lazy" src="../assets/images/new-img/azure.webp" alt="">

View File

@@ -12,18 +12,20 @@
<div class="container">
<div class="row">
<div class="col-md-7 banner-col">
<p>Hire Mobile App Developers</p>
<p class="head"><span class="gr-txt">Hire Expert</span> Mobile <br> App Developers!
<p>Hire Mobile App Developers
</p>
<p class="head">Convert your idea into a <br> <span class="gr-txt">next-generation</span> Mobile
app
</p>
<p class="grey-para">Bring your mobile app ideas to life as advanced digital solutions engineered
for scalability, security, and innovation. Get on the success path.
</p>
<p class="grey-para">Our talented team of developers, designers, and engineers has consistently <br>
demonstrated a dedication to pushing the boundaries of what is possible in the <br> digital
landscape.</p>
<div class="lets_talk">
<a href="contact-us.php">
<span class="one"></span>
<span class="two"></span>
Lets build an App
Hire Expert Mobile App Developers Now
<img loading="lazy" src="../assets/images/arrow-up-right.webp" class="arrow_up"
alt="arrow-up">
</a>
@@ -45,63 +47,69 @@
<div class="container">
<h2 class="mid-head">Why Hire Mobile App Developers from Us
</h2>
<p class="grey-para">When you hire our mobile app developers, you're choosing a team of experts dedicated to
turning your ideas into high-quality, user-friendly applications. Heres why you should partner with us:
<p class="grey-para">The right development team brings a great idea to transform into a highly
transformative mobile app. Our developers are innovations-focused, scalable, and user-centric, and can
work out custom mobile solutions aligned with your needs.
</p>
<div class="transform-box-main">
<div class="transform-box">
<div class="transform-inn-content">
<img src="../assets/images/new-img/why-hire.webp" alt="">
<p class="mid-para">The Pool Of Talent</p>
<p class="mid-para">Expert Developers
</p>
</div>
<p class="grey-para">Transforming concepts into captivating mobile experiences with our expert
App developments Service Transforming concepts into captivating mobile experiences with our
expert App developments Service</p>
<p class="grey-para">Work with seasoned developers who are working at the latest technologies and
work to provide you with high security and user-friendly apps on mobile.
</p>
</div>
<div class="transform-box">
<div class="transform-inn-content">
<img src="../assets/images/new-img/why-hire.webp" alt="">
<p class="mid-para">The Pool Of Talent</p>
<p class="mid-para">Custom solutions
</p>
</div>
<p class="grey-para">Transforming concepts into captivating mobile experiences with our expert
App developments Service Transforming concepts into captivating mobile experiences with our
expert App developments Service</p>
<p class="grey-para">Mobile applications are worked on according to your needs and specific business
requirements of bringing the highest impact ever possible.
</p>
</div>
<div class="transform-box">
<div class="transform-inn-content">
<img src="../assets/images/new-img/why-hire.webp" alt="">
<p class="mid-para">The Pool Of Talent</p>
<p class="mid-para">End-to-end expertise
</p>
</div>
<p class="grey-para">Transforming concepts into captivating mobile experiences with our expert
App developments Service Transforming concepts into captivating mobile experiences with our
expert App developments Service</p>
<p class="grey-para">From the robust back-end infrastructures to the intuitive front-end interface,
we give you seamless app experiences.
</p>
</div>
<div class="transform-box">
<div class="transform-inn-content">
<img src="../assets/images/new-img/why-hire.webp" alt="">
<p class="mid-para">The Pool Of Talent</p>
<p class="mid-para">Scalable and future-ready
</p>
</div>
<p class="grey-para">Transforming concepts into captivating mobile experiences with our expert
App developments Service Transforming concepts into captivating mobile experiences with our
expert App developments Service</p>
<p class="grey-para">Build mobile apps that grow with your business and keep pace with all the
trends and new technology.
</p>
</div>
<div class="transform-box">
<div class="transform-inn-content">
<img src="../assets/images/new-img/why-hire.webp" alt="">
<p class="mid-para">The Pool Of Talent</p>
<p class="mid-para">Agile Development Process
</p>
</div>
<p class="grey-para">Transforming concepts into captivating mobile experiences with our expert
App developments Service Transforming concepts into captivating mobile experiences with our
expert App developments Service</p>
<p class="grey-para">We will deliver on time with consistent quality with the help of agile
methodologies.
</p>
</div>
<div class="transform-box">
<div class="transform-inn-content">
<img src="../assets/images/new-img/why-hire.webp" alt="">
<p class="mid-para">The Pool Of Talent</p>
<p class="mid-para">Post Launch Support</p>
</div>
<p class="grey-para">Transforming concepts into captivating mobile experiences with our expert
App developments Service Transforming concepts into captivating mobile experiences with our
expert App developments Service</p>
<p class="grey-para">Long-term support, updates, and maintenance services will ensure worry-free
living after the launch.
</p>
</div>
</div>
</div>
@@ -115,38 +123,39 @@
<section class="hire-developer-sec section">
<div class="container">
<h2 class="mid-head">Hire developer in 4 easy steps
<h2 class="mid-head">Hire Developers in 4 Easy Steps
</h2>
<p class="grey-para">When you hire our mobile app developers, you're choosing a team of experts dedicated to
turning your ideas into high-quality, user-friendly applications. Heres why you should partner with us:
<p class="grey-para">Getting the Best Mobile App developers is easy and time-effective. Just follow these 4
easy steps to kick off with a speedy mobile app developer hiring process and an equipped team ready to
assist in the creation of your app.
</p>
<div class="steps-main">
<div class="step">
<div class="step-number">01.</div>
<div class="mid-para">Fill the Form</div>
<div class="dark-grey-para">
Transforming Concepts Into Captivating Mobile With Our Expert
Share basic details concerning your project and requirements in our simple form.
</div>
</div>
<div class="step">
<div class="step-number">02.</div>
<div class="mid-para">Discuss Requirement</div>
<div class="dark-grey-para">
Transforming Concepts Into Captivating Mobile With Our Expert
Discuss your project goals with our team, timeline expectations, and what to expect.
</div>
</div>
<div class="step">
<div class="step-number">03.</div>
<div class="mid-para">Accept Our Offer</div>
<div class="dark-grey-para">
Transforming Concepts Into Captivating Mobile With Our Expert
Review our tailor-made proposal and accept the move ahead.
</div>
</div>
<div class="step">
<div class="step-number">04.</div>
<div class="mid-para">Onboard Your Team</div>
<div class="mid-para">Engage Your Team</div>
<div class="dark-grey-para">
Transforming Concepts Into Captivating Mobile With Our Expert
Get working with your dedicated development team and start your development process.
</div>
</div>
</div>

View File

@@ -8,18 +8,18 @@
<!-- Hire Mobile App Developers start -->
<section class="hire-expert-sec p-top section">
<section class="hire-uiux-sec p-top section">
<div class="container">
<div class="row">
<div class="col-md-7 banner-col">
<p>Hire Mobile App Developers</p>
<p class="head"><span class="gr-txt">Hire </span> UI/UX Developers
</p>
<h1 class="head"><span class="gr-txt">Hire </span> UI/UX Developers
</h1>
<p class="grey-para">Our talented team of developers, designers, and engineers has consistently <br>
demonstrated a dedication to pushing the boundaries of what is possible in the <br> digital
landscape.</p>
<div class="lets_talk">
<div class="lets_talk mt-4">
<a href="contact-us.php">
<span class="one"></span>
<span class="two"></span>
@@ -38,72 +38,241 @@
<!-- Hire Mobile App Developers end -->
<!-- Innovating Mobility start -->
<!-- Why Hire Mobile App Developers start -->
<section class="innovating-sec web-innovating section">
<section class="why-hire-sec company-sets-apart four-grid section bg-grey">
<div class="container">
<p class="mid-head">Innovating the Digital Landscape, Empowering Businesses
<h2 class="mid-head">Our iOS App Development Services
</h2>
<p class="grey-para">We are a top iPhone application development company, which specializes in offering
high-quality, custom solutions to help your business succeed in the iOS environment. From iOS
development services to secure iPhone app development, our core focus is on developing high-performance
applications. That's what makes us one of the best iPhone app development agencies out there, which
gives us an edge over the competition.
</p>
<p class="dark-grey-para">Where Creativity Meets Technology! As a top web application development company,
we build powerful, user-friendly, and next-gen solutions designed to drive engagement, scalability, and
business growth.
</p>
<div class="innovating-box-main">
<div class="innovating-box">
<img src="../assets/images/new-img/hybrid-web-logo.svg" alt="">
<p class="mid-para">Hybrid Web Applications
</p>
<p class="dark-grey-para">Unlock cost-effective and scalable performance with hybrid web
applications. Solutions can include native-like functionality combined with the flexibility of
web technologies for guaranteed consistent performance across devices and platforms.
<div class="transform-box-main">
<div class="transform-box">
<div class="transform-inn-content">
<img src="../assets/images/new-img/cs-ios.webp" alt="">
<p class="mid-para">Custom iOS App <br> Solutions</p>
</div>
<p class="grey-para">We are the best iOS mobile application development company that provides
customized iOS application development according to the needs of your business and ensures that
your users will have a seamless and packed experience.
</p>
</div>
<div class="innovating-box">
<img src="../assets/images/new-img/pwa-logo.svg" alt="">
<p class="mid-para">Progressive Web Applications (PWAs)</p>
<p class="dark-grey-para">Redefine user experience by Progressive Web Applications. PWAs combine the
best features of native applications and the web, offering fast, secure, and effectively
offline-capable solutions in line with modern business requirements.
<div class="transform-box">
<div class="transform-inn-content">
<img src="../assets/images/new-img/exp-ios.webp" alt="">
<p class="mid-para">Expertise in iOS <br> Development
</p>
</div>
<p class="grey-para">
Our team has the great experience of iPhone app development and iPad app development as well as
other iOS platforms. We ensure applications are robust and scalable enough to run on all Apple
devices smoothly.
</p>
</div>
<div class="innovating-box">
<img src="../assets/images/new-img/cs-web-logo.svg" alt="">
<p class="mid-para">Custom Web Applications</p>
<p class="dark-grey-para">Accelerate business needs with custom web application development services
tailored to your business purpose. The result is always intuitive interfaces, seamless backend
integration, and performance and scalability.
<div class="transform-box">
<div class="transform-inn-content">
<img src="../assets/images/new-img/inn-modern.webp" alt="">
<p class="mid-para">Innovative and Modern Technologies
</p>
</div>
<p class="grey-para">From AI integration to AR/VR and IoT solutions, our iOS app development
services are made with the latest technologies that create innovative applications which break
boundaries but can also attract audiences.
</p>
</div>
<div class="innovating-box">
<img src="../assets/images/new-img/native-app.svg" alt="">
<p class="mid-para">Native-Like Web Experiences
<div class="transform-box">
<div class="transform-inn-content">
<img src="../assets/images/new-img/comp-dev.webp" alt="">
<p class="mid-para">Comprehensive Development Process
</p>
</div>
<p class="grey-para">A trusted iOS application development company in India and iPhone application
development company USA, we provide complete app development from concept and design to
development, testing, and launching, ensuring a smooth process every time.
</p>
<p class="dark-grey-para">Achieve native-like speed and responsiveness with web applications
optimized for performance. These are designed to cope with increasing demands from users to
provide seamless experiences across devices.
</p>
</div>
<div class="innovating-box">
<img src="../assets/images/new-img/cloud-native-logo.svg" alt="">
<p class="mid-para">Scalable Cloud-Native Applications</p>
<p class="dark-grey-para">Scalable web applications using serverless architecture take the advantage
of cloud, ensuring reliability, flexibility, and future-ready performance to cope up with
evolving business requirements.
</p>
</div>
<div class="innovating-box">
<img src="../assets/images/new-img/transform-mob-icon.webp" alt="">
<p class="mid-para">IoT-Enabled Web Applications</p>
<p class="dark-grey-para">IoT will be harnessed through next-generation web applications that
connect devices and enable real-time data processing. Solutions will be designed to enhance
connectivity and drive intelligent business operations.</p>
</div>
</div>
</div>
</section>
<!-- Innovating Mobility end -->
<!-- Why Hire Mobile App Developers end -->
<!-- experience start -->
<section class="experience-count-sec section">
<div class="container">
<div class="experience-count-main">
<div class="experience-count">
<div class="experience-count-img">
<img src="../assets/images/new-img/customer-satisfaction.webp" alt="">
</div>
<div class="experience-count-inn">
<p class="mid-para">250+</p>
<p class="grey-para">Customer satisfaction</p>
</div>
</div>
<div class="experience-count">
<div class="experience-count-img">
<img src="../assets/images/new-img/project-comp.webp" alt="">
</div>
<div class="experience-count-inn">
<p class="mid-para">100+</p>
<p class="grey-para">Project completed</p>
</div>
</div>
<div class="experience-count">
<div class="experience-count-img">
<img src="../assets/images/new-img/year-of-exp.webp" alt="">
</div>
<div class="experience-count-inn">
<p class="mid-para">25+</p>
<p class="grey-para">Years of experience</p>
</div>
</div>
</div>
</div>
</section>
<!-- experience end -->
<!-- how we Leverage start -->
<section class="how_we_leverage ">
<img class="bann_img" loading="lazy" src="../assets/images/new-img/leverage_banner.webp" alt="leverage_banner">
<div class="comm_padd_sec section">
<div class="container">
<p class="mid-head">How We Leverage <span class="gr-txt">AI in Your Favor</span>
<sup> <img loading="lazy" src="../assets/images/new-img/gemini.webp"
alt="colored_gemini_icon"></sup>
</p>
<p class="grey-para">Let's see how cutting-edge AI/ML Development Services transform the operational
structures in multiple industries by streamlining activities and increasing the exploitation of
growth
areas.
</p>
<div class="main_box">
<div class="inn_box">
<div class="para_img">
<div class="img">
<img loading="lazy" src="../assets/images/new-img/how_1.webp" alt="">
</div>
<p class="mini-head">AI Workflows</p>
</div>
<p class="grey-para">We develop workflows based on advanced language models such as ChatGPT,
Claude,
Mixtral, and
Gemini.
</p>
</div>
<div class="inn_box">
<div class="para_img">
<div class="img">
<img loading="lazy" src="../assets/images/new-img/how_2.webp" alt="">
</div>
<p class="mini-head">Accurate AI Models</p>
</div>
<p class="grey-para">We always access your private data so you have highly accurate output
results
with
your AI
models.
</p>
</div>
<div class="inn_box">
<div class="para_img">
<div class="img">
<img loading="lazy" src="../assets/images/new-img/how_3.webp" alt="">
</div>
<p class="mini-head">Intelligent AI Agents</p>
</div>
<p class="grey-para">Our AI Stremline your tasks, Using systems like Autogen, and CrewAI.
</p>
</div>
<div class="inn_box">
<div class="para_img">
<div class="img">
<img loading="lazy" src="../assets/images/new-img/how_4.webp" alt="">
</div>
<p class="mini-head">Conversation AI</p>
</div>
<p class="grey-para">Our AI- chatbot can funnel your customer service through intuitive and
useful
conversation.
</p>
</div>
<div class="inn_box">
<div class="para_img">
<div class="img">
<img loading="lazy" src="../assets/images/new-img/how_5.webp" alt="">
</div>
<p class="mini-head">Visual & Text AI</p>
</div>
<p class="grey-para">We integrate computer vision and language models that reflect interactive
tools.
</p>
</div>
<div class="inn_box">
<div class="para_img">
<div class="img">
<img loading="lazy" src="../assets/images/new-img/how_6.webp" alt="">
</div>
<p class="mini-head">Core Language Processes</p>
</div>
<p class="grey-para">Our NLP models start with basic tasks like sentence tokenization and
grammar
analysis.
</p>
</div>
<div class="inn_box">
<div class="para_img">
<div class="img">
<img loading="lazy" src="../assets/images/new-img/how_1.webp" alt="">
</div>
<p class="mini-head">Core Language Processes</p>
</div>
<p class="grey-para">Our NLP models start with basic tasks like sentence tokenization and
grammar
analysis.
</p>
</div>
<div class="inn_box">
<div class="para_img">
<div class="img">
<img loading="lazy" src="../assets/images/new-img/how_2.webp" alt="">
</div>
<p class="mini-head">AI Model Functioning
</p>
</div>
<p class="grey-para">Our experts ensure that your systems are secure, scalable, and
performance-driven predictively.
</p>
</div>
<div class="inn_box">
<div class="para_img">
<div class="img">
<img loading="lazy" src="../assets/images/new-img/how_3.webp" alt="">
</div>
<p class="mini-head">AI Media</p>
</div>
<p class="grey-para">We generate videos, images, and audio using generative AI techniques, which
Offers premium data to your project.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- how we Leverage end -->
@@ -162,312 +331,118 @@
<!-- Hire developer in 4 easy steps end -->
<!-- Why Hiring developers from WDI start -->
<!-- Transforming Ideas start -->
<section class="why-hiring-dev-sec section">
<section class="transform-idea-sec bg-grey section">
<div class="container">
<h2 class="mid-head">Why Hiring developers from WDI
</h2>
<p class="grey-para">Software developers can create tailored solutions that align with the specific needs
and goals of the company. Whether it's a customized application, website, or internal software,
developers can craft solutions that streamline processes and enhance efficiency.
</p>
<div class="mobile-banner-content">
<div class="row">
<div class="col-md-5">
<p class="mid-head">Scaling Up or Launching Your Startup
</p>
</div>
<div class="col-md-7">
<p class="grey-para">Launching or scaling your startup is a transformative experience, full of
challenges and opportunities. WDI is your partner trusted to deliver strategic advice and
tailored solutions so that each step leads to long-term success.</p>
</div>
</div>
<div class="transform-box-main">
<div class="consulting-box">
<div class="consulting-box-inn-content">
<img src="../assets/images/new-img/st-plan-logo.webp" alt="">
<p class="mid-para">Strategic Planning</p>
</div>
<p class="grey-para">We let our consultants use Business Capability Mapping to discover
opportunities and fight against challenges head-on, ensuring governance boards and strategic
capacity planning make a roadmap out of turning your vision into realisable results.
</p>
<a href="" class="mini-head-para">
Read more
<img src="../assets/images/new-img/arr-right.webp" alt="">
</a>
</div>
<div class="consulting-box">
<div class="consulting-box-inn-content">
<img src="../assets/images/new-img/mvp-dev-logo.svg" alt="">
<p class="mid-para">MVP Development</p>
</div>
<p class="grey-para">We speed up the journey to market with MVP development. With the aid of
agile methodologies, event storming, and cross-functional cooperation, we design products in
market readiness so that your startup is well-equipped to achieve scalable growth.</p>
<a href="" class="mini-head-para">
Read more
<img src="../assets/images/new-img/arr-right.webp" alt="">
</a>
</div>
<div class="consulting-box">
<div class="consulting-box-inn-content">
<img src="../assets/images/new-img/market-analysis.webp" alt="">
<p class="mid-para">Market Analysis</p>
</div>
<p class="grey-para">Holding actionable insights, remain at the top of the curve regarding
market trends. In data-driven approaches to both market analysis and knowledge management,
we discover customer requirements and competitor strategies so your product hits the right
cords with the right audience.</p>
<a href="" class="mini-head-para">
Read more
<img src="../assets/images/new-img/arr-right.webp" alt="">
</a>
</div>
<div class="consulting-box">
<div class="consulting-box-inn-content">
<img src="../assets/images/new-img/tech-driven.webp" alt="">
<p class="mid-para">Tech-Driven Solutions</p>
</div>
<p class="grey-para">Leverage innovative and scalable technologies for your digital
transformation: from assisted commerce to continuous improvement, designed to be always in
flux, top of security class, and your startup always future-proof.</p>
<a href="" class="mini-head-para">
Read more
<img src="../assets/images/new-img/arr-right.webp" alt="">
</a>
</div>
</div>
<div class="why-hiring-dev-box-main">
<div class="why-hiring-dev-box">
<img src="../assets/images/new-img/why-hiring-first.webp" alt="">
<p class="mid-para">Hire Web <br> Developers</p>
<p class="grey-para">We specialize in creating visually stunning, responsive, and functionally
robust websites.</p>
<a href="" class="mini-head-para">
Read more
<img src="../assets/images/new-img/arr-right.webp" alt="">
</a>
</div>
<div class="why-hiring-dev-box">
<img src="../assets/images/new-img/why-hiring-second.webp" alt="">
<p class="mid-para">Hire Web <br> Developers</p>
<p class="grey-para">We specialize in creating visually stunning, responsive, and functionally
robust websites.</p>
<a href="" class="mini-head-para">
Read more
<img src="../assets/images/new-img/arr-right.webp" alt="">
</a>
</div>
<div class="why-hiring-dev-box">
<img src="../assets/images/new-img/why-hiring-third.webp" alt="">
<p class="mid-para">Hire Web <br> Developers</p>
<p class="grey-para">We specialize in creating visually stunning, responsive, and functionally
robust websites.</p>
<a href="" class="mini-head-para">
Read more
<img src="../assets/images/new-img/arr-right.webp" alt="">
</a>
</div>
<div class="why-hiring-dev-box">
<img src="../assets/images/new-img/why-hiring-fourth.webp" alt="">
<p class="mid-para">Hire Web Developers</p>
<p class="grey-para">We specialize in creating visually stunning, responsive, and functionally
robust websites.</p>
<a href="" class="mini-head-para">
Read more
<img src="../assets/images/new-img/arr-right.webp" alt="">
</a>
</div>
<div class="why-hiring-dev-box">
<img src="../assets/images/new-img/why-hiring-first.webp" alt="">
<p class="mid-para">Hire Web <br> Developers</p>
<p class="grey-para">We specialize in creating visually stunning, responsive, and functionally
robust websites.</p>
<a href="" class="mini-head-para">
Read more
<img src="../assets/images/new-img/arr-right.webp" alt="">
</a>
</div>
<div class="why-hiring-dev-box">
<img src="../assets/images/new-img/why-hiring-second.webp" alt="">
<p class="mid-para">Hire Web <br> Developers</p>
<p class="grey-para">We specialize in creating visually stunning, responsive, and functionally
robust websites.</p>
<a href="" class="mini-head-para">
Read more
<img src="../assets/images/new-img/arr-right.webp" alt="">
</a>
</div>
<div class="why-hiring-dev-box">
<img src="../assets/images/new-img/why-hiring-third.webp" alt="">
<p class="mid-para">Hire Web Developers</p>
<p class="grey-para">We specialize in creating visually stunning, responsive, and functionally
robust websites.</p>
<a href="" class="mini-head-para">
Read more
<img src="../assets/images/new-img/arr-right.webp" alt="">
</a>
</div>
<div class="why-hiring-dev-box">
<img src="../assets/images/new-img/why-hiring-fourth.webp" alt="">
<p class="mid-para">Hire Web <br> Developers</p>
<p class="grey-para">We specialize in creating visually stunning, responsive, and functionally
robust websites.</p>
<a href="" class="mini-head-para">
Read more
<img src="../assets/images/new-img/arr-right.webp" alt="">
</a>
</div>
</div>
</div>
</section>
<!-- Why Hiring developers from WDI end -->
<!-- Transforming Ideas end -->
<!-- Looking for the Best start -->
<!-- Crafting Scalable Code, Driving start -->
<section class="craft-scalable-sec section">
<section class="ios-sec section">
<div class="container">
<div class="row">
<div class="col-md-7">
<h2 class="mid-head">Crafting Scalable Code, Driving <br> Digital Evolution—Your Tech Vision, <br>
Our Expertise.
</h2>
<p class="grey-para">A collection of versatile components that can be tailored to fit the specific
needs of your project, ensuring both aesthetic appeal and functionality.
</p>
<div class="lets_talk">
<p class="mid-head">Let's Make Your Next Game-Changing iOS App</p>
<p class="grey-para">Your concept needs an iOS app to give results. Whether it is building a
breathtaking user experience or a secure, high-performing app, we turn your vision into reality.
Every step from the custom iOS development process to App Store deployment is planned to bring
success.</p>
<div class="lets_talk mt-4">
<a href="contact-us.php">
<span class="one"></span>
<span class="two"></span>
Lets build an App
Let's Take the Next Step
<img loading="lazy" src="../assets/images/arrow-up-right.webp" class="arrow_up"
alt="arrow-up">
</a>
</div>
</div>
<div class="col-md-5">
<div class="craft-scalable-content-main">
<div class="craft-scalable-content">
<p class="grey-para">A collection of versatile components that can be tailored to fit the
specific
needs of your project, ensuring both aesthetic appeal and functionality.</p>
<img src="../assets/images/new-img/arr-right.webp" alt="">
</div>
<hr>
<div class="craft-scalable-content">
<p class="grey-para">A collection of versatile components that can be tailored to fit the
specific
needs of your project, ensuring both aesthetic appeal and functionality.</p>
<img src="../assets/images/new-img/arr-right.webp" alt="">
</div>
<hr>
<div class="craft-scalable-content">
<p class="grey-para">A collection of versatile components that can be tailored to fit the
specific
needs of your project, ensuring both aesthetic appeal and functionality.</p>
<img src="../assets/images/new-img/arr-right.webp" alt="">
</div>
<hr>
<div class="craft-scalable-content">
<p class="grey-para">A collection of versatile components that can be tailored to fit the
specific
needs of your project, ensuring both aesthetic appeal and functionality.</p>
<img src="../assets/images/new-img/arr-right.webp" alt="">
</div>
<div class="look-side-img">
<img src="../assets/images/new-img/ios-side.webp" alt="">
</div>
</div>
</div>
</div>
</section>
<!-- Crafting Scalable Code, Driving end -->
<!-- WDI Guarantee start -->
<section class="wdi-guarantee-sec section">
<div class="container">
<h2 class="mid-head"><span class="pink-txt">WDI</span> Guarantee - Ensuring Quality and Reliability You Can
Trust
</h2>
<p class="grey-para">The WDI Guarantee stands as a promise of unparalleled quality and
dependability. Trust us to deliver excellence, every time.
</p>
<div class="faqs_section mt-5">
<div class="accordion_sec">
<div class="inn_data">
<h3 class="h3_heading">1. No Communication Barriers
<i class="fa-solid fa-plus"></i>
</h3>
<div class="accordion_content">
<ul>
<li class="grey-para"><span class="micro-head-para">Time Zone Management:</span> Overlap
hours for seamless coordination and real-time updates.</li>
<li class="grey-para"><span class="micro-head-para">Fluent Communication:</span> Teams
proficient in English with regular training in communication skills.</li>
<li class="grey-para"><span class="micro-head-para">Proactive Communication
Tools:</span> Use of collaborative platforms (e.g., Slack, Teams, Jira) to
streamline interactions.</li>
</ul>
</div>
</div>
<div class="inn_data">
<h3 class="h3_heading">2. You will never feel Out of Control or lack of Visibility
<i class="fa-solid fa-plus"></i>
</h3>
<div class="accordion_content">
<ul>
<li class="grey-para"><span class="micro-head-para">Transparent Processes:</span>
Regular progress reports, dashboards, and milestone tracking.</li>
<li class="grey-para"><span class="micro-head-para">Accountability Measures:</span>
Dedicated project managers ensuring alignment with objectives.</li>
<li class="grey-para"><span class="micro-head-para">Real-Time Monitoring:</span> Tools
and practices for tracking productivity and deliverables.</li>
</ul>
</div>
</div>
<div class="inn_data">
<h3 class="h3_heading">3. We understand all your Quality and Productivity Concerns
<i class="fa-solid fa-plus"></i>
</h3>
<div class="accordion_content">
<ul>
<li class="grey-para"><span class="micro-head-para">Rigorous Hiring Standards:</span>
Access to a highly skilled and diverse talent pool.</li>
<li class="grey-para"><span class="micro-head-para">Comprehensive Onboarding:</span>
Streamlined training processes to integrate offshore resources quickly.</li>
<li class="grey-para"><span class="micro-head-para">Performance Metrics:</span> Regular
evaluations to ensure quality and consistency.</li>
</ul>
</div>
</div>
<div class="inn_data">
<h3 class="h3_heading">4. Applications that comply to Security and Data Protection
<i class="fa-solid fa-plus"></i>
</h3>
<div class="accordion_content">
<ul>
<li class="grey-para"><span class="micro-head-para">Data Security Protocols:</span>
Compliance with international security standards (e.g., ISO 27001, GDPR).</li>
<li class="grey-para"><span class="micro-head-para">Non-Disclosure Agreements
(NDAs):</span> Protecting intellectual property and client data.</li>
<li class="grey-para"><span class="micro-head-para">Secure Infrastructure:</span>
Advanced firewalls, VPNs, and access controls to safeguard information.</li>
</ul>
</div>
</div>
<div class="inn_data">
<h3 class="h3_heading">5. Zero Integration Issues
<i class="fa-solid fa-plus"></i>
</h3>
<div class="accordion_content">
<ul>
<li class="grey-para"><span class="micro-head-para">Seamless Workflow
Integration:</span> Adapting to client tools, platforms, and processes.</li>
<li class="grey-para"><span class="micro-head-para">Cultural Training:</span> Programs
to align offshore teams with client work culture.</li>
<li class="grey-para"><span class="micro-head-para">Knowledge Management:</span>
Effective documentation and knowledge-sharing practices.</li>
</ul>
</div>
</div>
<div class="inn_data">
<h3 class="h3_heading">6. Our promise - No Cost and Budget Overruns
<i class="fa-solid fa-plus"></i>
</h3>
<div class="accordion_content">
<ul>
<li class="grey-para"><span class="micro-head-para">Transparent Pricing:</span> Clear
agreements with no hidden costs.</li>
<li class="grey-para"><span class="micro-head-para">Scalable Engagement Models:</span>
Flexibility to scale resources up or down based on project needs.</li>
<li class="grey-para"><span class="micro-head-para">Retention Strategies:</span>
Competitive benefits to minimize resource turnover.</li>
</ul>
</div>
</div>
<div class="inn_data">
<h3 class="h3_heading">7. Team to collaborate for Project Alignment and Expectations
<i class="fa-solid fa-plus"></i>
</h3>
<div class="accordion_content">
<ul>
<li class="grey-para"><span class="micro-head-para">Requirement Clarity:</span> Detailed
scoping and regular workshops to ensure understanding of goals.</li>
<li class="grey-para"><span class="micro-head-para">Change Management:</span> Agile
practices to handle scope changes without disruptions.</li>
<li class="grey-para"><span class="micro-head-para">Deadline Adherence:</span> Strong
project management to meet timelines and deliver on commitments.</li>
</ul>
</div>
</div>
<div class="inn_data">
<h3 class="h3_heading">8. No Dependency on Vendor Management
<i class="fa-solid fa-plus"></i>
</h3>
<div class="accordion_content">
<ul>
<li class="grey-para"><span class="micro-head-para">Dedicated Account Managers:</span>
Single point of contact for smooth communication and issue resolution.</li>
<li class="grey-para"><span class="micro-head-para">Vendor Performance Reviews:</span>
Regular evaluations to ensure service quality.</li>
<li class="grey-para"><span class="micro-head-para">Long-Term Partnerships:</span>
Building trust through consistency, transparency, and reliable delivery.</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- WDI Guarantee end -->
<!--Looking for the Best end -->
<!-- Portfolio slider start -->
@@ -721,84 +696,6 @@
<!-- Global Awards end -->
<!-- Why Choose Us start -->
<section class="why-choose-us-sec section">
<div class="container">
<p class="mid-head">Why Choose Us</p>
<p class="dark-grey-para">where creativity meets technology! We are a leading app development company
committed to transforming your ideas into powerful, user-friendly, and cutting-edge mobile applications.
Whether you're a startup aiming to disrupt the market or an established enterprise seeking digital
transformation, we have the expertise to deliver bespoke solutions tailored to your unique needs. </p>
<div class="why-choose-us-content-main">
<div class="why-choose-us-content first">
<p class="mini-head-para">Generative AI Engineering & <br> Enablement</p>
<p class="dark-grey-para">We prioritize open communication, collaboration, and understanding your
unique business requirements to ensure the success of your project.</p>
</div>
<div class="why-choose-us-content second">
<p class="mini-head-para">Generative AI Engineering & <br> Enablement</p>
<p class="dark-grey-para">We prioritize open communication, collaboration, and understanding your
unique business requirements to ensure the success of your project.</p>
</div>
<div class="why-choose-us-content third">
<p class="mini-head-para">Generative AI Engineering & <br> Enablement</p>
<p class="dark-grey-para">We prioritize open communication, collaboration, and understanding your
unique business requirements to ensure the success of your project.</p>
</div>
</div>
<div class="lets_talk">
<a href="contact-us.php">
<span class="one"></span>
<span class="two"></span>
Do you have a project
<img loading="lazy" src="../assets/images/arrow-up-right.webp" class="arrow_up" alt="arrow-up">
</a>
</div>
</div>
</section>
<!-- Why Choose Us end -->
<!-- why-choose-wdi start -->
<section class="why_wdipl_section why_choose_other_sec section">
<div class="container">
<div class="why_inner">
<p class="mid-head">Why Choose <span class="pink-txt">WDIPL</span> for your <br> next <span
class="gr-txt">AI project?</span></p>
<p class="grey-para">"Choose WDIPL for your next project and experience excellence in web development.
With a proven track record of delivering innovative solutions, WDIPL combines cutting-edge
technology, skilled professionals, and a client-centric approach to bring your vision to life. </p>
<p class="grey-para mb-4">From custom web applications to e-commerce platforms, WDIPL is committed to
delivering high-quality</p>
<div class="lets_talk">
<a href="">
<span class="one"></span>
<span class="two"></span>
Lets Connect
<img loading="lazy" src="../assets/images/arrow-up-right.webp" class="arrow_up" alt="arrow-up">
</a>
</div>
</div>
<div class="lighting_hand">
<img loading="lazy" src="../assets/images/hand_light.webp" alt="hand-light">
</div>
</div>
</section>
<!-- why-choose-wdi end -->
<!-- Collaborate With The developers oF WDI start -->
@@ -809,102 +706,78 @@
<p class="dark-grey-para">At WDI, we believe in assembling a team of talented and passionate individuals who
are dedicated to pushing the boundaries of innovation. </p>
<div class="collaborate-table">
<!-- Developer Cards -->
<div class="developer-cards">
<div class="dev-card text-center">
<p class="grey-para">Junior Developer</p>
<hr>
<p class="price">$1750-$2500</p>
<hr>
<p>1-3 Years Of Experience</p>
</div>
<div class="dev-card text-center">
<p class="grey-para">Mid level Developer</p>
<hr>
<p class="price">$1750-$2500</p>
<hr>
<p>3-5 Years Of Experience</p>
</div>
<div class="dev-card text-center">
<p class="grey-para">Senior Level Developer</p>
<hr>
<p class="price">$1750-$2500</p>
<hr>
<p>5+ Years Of Experience</p>
</div>
</div>
<!-- Features Table -->
<div class="features-table">
<table>
<thead>
<tr>
<th>
<p class="mid-para">Compare plans</p>
<p class="grey-para">Choose your workspace plan according to your organisational plan
</p>
</th>
<th>
<p class="btn-sym">Small</p>
<p class="mid-para">$7,500 <span class="grey-para">/Month</span></p>
</th>
<th>
<p class="btn-sym">Medium</p>
<p class="mid-para">$12,000 <span class="grey-para">/Month</span></p>
</th>
<th>
<p class="btn-sym">Large</p>
<p class="mid-para">$20,000 <span class="grey-para">/Month</span></p>
</th>
<th>Features</th>
<th>WDIPL</th>
<th>In-House</th>
<th>Freelancer</th>
</tr>
</thead>
<tbody>
<tr>
<td data-label="Compare plans">Team Size</td>
<td data-label="Small">3 to 5 Members</td>
<td data-label="Medium">4 to 6 Members</td>
<td data-label="Large">6 to 10 Members</td>
<td>Time to get right developer</td>
<td>1 Day - 2 Weeks</td>
<td>4 - 12 Weeks</td>
<td>1 - 12 Weeks</td>
</tr>
<tr>
<td data-label="Compare plans">Project Manager</td>
<td data-label="Small">Part time up to 32 hours per month</td>
<td data-label="Medium">Part time up to 80 hours per month</td>
<td data-label="Large">Dedicated full time</td>
<td>Time to start a project</td>
<td>1 Day - 2 Weeks</td>
<td>4 - 10 Weeks</td>
<td>1 - 10 Weeks</td>
</tr>
<tr>
<td data-label="Compare plans">UI/UX Designers</td>
<td data-label="Small">✔</td>
<td data-label="Medium">✔</td>
<td data-label="Large">✔</td>
<td>Recurring cost of training & benefits</td>
<td>0</td>
<td>$10,000 - $30,000</td>
<td>0</td>
</tr>
<tr>
<td data-label="Compare plans">Frontend Developers</td>
<td data-label="Small"></td>
<td data-label="Medium">✔</td>
<td data-label="Large">✔</td>
<td>Time to scale size of the team</td>
<td>48 Hours - 1 Week</td>
<td>4 - 16 Weeks</td>
<td>1 - 12 Weeks</td>
</tr>
<tr>
<td data-label="Compare plans">Backend Developers</td>
<td data-label="Small"></td>
<td data-label="Medium">✔</td>
<td data-label="Large">✔</td>
<td>Pricing (Weekly Average)</td>
<td>1.5X</td>
<td>2X</td>
<td>1X</td>
</tr>
<tr>
<td data-label="Compare plans">QA Testers</td>
<td data-label="Small"></td>
<td data-label="Medium">✔</td>
<td data-label="Large">✔</td>
</tr>
<tr>
<td data-label="Compare plans">Access to WDI Code Library</td>
<td data-label="Small"></td>
<td data-label="Medium"></td>
<td data-label="Large">✔</td>
</tr>
<tr>
<td data-label="Compare plans">Direct Communication</td>
<td data-label="Small"></td>
<td data-label="Medium"></td>
<td data-label="Large">✔</td>
</tr>
<tr>
<td data-label="Compare plans">Time Zone Overlap</td>
<td data-label="Small"></td>
<td data-label="Medium"></td>
<td data-label="Large">✔</td>
</tr>
<tr>
<td data-label="Compare plans">Lead Time to Start</td>
<td data-label="Small"></td>
<td data-label="Medium">✔</td>
<td data-label="Large">✔</td>
</tr>
<tr>
<td data-label="Compare plans">Resource Replacement</td>
<td data-label="Small">✔</td>
<td data-label="Medium">✔</td>
<td data-label="Large">✔</td>
</tr>
</tbody>
</table>
</div>
<div class="request-price-sec p-4">
<div class="request-price-sec my-5">
<p class="mid-para mb-4">Request the Price of your Project</p>
<div class="request-price">
@@ -1143,7 +1016,7 @@
</div>
<div class="lets_talk">
<div class="lets_talk pt-4">
<button>
<span class="one"></span>
<span class="two"></span>

File diff suppressed because it is too large Load Diff

View File

@@ -234,7 +234,7 @@
</div>
<div class="tooltip-container">
<img loading="lazy" src="../assets/images/new-img/cloud.svg" alt="">
<span class="tooltip">Cloud Service</span>
<span class="tooltip">Google Cloud Service</span>
</div>
<div class="tooltip-container">
<img loading="lazy" src="../assets/images/new-img/azure.webp" alt="">

View File

@@ -410,7 +410,7 @@
</div>
<div class="tooltip-container">
<img loading="lazy" src="../assets/images/new-img/cloud.svg" alt="">
<span class="tooltip">Cloud Service</span>
<span class="tooltip">Google Cloud Service</span>
</div>
<div class="tooltip-container">
<img loading="lazy" src="../assets/images/new-img/azure.webp" alt="">

View File

@@ -13,7 +13,7 @@
<div class="row">
<div class="col-md-6">
<p>Mobile App Development</p>
<p class="head">Build Seamless, Multi-Platform <br> Apps with <span class="gr-txt">Flutter</span>
<h1 class="head">Build Seamless, Multi-Platform <br> Apps with <span class="gr-txt">Flutter</span>
</p>
<div class="mobile_view_img">
@@ -54,7 +54,7 @@
<div class="mobile-banner-content">
<div class="row">
<div class="col-md-5">
<p class="mid-head">Transforming Ideas <br> into Exceptional Mobile <br> Experiences</p>
<h2 class="mid-head">Transforming Ideas <br> into Exceptional Mobile <br> Experiences</p>
</div>
<div class="col-md-7">
<p class="grey-para">At the core of our mobile app development services lies innovation and
@@ -173,7 +173,7 @@
<div class="container">
<div class="row">
<div class="col-md-6">
<p class="mid-head">Trusted by Startups and Enterprises Alike</p>
<h2 class="mid-head">Trusted by Startups and Enterprises Alike</p>
<p class="grey-para">Whether you're a startup looking to make an impact or an
established business aiming to expand, our Flutter experience ensures innovative,
cost-effective, and scalable solutions tailored to your goals.</p>
@@ -204,7 +204,7 @@
<section class="our-flutter-team-sec section">
<div class="container">
<div class="row">
<p class="mid-head">Our Flutter Team</p>
<h2 class="mid-head">Our Flutter Team</p>
<p class="grey-para">Our Flutter team consists of passionate developers, designers, and QA experts
who specialize in creating cutting-edge cross-platform applications. With a deep understanding
of Flutters dynamic ecosystem and an eye for pixel-perfect design, our team is dedicated to
@@ -325,7 +325,7 @@
<section class="flutter-team-stand-sec section">
<div class="container">
<p class="mid-head">Why Our Flutter Team Stands Out</p>
<h2 class="mid-head">Why Our Flutter Team Stands Out</p>
<p class="grey-para">Our Flutter Team Consists Of Passionate Developers, Designers, And QA Experts Who
Specialize in Creating
Cutting-Edge Cross-Platform Applications.</p>
@@ -481,7 +481,7 @@
<div class="logo">
<img src="../assets/images/new-img/imgs/regroup.webp" alt="">
</div>
<p class="mid-head">Unite Sports Fans from Around the World with Regroup</p>
<h2 class="mid-head">Unite Sports Fans from Around the World with Regroup</p>
<p class="mini-head-para">Connect, Share, and Join Teams Around the World</p>
<p class="grey-para">Break all barriers in sports networking. Regroup aggregates sports fans
and teams and lets you communicate, collaborate, and keep track of events in one active
@@ -496,7 +496,7 @@
<div class="logo">
<img src="../assets/images/new-img/imgs/woka.webp" alt="">
</div>
<p class="mid-head">Change the Way Kids Learn and Play with Woka</p>
<h2 class="mid-head">Change the Way Kids Learn and Play with Woka</p>
<p class="mini-head-para">Animated Shows, Video Games, and Web Series for Kids</p>
<p class="grey-para">Woka makes learning a fun and exciting experience. From animated
content to interactive video games and engaging web series, every feature is meant to
@@ -511,7 +511,7 @@
<div class="logo">
<img src="../assets/images/new-img/imgs/seezun.webp" alt="">
</div>
<p class="mid-head">Revolutionize the way you shop South Asian Clothing with Seezun</p>
<h2 class="mid-head">Revolutionize the way you shop South Asian Clothing with Seezun</p>
<p class="mini-head-para">Rent, Buy, or Sell Old & New Clothes</p>
<p class="grey-para">Step into a new way of buying. Rent, buy or sell South Asian clothing
from others.
@@ -527,7 +527,7 @@
<div class="logo">
<img src="../assets/images/new-img/imgs/simpletend.webp" alt="">
</div>
<p class="mid-head">Make Wellness Easy for Seniors with Simplitend</p>
<h2 class="mid-head">Make Wellness Easy for Seniors with Simplitend</p>
<p class="mini-head-para">Easy Prescription Management and Health Tracking</p>
<p class="grey-para">Transformed into a trusted, intuitive app that empowers seniors to take
control of their prescriptions, monitor their health, and stay on top of their wellness
@@ -542,7 +542,7 @@
<div class="logo">
<img src="../assets/images/new-img/imgs/gsf.webp" style="width:170px;" alt="">
</div>
<p class="mid-head">GetSetFit Your Fitness Revolution</p>
<h2 class="mid-head">GetSetFit Your Fitness Revolution</p>
<p class="mini-head-para">GetSetFit Personalised Plans Tailored to Your Goals</p>
<p class="grey-para">Set your fitness goals and track your progress. GetSetFit helps you
achieve holistic fitness with customized workouts and wellness insights.</p>
@@ -556,7 +556,7 @@
<div class="logo">
<img src="../assets/images/new-img/imgs/tanami.webp" alt="">
</div>
<p class="mid-head">Transform The Way You Grow Your Money with Tanami Capital</p>
<h2 class="mid-head">Transform The Way You Grow Your Money with Tanami Capital</p>
<p class="mini-head-para">Real-Time Investment Tracking, Seamless Portfolio Management</p>
<p class="grey-para">Remove the guesswork from growing your finances. Real-time investment
tracking and easy portfolio management put you effortlessly in control of your assets.
@@ -571,7 +571,7 @@
<div class="logo">
<img src="../assets/images/new-img/imgs/prosperty.webp" alt="">
</div>
<p class="mid-head">Change the way you think about real estate investment with Prospert</p>
<h2 class="mid-head">Change the way you think about real estate investment with Prospert</p>
<p class="mini-head-para">Invest in pieces, diversify your portfolio</p>
<p class="grey-para">Break the barrier of real estate investing. With Prosperty, you can
invest in portions of properties, making portfolio diversification smarter and more
@@ -586,7 +586,7 @@
<div class="logo">
<img src="../assets/images/new-img/imgs/sai-service.webp" alt="">
</div>
<p class="mid-head">Comprehensive Automotive Solutions</p>
<h2 class="mid-head">Comprehensive Automotive Solutions</p>
<p class="mini-head-para">One-Stop Shop for All Vehicle Needs</p>
<p class="grey-para">Sai Service Group is a leading automotive dealership offering a wide
range of services under one roof. Specializing in car sales, after-sales support,
@@ -602,7 +602,7 @@
<div class="logo">
<img src="../assets/images/new-img/imgs/good-times.webp" alt="">
</div>
<p class="mid-head">Find Top Local Events with Good Times</p>
<h2 class="mid-head">Find Top Local Events with Good Times</p>
<p class="mini-head-para">Find events for any event, any time, effortless</p>
<p class="grey-para">From casual hangouts to special celebrations, Good Times makes browsing
and booking a breeze, so you never miss out.</p>
@@ -616,7 +616,7 @@
<div class="logo">
<img src="../assets/images/new-img/imgs/tc.webp" alt="">
</div>
<p class="mid-head">Empower India's Millennials & Gen Z with Smarter Investments</p>
<h2 class="mid-head">Empower India's Millennials & Gen Z with Smarter Investments</p>
<p class="mini-head-para">Seamless Investment, Ultra-personalized financial planning</p>
<p class="grey-para">Unlock a new dimension of investment decisions in the booming Indian
market. With every move handcrafted for your unique needs, Trader Circuit ensures every
@@ -687,7 +687,7 @@
<section class="award-rec-sec section bg_animate">
<div class="container">
<p class="mid-head">Awards and Recognition</p>
<h2 class="mid-head">Awards and Recognition</p>
<p class="dark-grey-para">Innovation and excellence have earned WDI the recognition of the industry leaders.
Winning for outstanding mobile app development <br> to delivering over 2,000 successful projects
worldwide
@@ -725,7 +725,7 @@
<section class="why-choose-us-sec section">
<div class="container">
<p class="mid-head">Why Choose Us</p>
<h2 class="mid-head">Why Choose Us</p>
<p class="dark-grey-para">where creativity meets technology! We are a leading app development company
committed to transforming your ideas into powerful, user-friendly, and cutting-edge mobile applications.
Whether you're a startup aiming to disrupt the market or an established enterprise seeking digital
@@ -769,7 +769,7 @@
<section class="cmm-contact section">
<div class="container">
<p class="mid-head">Let's Collaborate to Shape your Vision into Reality </p>
<h2 class="mid-head">Let's Collaborate to Shape your Vision into Reality </p>
<p class="grey-para">Our talented team of developers, designers, and engineers has consistently demonstrated
a dedication to pushing the <br> boundaries of what is possible in the digital landscape.</p>
<div class="home-form">

View File

@@ -300,7 +300,7 @@
</div>
<div class="tooltip-container">
<img loading="lazy" src="../assets/images/new-img/cloud.svg" alt="">
<span class="tooltip">Cloud Service</span>
<span class="tooltip">Google Cloud Service</span>
</div>
<div class="tooltip-container">
<img loading="lazy" src="../assets/images/new-img/azure.webp" alt="">