<div class="header">
<div class="bell-icon">🔔</div>
<h1>TAT-HS 2026</h1>
<div class="subtitle">નોટિફિકેશન જાહેર થઈ ગયું છે</div>
</div>
<div class="timeline">
<div class="timeline-item">
<div class="icon">📄</div>
<div class="content">
<div class="title">જાહેરનામું પ્રસિદ્ધ</div>
<div class="date">05 ફેબ્રુઆરી 2026</div>
</div>
</div>
<div class="timeline-item highlight">
<div class="icon">📝</div>
<div class="content">
<div class="title">ઓનલાઈન રજિસ્ટ્રેશન</div>
<div class="date">10 - 19 ફેબ્રુઆરી 2026</div>
</div>
</div>
<div class="timeline-item">
<div class="icon">💳</div>
<div class="content">
<div class="title">ઓનલાઈન ફી ભરાણ</div>
<div class="date">10 - 20 ફેબ્રુઆરી 2026</div>
</div>
</div>
<div class="timeline-item highlight">
<div class="icon">🛑</div>
<div class="content">
<div class="title">પ્રાથમિક પરીક્ષા (MCQ)</div>
<div class="date">29 માર્ચ 2026</div>
</div>
</div>
<div class="timeline-item">
<div class="icon">🛑</div>
<div class="content">
<div class="title">મુખ્ય પરીક્ષા</div>
<div class="date">મે 2026 (સંભવિત)</div>
</div>
</div>
</div>
<div class="footer">
<div class="exam-name">Teacher Aptitude Test - Higher Secondary</div>
<div class="hashtags">#TATHS2026 #શિક્ષકભરતી #ગુજરાતશિક્ષણ</div>
</div>
</div>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
font-family: 'Segoe UI', 'Noto Sans Gujarati', Arial, sans-serif;
}
.tat-notification {
width: 450px;
height: 800px;
background: white;
border-radius: 24px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
position: relative;
border: 2px solid #2c3e50;
}
.header {
background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
color: white;
padding: 40px 30px 30px;
text-align: center;
position: relative;
}
.bell-icon {
font-size: 50px;
margin-bottom: 15px;
animation: ring 2s ease-in-out infinite;
}
@keyframes ring {
0%, 100% { transform: rotate(0deg); }
10%, 30%, 50%, 70%, 90% { transform: rotate(-10deg); }
20%, 40%, 60%, 80% { transform: rotate(10deg); }
}
.header h1 {
font-size: 42px;
margin-bottom: 8px;
letter-spacing: 1px;
font-weight: 700;
}
.subtitle {
font-size: 22px;
opacity: 0.95;
font-weight: 500;
}
.timeline {
padding: 40px 35px;
position: relative;
}
.timeline::before {
content: '';
position: absolute;
left: 65px;
top: 70px;
bottom: 100px;
width: 3px;
background: linear-gradient(to bottom, #1a237e, #5c6bc0, #1a237e);
border-radius: 3px;
}
.timeline-item {
display: flex;
margin-bottom: 35px;
position: relative;
align-items: flex-start;
}
.timeline-item.highlight {
transform: scale(1.03);
}
.timeline-item.highlight .icon {
background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
transform: scale(1.1);
box-shadow: 0 5px 15px rgba(255, 87, 34, 0.3);
}
.icon {
width: 60px;
height: 60px;
border-radius: 50%;
background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
color: white;
display: flex;
align-items: center;
justify-content: center;
font-size: 26px;
margin-right: 25px;
position: relative;
z-index: 2;
flex-shrink: 0;
box-shadow: 0 5px 15px rgba(26, 35, 126, 0.2);
}
.content {
flex-grow: 1;
padding-top: 8px;
}
.title {
font-size: 20px;
font-weight: 600;
color: #1a237e;
margin-bottom: 6px;
line-height: 1.3;
}
.date {
font-size: 18px;
color: #283593;
font-weight: 500;
background: #f0f2ff;
padding: 8px 15px;
border-radius: 10px;
display: inline-block;
border-left: 4px solid #3949ab;
}
.footer {
background: #f8f9ff;
padding: 25px 30px;
border-top: 2px solid #e8eaf6;
text-align: center;
position: absolute;
bottom: 0;
width: 100%;
}
.exam-name {
font-size: 20px;
color: #1a237e;
font-weight: 600;
margin-bottom: 12px;
padding: 10px;
background: white;
border-radius: 12px;
border: 2px solid #e8eaf6;
}
.hashtags {
font-size: 16px;
color: #5c6bc0;
font-weight: 500;
}
/* Responsive adjustments */
@media (max-width: 480px) {
.tat-notification {
width: 360px;
height: 640px;
border-radius: 20px;
}
.header {
padding: 30px 20px 25px;
}
.header h1 {
font-size: 36px;
}
.subtitle {
font-size: 19px;
}
.timeline {
padding: 30px 25px;
}
.icon {
width: 50px;
height: 50px;
font-size: 22px;
}
.title {
font-size: 18px;
}
.date {
font-size: 16px;
}
}
</style>