@keyframes fadeIn { to { opacity: 1; } } .profile-card { /* background: rgba(255, 255, 255, 0.95); border-radius: 30px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); overflow: hidden; backdrop-filter: blur(10px); */ animation: slideUp 0.8s ease-out 0.3s both; } @keyframes slideUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } } .profile-header { /* background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); */ background: url('/assets/images/Untitled\ \(1920\ x\ 800\ px\).png'); background-position: center; background-repeat: no-repeat; background-size: contain; padding: 60px 40px 40px; /* position: relative; overflow: hidden; */ } .profile-header::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; /* animation: moveBackground 20s linear infinite; */ } @keyframes moveBackground { 0% { transform: translate(0, 0); } 100% { transform: translate(100px, 100px); } } .profile-content { display: flex; gap: 40px; align-items: center; position: relative; z-index: 1; flex-wrap: wrap; } .photo-container { position: relative; animation: scaleIn 0.6s ease-out 0.6s both; } @keyframes scaleIn { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } } .photo-wrapper { width: 200px; height: 200px; border-radius: 50%; padding: 6px; background: linear-gradient(145deg, #0b1b2e -10%, #c3a167 100%); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3); transition: transform 0.3s ease; } .photo-wrapper:hover { transform: scale(1.05) rotate(5deg); } .photo { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 4px solid white; } .header-info { flex: 1; color: #0b1b2e; min-width: 250px; } .name { font-size: 2.5rem; font-weight: 700; margin-bottom: 10px; animation: slideRight 0.6s ease-out 0.8s both; } @keyframes slideRight { from { transform: translateX(-30px); opacity: 0; } to { transform: translateX(0); opacity: 1; } } .title { font-size: 1.3rem; opacity: 0.9; margin-bottom: 5px; font-weight: 600; animation: slideRight 0.6s ease-out 0.9s both; } .company { font-size: 1.1rem; opacity: 0.8; animation: slideRight 0.6s ease-out 1s both; font-weight: 600; } .contact-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; padding: 40px; background: white; } .contact-item { display: flex; align-items: center; gap: 5px; padding: 15px 5px; border-radius: 12px; background: #f8f9fa; transition: all 0.3s ease; animation: fadeInUp 0.5s ease-out both; } .contact-item:nth-child(1) { animation-delay: 1.1s; } .contact-item:nth-child(2) { animation-delay: 1.2s; } .contact-item:nth-child(3) { animation-delay: 1.3s; } .contact-item:nth-child(4) { animation-delay: 1.4s; } .contact-item:nth-child(5) { animation-delay: 1.5s; } @keyframes fadeInUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } } .contact-item:hover { background-color:#0b1b2e; color: #c3a167; transform: translateY(-5px); box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3); } .contact-item svg { width: 24px; height: 24px; flex-shrink: 0; } .contact-item a { color: inherit; text-decoration: none; font-weight: 600; } .tabs { display: flex; gap: 0; padding: 0 40px; background: white; border-bottom: 2px solid #e9ecef; overflow-x: auto; } .tab { padding: 20px 30px; background: none; border: none; cursor: pointer; font-size: 1rem; font-weight: 600; color: #6c757d; position: relative; transition: color 0.3s ease; white-space: nowrap; } .tab:hover { color: #0b1b2e; } .tab.active { color: #0b1b2e; } .tab.active::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background:#0b1b2e; animation: expandWidth 0.3s ease-out; } @keyframes expandWidth { from { width: 0; left: 50%; } to { width: 100%; left: 0; } } .tab-content { padding: 40px; background: white; border-radius: 0 0 30px 30px; } .tab-panel { display: none; animation: fadeIn 0.5s ease-out; } .tab-panel.active { display: block; } .bio { font-size: 1.1rem; line-height: 1.8; color: #495057; margin-bottom: 30px; } .section-title { font-size: 1.5rem; font-weight: 700; color: #0b1b2e; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 3px solid #0b1b2e; display: inline-block; } .achievement-list, .experience-list, .education-list { list-style: none; } .achievement-item, .experience-item, .education-item { padding: 20px; margin-bottom: 15px; background: #f8f9fa; border-left: 4px solid #0b1b2e; border-radius: 8px; transition: all 0.3s ease; } .achievement-item:hover, .experience-item:hover, .education-item:hover { transform: translateX(10px); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); } .experience-item h3, .education-item h3 { color: #1e3c72; margin-bottom: 5px; } .experience-item p, .education-item p { color: #6c757d; margin-bottom: 5px; } .stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 30px; } .stat-card { text-align: center; padding: 30px; background: linear-gradient(105deg, #c3a167 -100%, #0b1b2e 100%); color: white; border-radius: 15px; transition: transform 0.3s ease; } .stat-card:hover { transform: translateY(-10px); } .stat-number { font-size: 2.5rem; font-weight: 700; margin-bottom: 10px; } .stat-label { font-size: 1rem; opacity: 0.9; } @media (max-width: 768px) { .profile-header { padding: 40px 20px 30px; } .profile-content { flex-direction: column; text-align: center; gap: 30px; } .name { font-size: 2rem; } .title { font-size: 1.1rem; } .contact-info, .tab-content, .tabs { padding: 20px; } .photo-wrapper { width: 160px; height: 160px; } .tab { padding: 15px 20px; font-size: 0.9rem; } .stat-card { padding: 20px; } .stat-number { font-size: 2rem; } } @media (max-width: 480px) { .name { font-size: 1.5rem; } .contact-info { grid-template-columns: 1fr; } .tabs { padding: 0 10px; } .tab { padding: 12px 15px; font-size: 0.85rem; } }
Director
Vishal CHaudhary's Law Office
Vishal Chaudhary is an Advocate with extensive experience in legal practice since 2009. With a strong foundation in law and disciplined professional approach, he has been actively engaged in representing clients across a wide spectrum of legal matters, offering principled and strategic legal solutions.
Over the course of his practice, he has handled cases relating to civil and criminal law, matrimonial and family disputes, property and contractual matters, corporate and commercial issues, and regulatory compliance, appearing before various courts and legal forums. His work is characterized by thorough legal analysis, precise drafting, and well-structured advocacy.
Advocate Vishal Chaudhary is known for his commitment to ethical legal practice, confidentiality, and responsible representation. He places strong emphasis on understanding the factual and legal complexities of each matter to provide clear, practical, and effective legal advice aligned with the client’s best interests.
With a practice rooted in integrity, accountability, and respect for the judicial process, he continues to build Vishal Chaudhary’s Law Office as a professional legal institution dedicated to excellence, trust, and justice.
Vishal Chaudhary’s Law Office | 2009 - Present
Providing comprehensive legal representation and advisory services with a focus on ethical practice, strategic advocacy, and professional excellence across diverse areas of law.
Independent Legal Practice | 2009 - Present
Actively representing clients in civil, criminal, matrimonial, property, corporate, and commercial matters before various courts and legal forums.
Courts and Legal Forums | Ongoing
Engaged in litigation, legal drafting, and advisory work with emphasis on disciplined legal analysis, precise documentation, and responsible advocacy.
Individuals & Businesses | Ongoing
Advising individuals and organizations on legal compliance, dispute resolution, contractual matters, and regulatory issues.
Recognized University / Institution
Comprehensive legal education with focus on civil, criminal, constitutional, and procedural laws.
Bar Council of India
Authorized to practice law before courts and legal forums in accordance with statutory regulations.
Judicial Academies & Legal Institutions
Ongoing participation in legal seminars, workshops, and professional development programs.
Litigation & Advisory Practice
Practical experience across civil, criminal, matrimonial, corporate, and property law matters.