Skip to content

Commit

Permalink
Merge pull request #120 from rutikakengal/Work-with-Us-Page-Added-
Browse files Browse the repository at this point in the history
Added Work with Us Page
  • Loading branch information
vishantrathi authored Feb 2, 2025
2 parents 25d69d0 + 8744ff7 commit 9bfadf2
Show file tree
Hide file tree
Showing 4 changed files with 655 additions and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ <h2 style="font-size: 16px; margin-bottom: 8px;">Quick Links</h2>
<ul style="list-style: none; padding: 0;">
<li><a href="about.html" style="color: white; text-decoration: none; font-size: 14px;">Who We Are</a></li>
<li><a href="#" style="color: white; text-decoration: none; font-size: 14px;">Blog</a></li>
<li><a href="#" style="color: white; text-decoration: none; font-size: 14px;">Work With Us</a></li>
<li><a href="workwithus.html" style="color: white; text-decoration: none; font-size: 14px;">Work With Us</a></li>
<li><a href="#" style="color: white; text-decoration: none; font-size: 14px;">Investor Relations</a></li>
<li><a href="contact.html" style="color: white; text-decoration: none; font-size: 14px;">Contact Us</a></li>
</ul>
Expand Down
338 changes: 338 additions & 0 deletions workwithus.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,338 @@
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #fff;
color: #333;
}


/* Mobile View Adjustments */
@media (max-width: 768px) {
.navbar-nav {
flex-direction: column;
align-items: flex-start;
padding-left: 1rem;
}

.nav-item {
margin: 5px 0; /* Add vertical spacing for mobile view */
}

.dropdown-menu {
width: 100%; /* Full width for mobile dropdowns */
}
}

/* Meal Plan Link */
.nav-item.meal-plan a {
display: flex;
align-items: center;
padding: 8px 12px;
font-weight: 600;
font-size: 14px;
text-transform: uppercase;
color: rgb(0, 0, 0);
}

/* Red line effect on hover for Meal Plan */
.nav-item.meal-plan a::after {
content: '';
position: absolute;
width: 0;
height: 2px;
left: 50%;
bottom: 0;
background-color: red;
transition: width 0.3s ease, left 0.3s ease;
}

.nav-item.meal-plan a:hover::after {
width: 100%;
left: 0;
}

/* Dropdown Menu - Initially hidden */
.nav-item.dropdown .dropdown-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
z-index: 1000;
background-color: white;
border: 1px solid #ddd;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
display: block;
}

.dropdown-menu {
min-width: 180px; /* Optional, you can adjust the width */
}



#contact-us {
padding: 20px;
max-width: 800px;
margin: 50px auto;
background: #f9f9f9;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.contact-header h2 {
text-align: center;
margin-bottom: 20px;
color: black;
font-size: 2rem;
animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.contact-container {
display: flex;
justify-content: center;
}

.contact-form {
width: 100%;
}

form {
display: flex;
flex-direction: column;
align-items: center; /* Center all elements horizontally */
}

form label {
font-weight: bold;
margin-bottom: 5px;
margin-left: 10px;
width: 95%; /* Align labels to the same width as inputs */
}

form input, form textarea, form select {
margin-bottom: 15px;
padding: 12px;
font-size: 16px;
border: 2px solid black;
border-radius: 5px;
width: 95%;
transition: all 0.3s ease;
}

form input:focus, form textarea:focus, form select:focus {
border-color: #302e2d;
box-shadow: 0 0 10px black;
}

form textarea {
resize: none;
height: 120px;
}

form button {
background-color: black;
color: white;
border: none;
cursor: pointer;
padding: 12px 30px; /* Reduced padding for smaller size */
font-size: 14px; /* Slightly smaller font size */
font-weight: bold;
border-radius: 25px;
transition: all 0.3s ease;
text-align: center; /* Ensure button text is centered */
}

form button:hover {
background-color: #3f3b3a;
transform: scale(1.1);
}

form button:active {
transform: scale(0.95);
}

.contact-header {
margin-bottom: 30px;
}

@media (max-width: 768px) {
form button {
width: auto;
}
}




/* Success Animation Container */
.success-animation {
text-align: center;
margin: 50px auto;
padding: 20px;
max-width: 500px;
background-color: #f9fff9;
border: 1px solid #d4f0d4;
border-radius: 8px;
position: relative;
animation: fadeIn 0.6s ease-out;
}

/* Green Tick Styling */
.green-tick {
width: 60px;
height: 60px;
margin: 0 auto 20px;
background: rgb(69, 68, 68) !important; /* Ensures Bootstrap doesn't override */
color: white !important; /* Keeps the text white */
font-size: 36px !important;
font-weight: bold;
line-height: 60px;
text-align: center;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}

/* Success Message Styling */
.success-message {
font-size: 18px;
color: #5d665d !important;
text-align: center;
margin: 10px 0;
line-height: 1.5;
}

/* Go Back Button Styling */
.go-back-btn {
display: block;
margin: 20px auto;
padding: 10px 20px;
font-size: 16px;
color: white !important;
background-color: #232425 !important;
border: none !important;
border-radius: 5px;
cursor: pointer;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
transition: background-color 0.3s ease, transform 0.2s ease;
}

.go-back-btn:hover {
background-color: #252628 !important;
transform: scale(1.05);
}

.go-back-btn:active {
transform: scale(1);
}

/* Success Message */
.success-message {
font-size: 18px;
color: #242724;
font-weight: bold;
}

.success-note {
font-size: 16px;
color: black;
}


/* Fade-in Animation */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}




/* Footer Styling */
footer {
background-color: #f8f9fa;
padding: 40px 0;
font-family: 'Arial', sans-serif;
color: #6c757d;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
/* max-width: 1200px; */
margin: auto 20px;
padding: 20px;
box-sizing: border-box;
border-radius: 8px;
/* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.footer-section {
margin: 20px;
}

.footer-section h2 {
font-size: 18px;
font-weight: bold;
margin-bottom: 20px;
}

.footer-section ul {
list-style: none;
padding: 0;
}

.footer-section ul li {
margin-bottom: 10px;
}

.footer-section ul li a {
text-decoration: none;
color: #6c757d;
font-size: 14px;
}

.footer-section ul li a:hover {
color: #000;
}

.social-icons {
display: flex;
gap: 10px;
}

.social-icons li {
list-style: none;
}

.social-icons li a {
font-size: 20px;
color: #6c757d;
}

Loading

0 comments on commit 9bfadf2

Please sign in to comment.