Jatin Yadav
Founder & CEO – Autoora
About Jatin
Jatin is the visionary founder behind Autoora, leading with innovation,
technology and customer-first thinking. His goal is to redefine how
India experiences car care—making it modern, premium and hassle-free.
Core Responsibilities
- Business Strategy & Growth
- Innovation & Product Vision
- Team Leadership & Development
- Technology Implementation
Expertise
- Leadership & Management
- Business Development
- Technology Systems
- Customer Experience
← Back to Team
/* GLOBAL WRAPPER */
.team-profile {
font-family: “Inter”, sans-serif;
background: #f8faff;
padding-bottom: 60px;
}
/* HERO */
.team-hero {
text-align: center;
padding: 60px 20px;
}
.team-hero h1 {
font-size: 42px;
font-weight: 700;
color: #0b0b0c;
}
.team-hero p {
margin-top: 10px;
font-size: 18px;
color: #555;
}
/* MAIN CONTENT */
.team-content {
max-width: 1100px;
margin: 40px auto;
background: #fff;
border-radius: 14px;
padding: 40px 50px;
display: flex;
gap: 50px;
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
/* PHOTO */
.team-photo img {
width: 180px;
height: 180px;
border-radius: 16px;
object-fit: cover;
border: 4px solid #0b66ff;
display: block;
}
/* DETAILS */
.team-details h2 {
font-size: 28px;
margin-bottom: 10px;
}
.team-details p {
font-size: 16px;
line-height: 1.6;
color: #444;
}
.team-details h3 {
margin-top: 25px;
font-size: 20px;
color: #0b66ff;
}
.team-details ul {
margin: 10px 0 10px 20px;
}
.team-details ul li {
margin-bottom: 6px;
color: #333;
}
/* BUTTONS */
.team-actions {
margin-top: 25px;
}
.team-btn {
display: inline-block;
padding: 10px 18px;
background: #0b66ff;
color: #fff;
border-radius: 8px;
margin-right: 10px;
font-size: 15px;
text-decoration: none;
transition: 0.3s;
}
.team-btn:hover {
background: #084fcc;
}
.team-btn.light {
background: #e9f0ff;
color: #0b66ff;
}
.team-btn.light:hover {
background: #d4e4ff;
}
/* BACK BUTTON */
.team-back {
display: inline-block;
margin-top: 30px;
font-size: 16px;
color: #0b66ff;
font-weight: 600;
text-decoration: none;
}
/* RESPONSIVE */
@media(max-width: 900px) {
.team-content {
flex-direction: column;
text-align: center;
padding: 30px;
}
.team-photo img {
width: 160px;
height: 160px;
margin: 0 auto;
}
}
@media(max-width: 500px) {
.team-hero h1 {
font-size: 32px;
}
.team-content {
padding: 20px;
}
.team-photo img {
width: 140px;
height: 140px;
}
}