Initial commit 🌟

This commit is contained in:
Mohammed Al-yaseen
2025-04-06 20:03:35 +03:00
commit fbd966a3fd
34 changed files with 5884 additions and 0 deletions

View File

@@ -0,0 +1,74 @@
.header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
padding: 15px 0;
transition: all 0.3s ease;
}
.headerContainer {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
.logoContainer {
display: flex;
align-items: center;
}
.logoText {
margin: 0 !important;
font-weight: 700 !important;
font-size: 1.5rem !important;
transition: all 0.3s ease;
}
.logoHighlight {
margin-left: 8px;
}
.navContainer {
display: flex;
align-items: center;
}
.menu {
border-bottom: none !important;
background: transparent !important;
font-weight: 500;
}
.menu li {
padding: 0 15px !important;
}
.ctaContainer {
margin-left: 30px;
}
.ctaButton {
/* background: var(--primary) !important; */
border: none !important;
font-weight: 500 !important;
padding: 0 25px !important;
height: 40px !important;
}
@media (max-width: 992px) {
.navContainer {
display: none;
}
.headerContainer {
justify-content: center;
}
}