.body {
    width: 100%;
}

.page_layout {
    width: 100%;
    padding-top: 80px;
}
.first_section_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    padding-left: 20PX;
    padding-right: 20px;
}
.first_section_content {
    max-width: 500px;
    margin-top: 5%;
    margin-bottom: 5%;
}
.first_section_header {
    font-family: Plus Jakarta Sans;
    font-weight: 700;
    font-size: 36px;
    color: #101828;
}
/* For smaller screens */
@media (max-width: 768px) {
    .first_section_header {
        font-size: 22px;
    }
}

.name_container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
}

.firstname_container {
    display: flex;
    flex-direction: column;
}
.form-label {
    font-family: Inter;
    font-weight: 500;
    font-size: 14px;
    color: #344054;
}
.form_input {
    border-radius: 8px;
    border: 1px solid #D0D5DD;
    height: 44px;
    padding: 10px 14px 10px 14px;
    background-color: #FFFFFF;
    outline: none;
}
.companyname_container {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .name_container {
        justify-content: center;
    }
    .firstname_container {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
}
.phone_number_container {
    border-radius: 8px;
    border: 1px solid #D0D5DD;
    height: 44px;
    padding: 10px 14px 10px 14px;
}
.country_select {
    border: none;
    background-color: #FFFFFF;
    outline: none;
}
.phone_number_input {
    border: none;
    outline: none;
}
.selection_input {
    border-radius: 8px;
    border: 1px solid #D0D5DD;
    height: 44px;
    padding: 10px 14px 10px 14px;
    background-color: #FFFFFF;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="none" stroke="%23344054" stroke-width="1.1" d="M0 0l2 2.5L4 0"/></svg>') no-repeat right 10px center;  /* Custom arrow icon */
    -webkit-appearance: none;  /* Remove default arrow in Safari */
    -moz-appearance: none;     /* Remove default arrow in Firefox */
    appearance: none;          /* Remove default arrow in other browsers */
    background-color: #FFFFFF;
    background-position-x: calc(100% - 10px);  /* Adjust position of the custom arrow */
    background-size: 8px 8px;
    outline: none;
}
.textarea_form_input {
    border-radius: 8px;
    border: 1px solid #D0D5DD;
    height: 134px;
    padding: 10px 14px 10px 14px;
    background-color: #FFFFFF;
    outline: none;
}
.form_submit_button {
    margin-top: 10%;
}
.button_submit {
    width: 100%;
    height: 48px;
    border-radius: 8px;
    background-color: #FF4B05;
    border: none;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 16px;
    font-family: Inter;
}
.second_section_container {
    background-color: #EAECF0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5%;
}
.second_section_primary_text {
    font-family: Inter;
    font-weight: 600;
    font-size: 16px;
    color: #C72607;
}
.second_section_title {
    font-family: Plus Jakarta Sans;
    font-weight: bold;
    font-size: 48px;
    color: #101828;
    text-align: center;
}
@media (max-width: 768px) {
    .second_section_title {
        font-size: 20px;
    }

}
/* .map_container {
    width: 100%;
    margin-top: 8%;
}
.map_image {
    width: 100%;
   
} */
.map-container {
    position: relative;
    width: 100%;
    background: url('/assets/map.png') no-repeat center center;;
    background-size: contain;
}

.world-map {
    width: 100%;
    height: auto;
}

.dot {
    fill: #bbb;
    opacity: 0.8;
}

.highlight-dot {
    fill: #FF4B05;
    pointer-events: all;
    cursor: pointer;
}

.contactus-support-conatiner{
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    width: 100%;
}

.support-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.support-container>span:nth-child(1){
    font-family: 'Inter';
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #101828;
}

.support-container>span:nth-child(2){
    font-family: 'Inter';
    color: #475467;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;

}

.support-container>span:nth-child(3){
    font-weight: 600;
    font-family: 'Inter';
    font-size: 16px;
    line-height: 24px;
    color: #C72607;
    padding-top: 10px;
}

@media (max-width: 768px) {
    .map-container {
        display: none !important;
    }
    .contactus-support-conatiner {
        grid-template-columns: 1fr;
        gap: 6%;
    }
    .contactus-support-conatiner {
        margin-top: 4%;
        margin-bottom: 4%;
    }
    .support-container {
        margin-top: 3%;
    }
}
/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    transition: transform 0.2s;

}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 10px;
    border: 1px solid #888;
    width: 80%;
    max-width: 210px;
    color: #000;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    align-self: flex-start;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.India_flag {
    width: 20px;
    height: 20px;
    margin-top: 15px;
}
.modal_title {
    font-size: 12px;
    font-family: Inter;
    font-weight: 600;
    color: #101828;
}
.modal_text {
    font-size: 12px;
    font-family: Inter;
    font-weight: 6400;
    color: #475467;
    text-align: center;
}