.countus_tittle {
    margin-bottom: 8px;
}

.countus_tittle h1 {
    font-size: 52px;
    line-height: 1.15;
}

.countus_paragraph {
    max-width: 750px;
    margin-top: 20px;
    margin-bottom: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.contactus_boxes {
    margin-top: 54px;
    margin-bottom: 72px;
}

.contactus_boxes .row {
    --bs-gutter-x: 26px;
    --bs-gutter-y: 26px;
    align-items: stretch;
}

.contactus_boxes [class*="col-"] {
    display: flex;
}

.contact_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #FFFFFF;
    box-shadow: 0 15px 45px rgba(0, 63, 125, 0.05);
    border: 1px solid rgba(0, 63, 125, 0.08);
    border-radius: 30px;
    padding: 62px 30px 34px;
    width: 100%;
    height: 100%;
    min-height: 270px;
    margin-top: 28px; /* Space for the floating icon */
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: visible; /* Allow icon to break outside */
    z-index: 1;
}

.contact_box::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--primary-color, #003F7D);
    transition: width 0.4s ease;
    border-radius: 4px 4px 0 0;
}

.contact_box:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 63, 125, 0.12);
    border-color: rgba(255, 80, 3, 0.2);
}

.contact_box:hover::after {
    width: 80%;
}

.contact_box img {
    height: 72px;
    width: 72px;
    object-fit: contain;
    background: #ffffff;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 10px 25px rgba(0, 63, 125, 0.1);
    position: absolute;
    top: -34px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 63, 125, 0.05);
}

.contact_box:hover img {
    transform: translateX(-50%) translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 80, 3, 0.15);
    border-color: rgba(255, 80, 3, 0.2);
}

.contactus_boxes h6 {
    color: var(--primary-color, #003F7D);
    margin-top: 8px;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0;
}

.contact_box p {
    text-align: center;
    margin-top: 14px;
    margin-bottom: 0;
    color: var(--paragraph-color, #767676);
    line-height: 1.6;
    max-width: 100%;
}

.contact_box p a {
    color: inherit !important;
    display: block;
    text-align: center;
}

.contact_box .sp {
    margin-top: 18px;
    word-break: break-word;
}

.dropus_msg {
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 63, 125, 0.08);
    border-radius: 32px;
    padding: 60px 70px;
    margin-top: 20px;
    border: 1px solid rgba(0, 63, 125, 0.06);
    position: relative;
    overflow: hidden;
}

.dropus_msg::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 63, 125, 0.04) 0%, rgba(0, 63, 125, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.dropus_msg::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 80, 3, 0.04) 0%, rgba(255, 80, 3, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.dropus_msg .row {
    position: relative;
    z-index: 1;
}

.dropus_msg h4 {
    margin-bottom: 35px;
    color: var(--primary-color, #003F7D);
    font-weight: 700;
    font-size: 26px;
}

.msg_contact_form .form-control {
    display: block;
    width: 100%;
    height: auto;
    padding: 18px 24px;
    font-size: 15px;
    color: #333;
    background-color: rgba(0, 63, 125, 0.02);
    border: 1px solid rgba(0, 63, 125, 0.08);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 22px;
}

.msg_contact_form .form-control:focus {
    background-color: #FFF;
    border-color: var(--secondary-color, #E37434);
    outline: 0;
    box-shadow: 0 10px 20px rgba(255, 80, 3, 0.1);
    transform: translateY(-2px);
}

.msg_contact_form .btn-common {
    background: linear-gradient(135deg, var(--secondary-color, #E37434) 0%, #E37434 100%);
    color: #fff;
    padding: 16px 40px;
    border-radius: 14px;
    border: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(255, 80, 3, 0.3);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

.msg_contact_form .btn-common:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 80, 3, 0.4);
}

.msg_contact_address p {
    max-width: 376px;
    margin-bottom: 30px;
    color: var(--paragraph-color, #767676);
}

.communication_address-icon {
    margin-bottom: 25px;
    padding: 25px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 63, 125, 0.05);
    box-shadow: 0 10px 30px rgba(0, 63, 125, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.communication_address-icon:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 63, 125, 0.08);
    border-color: rgba(0, 63, 125, 0.1);
}

.communication_add {
    display: flex;
    align-items: center;
}

.communication_add h6 {
    margin-left: 15px;
    color: var(--primary-color, #003F7D);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 0;
}

.ca_p {
    max-width: 402px;
    margin-left: 45px;
    margin-top: 10px;
    color: var(--paragraph-color, #767676);
    line-height: 1.6;
}

.communication_address-icon .ca_p.sp {
    margin-top: 12px;
}

.communication_address-icon .ca_p.sp a,
.communication_address-icon .ca_p a {
    color: var(--primary-color, #003F7D) !important;
    font-weight: 600;
    text-decoration: none;
    opacity: 1;
    word-break: break-word;
}

.communication_address-icon .ca_p.sp a:hover,
.communication_address-icon .ca_p a:hover {
    color: var(--secondary-color, #E37434) !important;
}

i.fa-brands {
    background: #DDEFFF;
    color: #003F7D;
    border-radius: 126px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: all 0.2s ease-in;
}

i.fa-brands:hover {
    background: #003F7D;
    color: #ffffff;
    transform: scale(1.1);
}

.social_media_contact {
    display: flex;
    align-items: center;
    margin-top: 40px;
}

@media (max-width: 767px) {
    .dropus_msg .col-md-6 {
        width: 100%;
    }

    .msg_contact_address,
    .communication_address,
    .communication_address-icon {
        width: 100%;
        max-width: 100%;
    }

    .communication_address-icon {
        box-sizing: border-box;
        padding: 16px 14px;
    }

    .communication_add {
        align-items: flex-start;
        width: 100%;
    }

    .communication_add h6 {
        flex: 1 1 auto;
        min-width: 0;
        margin-left: 10px;
        font-size: 15px;
        line-height: 1.25;
    }

    .ca_p {
        margin-left: 0;
        margin-top: 12px;
        max-width: 100%;
        width: 100%;
        font-size: 14px;
        line-height: 1.55;
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .communication_address-icon .ca_p.sp a,
    .communication_address-icon .ca_p a {
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}

@media (max-width: 420px) {
    .dropus_msg {
        padding: 24px 14px;
    }

    .dropus_msg h4 {
        font-size: 17px;
        line-height: 1.24;
    }

    .msg_contact_address p {
        font-size: 13px;
        line-height: 1.55;
    }

    .communication_add h6 {
        font-size: 14px;
    }

    .ca_p {
        font-size: 13px;
        line-height: 1.5;
    }

    .msg_contact_form .form-control {
        font-size: 13px;
        padding: 13px 14px;
    }
}

/* Unified button curve */
.msg_contact_form .btn-common,
.contact_us_form .btn-common {
    border-radius: 14px !important;
}
