Test Code Block
If you can see this styled box, code is working.
body {
font-family: 'Noto Sans Arabic', sans-serif;
}
.hero-bg {
background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}
.module-card {
transition: all 0.3s ease;
border-radius: 12px;
overflow: hidden;
}
.module-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.specialty-card {
background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
border-radius: 12px;
transition: all 0.3s ease;
}
.specialty-card:hover {
transform: scale(1.02);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.fade-in {
opacity: 0;
transform: translateY(20px);
transition: all 0.6s ease;
}
.fade-in.visible {
opacity: 1;
transform: translateY(0);
}
.floating {
animation: floating 3s ease-in-out infinite;
}
@keyframes floating {
0% { transform: translate(0, 0px); }
50% { transform: translate(0, -10px); }
100% { transform: translate(0, 0px); }
}
.feature-icon {
background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
/* تخصيص Tailwind */
body {
font-family: 'Tajawal', sans-serif;
}
.hero-section {
background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
min-height: 80vh;
display: flex;
align-items: center;
}
.module-card {
transition: all 0.3s ease;
border-radius: 12px;
overflow: hidden;
border-top: 4px solid;
}
.module-card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.nav-link {
position: relative;
padding: 0.5rem 1rem;
transition: all 0.3s ease;
}
.nav-link:hover {
color: #3b82f6;
}
.nav-link::after {
content: '';
position: absolute;
bottom: 0;
right: 0;
width: 0;
height: 2px;
background: #3b82f6;
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.floating {
animation: floating 3s ease-in-out infinite;
}
@keyframes floating {
0% { transform: translate(0, 0px); }
50% { transform: translate(0, -10px); }
100% { transform: translate(0, 0px); }
}
.fade-in {
opacity: 0;
transform: translateY(20px);
transition: all 0.6s ease;
}
.fade-in.visible {
opacity: 1;
transform: translateY(0);
}
body {
font-family: 'Noto Sans Arabic', sans-serif;
}
.hero-bg {
background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}
.module-card {
transition: all 0.3s ease;
border-radius: 12px;
overflow: hidden;
}
.module-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.specialty-card {
background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
border-radius: 12px;
transition: all 0.3s ease;
}
.specialty-card:hover {
transform: scale(1.02);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.fade-in {
opacity: 0;
transform: translateY(20px);
transition: all 0.6s ease;
}
.fade-in.visible {
opacity: 1;
transform: translateY(0);
}
.floating {
animation: floating 3s ease-in-out infinite;
}
@keyframes floating {
0% { transform: translate(0, 0px); }
50% { transform: translate(0, -10px); }
100% { transform: translate(0, 0px); }
}
.feature-icon {
background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}