Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
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
7 changes: 1 addition & 6 deletions aboutUs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,7 @@
<li><a href="/">Home</a></li>
<li><a href="/services">Services</a></li>
<li><a href="/expertise">Expertise</a></li>
<li class="dropdown">
<a href="/aboutUs" class="dropdown-toggle active">About Us</a>
<ul class="dropdown-menu glass-dropdown">
<li><a href="/about">About Me</a></li>
</ul>
</li>
<li><a href="/aboutUs" class="active">About Us</a></li>
<li><a href="/contactUs">Contact</a></li>
</ul>
<div style="display: flex; align-items: center;">
Expand Down
2 changes: 1 addition & 1 deletion contact/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
<li class="dropdown">
<a href="/contact" class="dropdown-toggle active">Contact Form</a>
<ul class="dropdown-menu glass-dropdown">
<li><a href="/contactUs">Contact</a></li>
<li><a href="/contactUs">Back</a></li>
</ul>
</li>
</ul>
Expand Down
9 changes: 2 additions & 7 deletions contactUs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,7 @@
<li><a href="/services">Services</a></li>
<li><a href="/expertise">Expertise</a></li>
<li><a href="/aboutUs">About Us</a></li>
<li class="dropdown">
<a href="/contactUs" class="dropdown-toggle active">Contact</a>
<ul class="dropdown-menu glass-dropdown">
<li><a href="/contact">Contact Form</a></li>
</ul>
</li>
<li><a href="/contactUs" class="active">Contact</a></li>
</ul>
<div style="display: flex; align-items: center;">
<div class="hamburger" id="hamburger">&#9776;</div>
Expand Down Expand Up @@ -157,7 +152,7 @@ <h3 style="margin-bottom: 20px; font-family: var(--font-primary);">Put Quick Det
<div class="input-group">
<label for="message">Project Requirements:</label>
</div>
<a href="/contact" target="_blank" class="btn primary glow-btn"
<a href="/contact" class="btn primary glow-btn"
style="width: 100%; border: none; cursor: pointer;">
Go to Contact Form <i class="fas fa-paper-plane" style="margin-left: 8px;"></i>
</a>
Expand Down
30 changes: 24 additions & 6 deletions css/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -689,8 +689,7 @@ body.dark .section-title {
font-size: 1.3rem;
margin-bottom: 12px;
font-weight: 600;
color: #ffffff;
font-family: var(--font-primary);
color: var(--color-primary);
}

.site-footer p {
Expand Down Expand Up @@ -879,19 +878,36 @@ body.dark .section-title {
width: 100%;
}

/* --- QUICK LINKS MOBILE FIX --- */
.footer-links {
text-align: left;
text-align: left !important;
width: 100%;
}

.right-align-divider {
margin-left: 0 !important;
margin-right: auto;
}

.quick-links-list {
display: flex;
flex-direction: column;
align-items: flex-start;
padding-left: 0;
/* Strips any hidden browser padding */
margin-left: 0;
/* Reset divider to left for mobile */
}

/* Force the arrow to be permanently visible and in place on mobile */
.quick-links-list a i {
opacity: 1 !important;
transform: translateX(0) !important;
}

/* Completely disable the sliding hover effect for touch screens */
.quick-links-list a,
.quick-links-list a:hover {
transform: translateX(5px);
/* Move right instead of left on mobile */
transform: none !important;
}
}

Expand All @@ -912,6 +928,7 @@ body.dark .section-title {
margin-bottom: 0;
/* Overrides default spacing so it centers perfectly with the V */
font-size: 1.5rem;
margin-left: 5px;
}

.footer-logo {
Expand All @@ -921,6 +938,7 @@ body.dark .section-title {
object-fit: contain;
/* Optional: Gives your lime-green 'V' a tiny subtle glow against the dark background */
filter: drop-shadow(0 0 6px rgba(163, 230, 53, 0.4));
margin-bottom: -10px;
}

/* MSME Logo Alignment */
Expand Down
2 changes: 1 addition & 1 deletion services/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@
<a href="/services" class="dropdown-toggle active">Services</a>
<ul class="dropdown-menu glass-dropdown">
<li><a href="#services-offer">Offer Services</a></li>
<li><a href="#live-projects">Live</a></li>
<li><a href="#live-projects">Live Websites</a></li>
</ul>
</li>
<!-- New Expertise link -->
Expand Down
Loading