create home page

This commit is contained in:
AnsariTufail
2025-10-14 12:13:00 +05:30
parent 5ed35d73e1
commit 42f941c2bd
17 changed files with 1920 additions and 523 deletions

File diff suppressed because it is too large Load Diff

57
css/testing.css Normal file
View File

@@ -0,0 +1,57 @@
.home_services {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.home_services_wrapper {
height: 100vh;
overflow: hidden;
}
.home_service_item {
height: 100vh;
display: flex;
align-items: center;
justify-content: space-between;
padding: 2rem;
box-sizing: border-box;
}
.home_service_content {
max-width: 50%;
}
.home_service_image img {
max-width: 400px;
width: 100%;
}
.home_service_labels span {
background: #002852;
color: #fff;
padding: 0.2rem 0.5rem;
border-radius: 3px;
font-size: 0.9rem;
margin-right: 5px;
}
.btn-primary {
background: #B18C4A;
border: none;
}
@media (max-width: 768px) {
.home_service_item {
flex-direction: column;
text-align: center;
}
.home_service_content {
max-width: 100%;
margin-bottom: 1.5rem;
}
.home_service_image img {
max-width: 250px;
}
}