Search for:

Contact Us

We would love to hear from you. Whether you have a question about our services, need assistance, or just want to say hello, our team is ready to help.

Our Address

123 Business Avenue, Suite 456
Dhaka, Bangladesh

Call Us

+880 1XXX-XXXXXX

Send Us a Message


.contact-page-container {
max-width: 1200px;
margin: 0 auto;
padding: 40px 20px;
font-family: sans-serif;
color: #333;
}
.contact-header {
text-align: center;
margin-bottom: 50px;
}
.contact-header h1 {
font-size: 2.5rem;
margin-bottom: 10px;
}
.contact-content-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
}
@media (max-width: 768px) {
.contact-content-wrapper {
grid-template-columns: 1fr;
}
}
.info-group {
margin-bottom: 30px;
}
.info-group h2 {
font-size: 1.5rem;
margin-bottom: 10px;
color: #0056b3;
}
.contact-form {
background: #f9f9f9;
padding: 30px;
border-radius: 8px;
}
.contact-form h2 {
margin-top: 0;
margin-bottom: 20px;
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
.form-group input,
.form-group textarea {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
font-size: 1rem;
}
.btn-submit {
background-color: #0056b3;
color: white;
padding: 12px 30px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 1rem;
transition: background 0.3s ease;
}
.btn-submit:hover {
background-color: #004494;
}