﻿/* Style only the left contact section (col-lg-7) */
    .contactUs .contentBox {
        padding: 0;
        width: 100%;
    }

    /* Top text box styling - "Get in Touch" section */
    .contactUs .contentBox .toptextBox {
        background: linear-gradient(135deg, var(--light-blue) 0%, #ffffff 100%);
        border-radius: 16px;
        padding: 40px;
        margin-bottom: 30px;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        position: relative;
        overflow: hidden;
    }

    .contactUs .contentBox .toptextBox::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(0, 83, 149, 0.05) 0%, transparent 70%);
        z-index: 0;
    }

    .contactUs .contentBox .toptextBox > * {
        position: relative;
        z-index: 1;
    }

    .contactUs .contentBox .toptextBox p {
        font-size: 18px;
        color: var(--gray-color);
        margin-bottom: 15px;
        line-height: 1.8;
    }

    .contactUs .contentBox .toptextBox p:first-child {
        font-size: 20px;
        font-weight: 500;
        color: var(--heading-text);
        margin-bottom: 20px;
    }

    .contactUs .contentBox .toptextBox p:last-child {
        margin-bottom: 0;
    }

    .contactUs .contentBox .toptextBox a {
        color: var(--blue-color) !important;
        text-decoration: none;
        font-weight: 600;
        font-size: 18px;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 8px 16px;
        border-radius: 8px;
    }

    .contactUs .contentBox .toptextBox a i {
        font-size: 18px;
    }

    .contactUs .contentBox .toptextBox a:hover {
        color: var(--white-color) !important;
        background: var(--blue-color);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 83, 149, 0.3);
    }

    /* Center text box container */
    .contactUs .contentBox .centerTextbox {
        display: flex;
        flex-direction: column;
        gap: 25px;
        width: 100%;
    }

    /* Individual box styling */
    .contactUs .contentBox .centerTextbox .box-box {
        background: var(--white-color);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 45px 40px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        min-height: 180px;
        width: 100%;
        box-sizing: border-box;
    }

    .contactUs .contentBox .centerTextbox .box-box:hover {
        border-color: var(--blue-color);
        box-shadow: 0 8px 25px rgba(0, 83, 149, 0.1);
        transform: translateY(-3px);
    }

    .contactUs .contentBox .centerTextbox .box-box h6 {
        font-size: 24px;
        font-weight: 600;
        color: var(--heading-text);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .contactUs .contentBox .centerTextbox .box-box h6 i {
        color: var(--blue-color);
        font-size: 24px;
        width: 30px;
        text-align: center;
    }

    .contactUs .contentBox .centerTextbox .box-box p {
        font-size: 17px;
        color: var(--gray-color);
        line-height: 1.9;
        margin: 0;
    }

    /* Responsive adjustments */
    @media (max-width: 991px) {
        .contactUs .contentBox .toptextBox {
            padding: 30px 25px;
            margin-bottom: 25px;
        }

        .contactUs .contentBox .toptextBox p:first-child {
            font-size: 18px;
        }

        .contactUs .contentBox .toptextBox a {
            font-size: 16px;
        }

        .contactUs .contentBox .centerTextbox .box-box {
            padding: 35px 30px;
            min-height: 160px;
        }

        .contactUs .contentBox .centerTextbox .box-box h6 {
            font-size: 22px;
            margin-bottom: 18px;
        }

        .contactUs .contentBox .centerTextbox .box-box p {
            font-size: 16px;
        }
    }

    @media (max-width: 767px) {
        .contactUs .contentBox .toptextBox {
            padding: 25px 20px;
        }

        .contactUs .contentBox .toptextBox p:first-child {
            font-size: 16px;
        }

        .contactUs .contentBox .toptextBox a {
            font-size: 14px;
            padding: 6px 12px;
        }

        .contactUs .contentBox .centerTextbox .box-box {
            padding: 30px 25px;
            min-height: 150px;
        }

        .contactUs .contentBox .centerTextbox .box-box h6 {
            font-size: 20px;
            margin-bottom: 15px;
        }

        .contactUs .contentBox .centerTextbox .box-box p {
            font-size: 15px;
        }
    }
