Skip to content

Commit

Permalink
Merge pull request PriyaGhosal#1113 from saloni8780/new
Browse files Browse the repository at this point in the history
IMPROVED GET IN TOUCH
  • Loading branch information
PriyaGhosal authored Oct 21, 2024
2 parents e0add81 + 7d0f141 commit 22b9b6a
Show file tree
Hide file tree
Showing 2 changed files with 144 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1461,4 +1461,4 @@ If you find this project helpful, please consider giving it a ⭐ on GitHub! You
<!--Line-->
<img src="https://user-images.githubusercontent.com/74038190/212284100-561aa473-3905-4a80-b561-0d28506553ee.gif" width="900">

# Thanks for reading!!!
# Thanks for reading!!!
144 changes: 143 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2107,7 +2107,149 @@ <h3>Send Us a Message</h3>
</div>
</div>
</section>

<style>
/* General Section Styles */
.contact-section {
background-color: #f9f9f9;
padding: 50px 0;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}

.section-title {
text-align: center;
font-size: 36px;
font-weight: bold;
color: #333;
margin-bottom: 40px;
}

/* Grid Layout for Contact Info and Form */
.contact-grid {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}

.contact-info, .contact-form {
background-color: #fff;
padding: 20px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
border-radius: 8px;
width: 48%;
}

.contact-form {
width: 48%;
}

/* Contact Info Item */
.info-item {
display: flex;
align-items: center;
margin-bottom: 20px;
}

.info-icon {
width: 40px;
height: 40px;
margin-right: 20px;
color: #1a73e8;
}

.info-content h3 {
font-size: 18px;
font-weight: bold;
color: #333;
margin-bottom: 5px;
}

.info-content p {
font-size: 16px;
color: #666;
margin: 0;
}

/* About BuddyTrail */
.about-buddytrail {
margin-top: 30px;
}

.about-buddytrail h3 {
font-size: 20px;
font-weight: bold;
color: #ffffff;
}

.about-buddytrail p {
font-size: 16px;
color: #fefefe;
}

/* Contact Form */
.contact-form h3 {
font-size: 20px;
font-weight: bold;
margin-bottom: 20px;
color: #333;
}

.form-group {
margin-bottom: 20px;
}

.form-control {
width: 100%;
padding: 10px;
font-size: 16px;
color: #ffffff;
border: 1px solid #ddd;
border-radius: 5px;
background-color: #f9f9f9;
outline: none;
}

.form-control:focus {
border-color: #1a73e8;
}

textarea.form-control {
resize: none;
}

.btn-submit {
background-color: #1a73e8;
color: #fff;
font-weight: bold;
padding: 10px 20px;
font-size: 16px;
border: none;
border-radius: 5px;
cursor: pointer;
}

.btn-submit:hover {
background-color: #155ab7;
}

/* Responsive Styles */
@media (max-width: 768px) {
.contact-grid {
flex-direction: column;
}

.contact-info, .contact-form {
width: 100%;
margin-bottom: 30px;
}
}


</style>

<!-- Add this custom popup HTML -->
<div id="confirmationPopup" class="popup" style="display: none;">
Expand Down

0 comments on commit 22b9b6a

Please sign in to comment.