453 lines
14 KiB
HTML
453 lines
14 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Practice Coding & Ace Hiring Assessments</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-family: 'Segoe UI', system-ui, sans-serif;
|
|
}
|
|
|
|
body {
|
|
background-color: #f9fafb;
|
|
color: #1f2937;
|
|
padding: 40px 20px;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1300px;
|
|
width: 100%;
|
|
}
|
|
|
|
header {
|
|
margin-bottom: 40px;
|
|
text-align: center;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 32px;
|
|
font-weight: 700;
|
|
margin-bottom: 12px;
|
|
color: #111827;
|
|
}
|
|
|
|
.subtitle {
|
|
font-size: 18px;
|
|
color: #6b7280;
|
|
max-width: 700px;
|
|
margin: 0 auto;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.cards-container {
|
|
margin: 30px 0;
|
|
display: flex;
|
|
height: 380px;
|
|
border-radius: 12px;
|
|
overflow: hidden;
|
|
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
|
|
position: relative;
|
|
gap: 1px;
|
|
background-color: #d1d5db;
|
|
padding: 1px;
|
|
}
|
|
|
|
.card {
|
|
flex: 1;
|
|
display: flex;
|
|
transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
|
|
cursor: pointer;
|
|
position: relative;
|
|
overflow: hidden;
|
|
transform-origin: center;
|
|
background-color: white;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.card:first-child {
|
|
border-radius: 11px 0 0 11px;
|
|
}
|
|
|
|
.card:last-child {
|
|
border-radius: 0 11px 11px 0;
|
|
}
|
|
|
|
.card-content {
|
|
flex: 1;
|
|
padding: 24px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
transition: all 0.7s ease;
|
|
min-width: 0;
|
|
z-index: 2;
|
|
position: relative;
|
|
}
|
|
|
|
/* Color changes for active and hover states */
|
|
.card.active { background-color: #c6e0f1; }
|
|
.card:nth-child(1):hover,
|
|
.card:nth-child(1).active { background-color: #89CFF0; }
|
|
.card:nth-child(2):hover,
|
|
.card:nth-child(2).active { background-color: #FEB4CF; }
|
|
.card:nth-child(3):hover,
|
|
.card:nth-child(3).active { background-color: #DFC5FE; }
|
|
.card:nth-child(4):hover,
|
|
.card:nth-child(4).active { background-color: #FFE186; }
|
|
|
|
/* SVG Container */
|
|
.card-svg {
|
|
width: 0;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transition: all 1.3s cubic-bezier(0.23, 1, 0.32, 1);
|
|
opacity: 0;
|
|
padding: 20px;
|
|
/* Remove the gradient and use solid background that matches the card */
|
|
background: transparent;
|
|
}
|
|
|
|
.card-svg svg {
|
|
width: 100%;
|
|
height: 100%;
|
|
max-width: 180px;
|
|
max-height: 180px;
|
|
filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
|
|
}
|
|
|
|
.card-icon {
|
|
width: 48px;
|
|
height: 48px;
|
|
border-radius: 10px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 24px;
|
|
margin-bottom: 16px;
|
|
transition: transform 0.5s ease;
|
|
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.card:nth-child(1) .card-icon { background-color: #1268f3; color: white; }
|
|
.card:nth-child(2) .card-icon { background-color: #ef4444; color: white; }
|
|
.card:nth-child(3) .card-icon { background-color: #8b5cf6; color: white; }
|
|
.card:nth-child(4) .card-icon { background-color: #f59e0b; color: white; }
|
|
|
|
.card h3 {
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
margin-bottom: 12px;
|
|
color: #111827;
|
|
transition: transform 0.5s ease;
|
|
}
|
|
|
|
.card p {
|
|
font-size: 15px;
|
|
color: #6b7280;
|
|
line-height: 1.5;
|
|
margin-bottom: 16px;
|
|
transition: transform 0.5s ease;
|
|
}
|
|
|
|
.meta-info {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 16px;
|
|
font-size: 14px;
|
|
color: #4b5563;
|
|
transition: transform 0.5s ease;
|
|
}
|
|
|
|
.meta-logo {
|
|
width: 24px;
|
|
height: 24px;
|
|
background-color: #3b82f6;
|
|
border-radius: 4px;
|
|
margin-right: 8px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: white;
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.footer-text {
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
color: #374151;
|
|
margin-top: auto;
|
|
transition: transform 0.5s ease;
|
|
}
|
|
|
|
.cta-btn {
|
|
margin-top: 16px;
|
|
background-color: #111827;
|
|
color: white;
|
|
padding: 10px 16px;
|
|
border-radius: 8px;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
text-decoration: none;
|
|
width: fit-content;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
|
|
opacity: 0;
|
|
transform: translateY(15px);
|
|
position: relative;
|
|
overflow: hidden;
|
|
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.cta-btn::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: -100%;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
|
|
transition: left 0.8s;
|
|
}
|
|
|
|
.cta-btn:hover::before {
|
|
left: 100%;
|
|
}
|
|
|
|
.cta-btn:hover {
|
|
background-color: #374151;
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 6px 12px rgba(0,0,0,0.15);
|
|
}
|
|
|
|
/* Active card styles */
|
|
.card.active {
|
|
flex: 3.5;
|
|
transform: translateY(-8px) scale(1.02);
|
|
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
|
|
z-index: 10;
|
|
}
|
|
|
|
.card.active .card-svg {
|
|
width: 45%;
|
|
opacity: 1;
|
|
}
|
|
|
|
.card.active .cta-btn {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
|
|
.card.active .card-icon {
|
|
transform: scale(1.1) rotate(5deg);
|
|
}
|
|
|
|
.card.active h3 {
|
|
transform: translateY(-3px);
|
|
}
|
|
|
|
.card.active p,
|
|
.card.active .meta-info,
|
|
.card.active .footer-text {
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
/* Hover effects for non-active cards */
|
|
.card:hover:not(.active) {
|
|
flex: 1.3;
|
|
transform: translateY(-4px) scale(1.01);
|
|
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
|
|
z-index: 5;
|
|
}
|
|
|
|
.card:hover:not(.active) .card-svg {
|
|
width: 25%;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
/* Subtle overlay effect */
|
|
.card::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: linear-gradient(to bottom, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
|
|
opacity: 0;
|
|
transition: opacity 0.6s ease;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.card.active::after,
|
|
.card:hover::after {
|
|
opacity: 1;
|
|
}
|
|
|
|
@media (max-width: 992px) {
|
|
.cards-container {
|
|
flex-direction: column;
|
|
height: auto;
|
|
border-radius: 12px;
|
|
}
|
|
|
|
.card {
|
|
flex-direction: column;
|
|
height: auto;
|
|
border-radius: 0 !important;
|
|
}
|
|
|
|
.card:first-child {
|
|
border-radius: 12px 12px 0 0 !important;
|
|
}
|
|
|
|
.card:last-child {
|
|
border-radius: 0 0 12px 12px !important;
|
|
}
|
|
|
|
.card.active .card-svg,
|
|
.card:hover .card-svg {
|
|
width: 100%;
|
|
height: 200px;
|
|
}
|
|
|
|
.card.active {
|
|
transform: translateY(-5px) scale(1.01);
|
|
}
|
|
|
|
.card:hover:not(.active) {
|
|
transform: translateY(-3px) scale(1.005);
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Practice Coding & Ace Hiring Assessments</h1>
|
|
<p>Level up your coding skills by practicing the hiring assessments of your dream companies & ace your placement game!</p>
|
|
|
|
<div class="cards-container">
|
|
<!-- Coding Practice Card -->
|
|
<div class="card active">
|
|
<div class="card-content">
|
|
<div>
|
|
<div class="card-icon">💻</div>
|
|
<h3>Coding Practice</h3>
|
|
<p>Level up your coding skills by practicing the hiring Questions.</p>
|
|
</div>
|
|
<a href="#" class="cta-btn">Start Now ➤</a>
|
|
</div>
|
|
<div class="card-svg">
|
|
<img src="assets/images/mit-ico/ebmpapst.svg" alt="Coding Practice">
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Interview Preparation Card -->
|
|
<div class="card">
|
|
<div class="card-content">
|
|
<div>
|
|
<div class="card-icon">📋</div>
|
|
<h3>Interview Preparation</h3>
|
|
<p>Crack Top companies in just 5 days.</p>
|
|
<div class="footer-text">20+ Companies</div>
|
|
</div>
|
|
<a href="#" class="cta-btn">Start Now ➤</a>
|
|
</div>
|
|
<div class="card-svg">
|
|
<img src="assets/images/mit-ico/ebmpapst.svg" alt="Coding Practice">
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Projects Card -->
|
|
<div class="card">
|
|
<div class="card-content">
|
|
<div>
|
|
<div class="card-icon">📂</div>
|
|
<h3>Projects</h3>
|
|
<p>Projects epitomize perfect synergy for success.</p>
|
|
<!-- <div class="meta-info">
|
|
<div class="meta-logo">M</div>
|
|
<span>Meta</span>
|
|
<span style="margin-left: auto;">$4,000 Regis...</span>
|
|
</div> -->
|
|
<div class="footer-text">15+ Projects</div>
|
|
</div>
|
|
<a href="#" class="cta-btn">Start Now ➤</a>
|
|
</div>
|
|
<div class="card-svg">
|
|
<img src="assets/images/mit-ico/ebmpapst.svg" alt="Coding Practice">
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Skill Based Assessments Card -->
|
|
<div class="card">
|
|
<div class="card-content">
|
|
<div>
|
|
<div class="card-icon">📝</div>
|
|
<h3>Skill Based Assessments</h3>
|
|
<p>Assess your skills and get ahead of the curve.</p>
|
|
<div class="footer-text">2000+ Questions</div>
|
|
</div>
|
|
<a href="#" class="cta-btn">Start Now ➤</a>
|
|
</div>
|
|
<div class="card-svg">
|
|
<img src="assets/images/mit-ico/ebmpapst.svg" alt="Coding Practice">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
const cards = document.querySelectorAll('.card');
|
|
let activeCard = document.querySelector('.card.active');
|
|
let lastActiveCard = activeCard;
|
|
|
|
// Function to set active card
|
|
function setActiveCard(card) {
|
|
// Remove active class from all cards
|
|
cards.forEach(c => {
|
|
c.classList.remove('active');
|
|
const btn = c.querySelector('.cta-btn');
|
|
btn.style.visibility = 'hidden';
|
|
});
|
|
|
|
// Add active class to the specified card
|
|
card.classList.add('active');
|
|
const btn = card.querySelector('.cta-btn');
|
|
btn.style.visibility = 'visible';
|
|
|
|
// Update last active card
|
|
lastActiveCard = card;
|
|
}
|
|
|
|
// Set first card as active by default
|
|
setActiveCard(cards[0]);
|
|
|
|
// Add hover event listeners
|
|
cards.forEach(card => {
|
|
card.addEventListener('mouseenter', function() {
|
|
setActiveCard(this);
|
|
});
|
|
|
|
// When mouse leaves the container, keep the last hovered card active
|
|
document.querySelector('.cards-container').addEventListener('mouseleave', function() {
|
|
// Keep the current active card as is (no change needed)
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |