Initial commit of project without large files

This commit is contained in:
2025-12-29 15:45:02 +05:30
parent 82ad17a88a
commit 2a58e4af62
79 changed files with 26524 additions and 0 deletions

29
src/styles/VisionCard.css Normal file
View File

@@ -0,0 +1,29 @@
/* Vision Section */
.vision-section {
background: url('../assets/background-vision.jpg') center/cover no-repeat;
color: white;
padding: 4rem 2rem;
display: flex;
justify-content: space-around;
flex-wrap: wrap;
text-align: center;
gap: 2rem;
}
.vision-card {
flex: 1 1 30%;
background: rgba(0, 0, 0, 0.5);
padding: 2rem;
border-radius: 10px;
}
.vision-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
}
.vision-card p {
font-size: 1rem;
color: #eee;
}