/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f2f2f2;
}

.contact {
    padding: 50px 100px;
}

#mybutton {
    position: fixed;
    top: 20px;
    left: 20px;
}

#mybutton .-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #00bcd4;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

#mybutton .-btn:hover {
    background: #0097a7;
}

.content {
    text-align: center;
    margin-bottom: 50px;
}

.content h2 {
    font-size: 36px;
    color: #333;
}

.content p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contactInfo, .contactForm {
    width: 48%;
}

.contactInfo .box {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contactInfo .box:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.contactInfo .icon {
    font-size: 40px;
    color: #00bcd4;
    margin-right: 20px;
}

.contactInfo .text h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 5px;
}

.contactInfo .text p {
    font-size: 16px;
    color: #666;
}

.contactForm form h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.contactForm .inputBox {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.contactForm .inputBox input, .contactForm .inputBox textarea {
    width: 100%;
    padding: 10px;
    background: #f2f2f2;
    border: none;
    outline: none;
    resize: none;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    transition: background 0.3s ease;
}

.contactForm .inputBox input:focus, .contactForm .inputBox textarea:focus {
    background: #e0e0e0;
}

.contactForm .inputBox span {
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 16px;
    color: #999;
    transition: 0.3s ease;
}

.contactForm .inputBox input:focus + span,
.contactForm .inputBox textarea:focus + span,
.contactForm .inputBox input:valid + span,
.contactForm .inputBox textarea:valid + span {
    top: -20px;
    left: 10px;
    color: #00bcd4;
    font-size: 12px;
}

.contactForm .inputBox input[type="submit"] {
    background: #00bcd4;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contactForm .inputBox input[type="submit"]:hover {
    background: #0097a7;
}

.download_pdf-btn .btn {
    display: inline-block;
    padding: 10px 20px;
    background: #00bcd4;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
    cursor: pointer;
}

.download_pdf-btn .btn:hover {
    background: #0097a7;
} */


/* Todo: making code attractive */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #1a202c;
    color: #e2e8f0;
}

.contact {
    padding: 50px 100px;
}

#mybutton {
    position: fixed;
    top: 20px;
    right: 20px;
}

#mybutton .-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #00bcd4;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
}

#mybutton .-btn:hover {
    background: #0097a7;
    transform: translateY(-5px);
}

.content {
    text-align: center;
    margin-bottom: 50px;
}

.content h2 {
    font-size: 36px;
    color: #e2e8f0;
}

.content p {
    font-size: 18px;
    color: #cbd5e0;
    line-height: 1.6;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contactInfo, .contactForm {
    width: 48%;
}

.contactInfo .box {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background: #2d3748;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contactInfo .box:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.contactInfo .icon {
    font-size: 40px;
    color: #00bcd4;
    margin-right: 20px;
}

.contactInfo .text h3 {
    font-size: 20px;
    color: #e2e8f0;
    margin-bottom: 5px;
}

contactInfo .text p {
    font-size: 16px;
    color: #cbd5e0;
}

.contactForm form h2 {
    font-size: 24px;
    color: #e2e8f0;
    margin-bottom: 20px;
}

.contactForm .inputBox {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.contactForm .inputBox input,
.contactForm .inputBox textarea {
    width: 100%;
    padding: 10px;
    background: #2d3748;
    border: none;
    outline: none;
    resize: none;
    border-radius: 5px;
    font-size: 16px;
    color: #e2e8f0;
    transition: background 0.3s ease;
}

.contactForm .inputBox input:focus,
.contactForm .inputBox textarea:focus {
    background: #4a5568;
}

.contactForm .inputBox span {
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 16px;
    color: #a0aec0;
    transition: 0.3s ease;
}

.contactForm .inputBox input:focus + span,
.contactForm .inputBox textarea:focus + span,
.contactForm .inputBox input:valid + span,
.contactForm .inputBox textarea:valid + span {
    top: -20px;
    left: 10px;
    color: #00bcd4;
    font-size: 12px;
}

.contactForm .inputBox input[type="submit"] {
    background: #00bcd4;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.contactForm .inputBox input[type="submit"]:hover {
    background: #0097a7;
    transform: translateY(-5px);
}

.download_pdf-btn .btn {
    display: inline-block;
    padding: 10px 20px;
    background: #00bcd4;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.download_pdf-btn .btn:hover {
    background: #0097a7;
    transform: translateY(-5px);
}

/* Existing CSS remains the same */

.mapSection {
    flex: 1;
    height: calc(4 * 160px); /* Assuming each block is 160px in height */
    background-color: #2d3748;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.mapSection:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 24px;
}

.mapSection:hover:before {
    transform: translate(-50%, -50%) rotate(360deg);
    transition: transform 1s ease;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align items to the top */
    flex-wrap: wrap; /* Allow items to wrap */
}

.contactInfo, .contactForm {
    width: calc(50% - 20px); /* Adjust width to fit in the container with margin */
}

.mapSection {
    width: calc(50% - 20px); /* Adjust width to fit in the container with margin */
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .contactInfo, .contactForm, .mapSection {
        width: 100%; /* Set width to 100% on smaller screens */
    }
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align items to the top */
    flex-wrap: wrap; /* Allow items to wrap */
}

.contactInfo {
    width: calc(50% - 20px); /* Adjust width to fit in the container with margin */
    margin-bottom: 20px;
}

.mapAndContactForm {
    width: calc(50% - 20px); /* Adjust width to fit in the container with margin */
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.mapSection {
    height: 300px; /* Adjust as needed */
    background-color: #2d3748;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.contactForm {
    /* Styles for the contact form */
}

@media screen and (max-width: 768px) {
    .contactInfo, .mapAndContactForm {
        width: 100%; /* Set width to 100% on smaller screens */
    }
}

.mapSection {
    width: 100%; /* Occupy full width */
    height: 300px; /* Keep the height unchanged */
    background-color: #2d3748;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.contactForm {
    width: 100%; /* Occupy full width */
    /* Styles for the contact form */
}
