Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 36 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1019,6 +1019,41 @@
background: linear-gradient(135deg, #2d2d2d 0%, #3a3a3a 100%) !important;
}
}
.footer-brand img{
transition: transform 0.3s ease-in-out;
}
.footer-brand img:hover{
transform: scale(1.25);
}
.footer-title{
transition: transform 0.3s ease-in-out;
}
.footer-title:hover{
transform: scale(1.15);
color: maroon;
}
.contact-item a{
transition: font-weight 0.2s ease-in-out,transform 0.3s ease-in;
}
.contact-item a:hover{
transform: scale(1.05);
font-weight: 600;
color: black;
}
.footer-links a{
transition: font-weight 0.3s ease-in,transform 0.4s ease-in;
}
.footer-links a:hover{
transform: scale(1.05);
font-weight: 450;
color: black;
}
.contact-item i{
color: maroon;
}
.stat-number{
color: maroon;
}
</style>
<!-- END: Custom CSS changes -->
</head>
Expand Down Expand Up @@ -1837,7 +1872,7 @@ <h2 class="about-title mb-2">About Us</h2>
<!-- Professional Footer -->
<footer
class="professional-footer fade-in"
style="background: linear-gradient(135deg, #43d863, #8ae78a)"
style=" background: linear-gradient(135deg, rgba(132, 234, 132, 0.85), rgba(135, 210, 161, 0.59));"
>
<div class="container">
<div class="main-footer row g-4 fade-in">
Expand Down