Skip to content
Merged
Show file tree
Hide file tree
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
181 changes: 181 additions & 0 deletions styles/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1024,3 +1024,184 @@ body {
}

}
/* ------------------ Footer Styling (Updated) ------------------ */
footer.modern-footer {
background: linear-gradient(180deg, #d8e4ff 0%, #e8eeff 100%);
color: #0a0a0a;
padding: 3rem 2rem;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
font-family: 'Inter', sans-serif;
}

.footer-top {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: flex-start;
gap: 2rem;
}

.footer-brand-section {
flex: 1;
min-width: 280px;
}

.footer-logo {
height: 50px;
margin-bottom: 1rem;
}

.footer-tagline {
font-size: 1.1rem;
font-weight: 700;
color: #0a0a0a;
margin-bottom: 0.5rem;
display: flex;
align-items: center;
gap: 0.5rem;
}

.footer-description {
color: #333;
line-height: 1.6;
max-width: 420px;
}

/* Contact Info Box */
.contact-info {
background: linear-gradient(180deg, #e3ebff 0%, #d1ddff 100%);
border-radius: 12px;
padding: 1.5rem;
color: #000;
font-weight: 500;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-item {
display: flex;
align-items: center;
gap: 0.6rem;
margin-bottom: 0.8rem;
}

.contact-item:last-child {
margin-bottom: 0;
}

.contact-item a {
color: #2563eb;
font-weight: 600;
text-decoration: none;
}

.contact-item a:hover {
text-decoration: underline;
}

.contact-icon {
color: #1e40af;
font-size: 1.1rem;
}

/* Footer Links Section */
.footer-links-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 2rem;
margin-top: 3rem;
}

.footer-column h6 {
font-weight: 700;
font-size: 1.05rem;
margin-bottom: 1rem;
color: #0a0a0a;
position: relative;
padding-bottom: 0.4rem;
}

.footer-column h6::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 30px;
height: 3px;
background: #facc15;
border-radius: 2px;
}

.footer-links {
list-style: none;
padding: 0;
margin: 0;
}

.footer-links li {
margin-bottom: 0.75rem;
display: flex;
align-items: center;
gap: 0.6rem;
}

.footer-links a {
color: #222;
font-weight: 500;
text-decoration: none;
transition: color 0.3s ease;
}

.footer-links a:hover {
color: #2563eb;
}

/* Social Icons */
.footer-socials {
display: flex;
gap: 1rem;
align-items: center;
}

.footer-socials a {
display: flex;
align-items: center;
justify-content: center;
width: 42px;
height: 42px;
background: rgba(255, 255, 255, 0.6);
border-radius: 12px;
color: #111;
transition: all 0.3s ease;
font-size: 1.2rem;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.footer-socials a:hover {
background: #2563eb;
color: white;
}

/* Responsive */
@media (max-width: 768px) {
footer.modern-footer {
text-align: center;
}

.footer-top {
flex-direction: column;
align-items: center;
}

.contact-info {
max-width: 95%;
margin: 1rem auto 0;
}

.footer-links-grid {
grid-template-columns: 1fr 1fr;
text-align: left;
}
}

2 changes: 2 additions & 0 deletions tandc.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@

<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="styles/style.css">


<!-- Styles -->
<style>
Expand Down