/* =========================================================
   U.A. INTERNATIONAL
   RED + WHITE CORPORATE WEBSITE
   ========================================================= */

:root {
    --red: #c90000;
    --dark-red: #920000;
    --light-red: #fff2f2;
    --white: #ffffff;
    --black: #151515;
    --text: #555555;
    --light: #f8f8f8;
    --border: #e8e8e8;

    --shadow:
        0 10px 35px rgba(0, 0, 0, 0.08);

    --red-shadow:
        0 10px 30px rgba(201, 0, 0, 0.20);

    --radius: 10px;

    --transition:
        all 0.3s ease;
}


/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);
    background: var(--white);

    font-size: 15px;
    line-height: 1.7;

    overflow-x: hidden;
}

body.menu-open,
body.popup-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

.container-fluid {
    width: 100%;
    padding: 0 30px;
}


/* =========================================================
   TOP HEADER
   ========================================================= */

.header-top {
    background: var(--red);
    color: var(--white);

    position: relative;
    z-index: 9999;
}

.header-inner {
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.approved-govt,
.upload-resume {
    display: flex;
    align-items: center;
    gap: 10px;
}

.approved-1 {
    font-size: 12px;
}

.approved-2 a {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
}

.approved-2 a:hover {
    color: #ffe2e2;
}

.upload-resume {
    gap: 15px;
}

.upload-resume p {
    margin: 0;
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
}

.upload-resume > a {
    padding: 7px 13px;

    background: var(--white);
    color: var(--red);

    border-radius: 5px;

    font-size: 12px;
    font-weight: 700;
}

.upload-resume > a:hover {
    background: var(--black);
    color: var(--white);
}


/* =========================================================
   LANGUAGE
   ========================================================= */

.google-translate {
    position: relative;
    z-index: 99999;
}

.lang-dropdown {
    position: relative;
}

.lang-btn {
    min-width: 85px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    padding: 7px 10px;

    background: var(--white);
    color: var(--black);

    border: 0;
    border-radius: 5px;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;
}

.lang-btn i {
    font-size: 9px;
}

.flag {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border: 1px solid #ddd;
}

.lang-menu {
    position: absolute;

    top: calc(100% + 7px);
    right: 0;

    width: 220px;
    max-height: 330px;

    padding: 8px;

    background: var(--white);

    border-radius: 8px;
    border: 1px solid var(--border);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.20);

    overflow-y: auto;

    display: none;
}

.lang-menu.active {
    display: block;
}

.lang-search {
    width: 100%;

    padding: 9px 10px;

    margin-bottom: 7px;

    border: 1px solid var(--border);
    border-radius: 5px;

    outline: none;
}

.lang-search:focus {
    border-color: var(--red);
}

.lang-item {
    display: flex;
    align-items: center;

    gap: 8px;

    padding: 8px;

    border-radius: 5px;

    color: var(--black);

    font-size: 13px;

    cursor: pointer;
}

.lang-item:hover {
    background: var(--light-red);
    color: var(--red);
}


/* =========================================================
   MAIN HEADER
   ========================================================= */

.main-header {
    background: var(--white);

    position: sticky;
    top: 0;

    z-index: 9998;

    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar {
    max-width: 1400px;
    min-height: 82px;

    margin: auto;
    padding: 0 25px;

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

.logo {
    flex-shrink: 0;
}

.hrilogo {
    width: 165px;
    height: auto;
}


/* =========================================================
   DESKTOP NAV
   ========================================================= */

.nav-links {
    margin-left: auto;
}

.links {
    display: flex;
    align-items: center;
    gap: 2px;
}

.links > li {
    position: relative;
}

.links > li > a {
    min-height: 82px;

    display: flex;
    align-items: center;

    padding: 0 12px;

    color: var(--black);

    font-size: 13px;
    font-weight: 600;

    white-space: nowrap;
}

.links > li > a:hover {
    color: var(--red);
}

.arrow {
    margin-left: 6px;
    font-size: 11px;

    transition: var(--transition);
}

.links > li:hover > a .arrow {
    transform: rotate(180deg);
}


/* =========================================================
   DESKTOP DROPDOWN
   ========================================================= */

.sub-menu {
    position: absolute;

    top: 100%;
    left: 0;

    min-width: 240px;

    background: var(--white);

    border-top: 3px solid var(--red);

    border-radius:
        0 0
        8px 8px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.15);

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(10px);

    transition: var(--transition);

    z-index: 99999;
}

.links > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;

    transform:
        translateY(0);
}

.sub-menu li {
    position: relative;
}

.sub-menu li > a {
    min-height: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    padding: 10px 15px;

    color: var(--black);

    font-size: 13px;
    line-height: 1.4;
}

.sub-menu li > a:hover {
    background: var(--red);
    color: var(--white);
}


/* Nested menu */

.nested-menu {
    top: -3px;
    left: 100%;

    transform:
        translateX(10px);
}

.has-submenu:hover > .nested-menu {
    opacity: 1;
    visibility: visible;

    transform:
        translateX(0);
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.mobile-menu-btn {
    display: none;

    border: 0;
    background: transparent;

    color: var(--red);

    font-size: 30px;

    cursor: pointer;
}

.sidebar-logo {
    display: none;
}

.mobile-close-btn {
    border: 0;
    background: transparent;

    color: var(--red);

    font-size: 30px;

    cursor: pointer;
}


/* =========================================================
   MARQUEE
   ========================================================= */

.marquee-slider {
    background: var(--light-red);

    border-top: 1px solid #ffd2d2;
    border-bottom: 1px solid #ffd2d2;

    overflow: hidden;
}

.marquee-inner {
    min-height: 42px;

    display: flex;
    align-items: center;

    gap: 12px;

    max-width: 1400px;

    margin: auto;

    padding: 8px 20px;

    color: var(--red);

    font-size: 13px;
    font-weight: 600;
}

.marquee-inner > i {
    flex-shrink: 0;
    color: var(--red);
}

.marquee-content {
    white-space: nowrap;

    animation:
        marquee 28s linear infinite;
}

.marquee-content a {
    color: var(--dark-red);
    font-weight: 800;
}

.separator {
    margin: 0 12px;
}

@keyframes marquee {

    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }

}


/* =========================================================
   SERVICES
   ========================================================= */

.service-section {
    padding: 85px 0;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fffafa 100%
        );
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.section-heading {
    text-align: center;

    margin-bottom: 45px;
}

.section-label {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--red);

    font-size: 13px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-heading h1,
.about-content h2 {
    margin: 0;

    color: var(--black);

    font-size: 36px;
    line-height: 1.25;

    font-weight: 800;
}

.section-heading h1 span,
.about-content h2 span {
    color: var(--red);
}

.section-heading h1::after,
.about-content h2::after {
    content: "";

    display: block;

    width: 55px;
    height: 4px;

    margin: 15px auto 0;

    background: var(--red);

    border-radius: 10px;
}

.section-heading p {
    margin-top: 15px;

    color: var(--black);

    font-size: 19px;
    font-weight: 700;
}

.employer-heading {
    margin-top: 75px;
    margin-bottom: 30px;
}


/* =========================================================
   SERVICE GRID
   ========================================================= */

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;
}


/* =========================================================
   SERVICE CARD
   ========================================================= */

.service-card {
    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    overflow: hidden;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.05);

    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: #ffc2c2;

    box-shadow:
        var(--red-shadow);
}

.service-image {
    height: 210px;

    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-content {
    padding: 22px;

    text-align: center;
}

.service-content h3 {
    min-height: 50px;

    margin-bottom: 8px;

    color: var(--black);

    font-size: 18px;
    line-height: 1.4;

    font-weight: 700;
}

.service-card:hover h3 {
    color: var(--red);
}

.service-content p {
    min-height: 48px;

    margin-bottom: 15px;

    color: #777;

    font-size: 13px;
}

.service-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 9px 17px;

    background: var(--red);
    color: var(--white);

    border-radius: 5px;

    font-size: 12px;
    font-weight: 700;

    transition: var(--transition);
}

.service-link:hover {
    background: var(--dark-red);

    transform:
        translateX(3px);
}


/* =========================================================
   U.A. INTERNATIONAL - ABOUT SECTION
   CLEAN CSS
========================================================= */

.about-section {
    padding: 80px 0;
    background: #ffffff;
}


/* =========================================================
   SECTION HEADING
========================================================= */

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

.about-heading .section-label {
    display: block;
    margin-bottom: 10px;
    color: var(--red);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-heading h1 {
    margin: 0;
    color: var(--black);
    font-size: 38px;
    line-height: 1.3;
    font-weight: 800;
}

.about-heading h1 span {
    color: var(--red);
}

.about-heading p {
    max-width: 650px;
    margin: 15px auto 0;
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
}

.about-heading h1::after {
    content: "";
    display: block;
    width: 55px;
    height: 4px;
    margin: 15px auto 0;
    background: var(--red);
    border-radius: 5px;
}


/* =========================================================
   ABOUT CONTENT
========================================================= */

.about-content {
    padding-right: 40px;
}

.about-content p {
    margin: 0 0 17px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.8;
}

.about-content p:last-of-type {
    margin-bottom: 25px;
}

.about-content strong {
    color: var(--black);
    font-weight: 700;
}


/* =========================================================
   BUTTONS
========================================================= */

.about-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.primary-btn,
.profile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 12px 23px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}


/* Primary Button */

.primary-btn {
    background: var(--red);
    color: #ffffff;
}

.primary-btn:hover {
    background: var(--black);
    color: #ffffff;
}

.primary-btn i,
.profile-btn i {
    transition: transform 0.3s ease;
}

.primary-btn:hover i {
    transform: translateX(4px);
}


/* Profile Button */

.profile-btn {
    background: #ffffff;
    color: var(--red);
    border: 1px solid var(--red);
}

.profile-btn:hover {
    background: var(--red);
    color: #ffffff;
}

.profile-btn:hover i {
    transform: translateY(-2px);
}


/* =========================================================
   RIGHT HIGHLIGHT BOX
========================================================= */

.about-highlight {
    position: relative;
    padding: 40px;
    background: #f8f8f8;
    border-left: 4px solid var(--red);
    border-radius: 5px;
    overflow: hidden;
}

.about-highlight::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -70px;
    bottom: -70px;
    border: 25px solid rgba(198, 30, 42, 0.06);
    border-radius: 50%;
}


/* =========================================================
   HIGHLIGHT ICON
========================================================= */

.highlight-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: var(--red);
    color: #ffffff;
    border-radius: 50%;
    font-size: 23px;
}

.about-highlight h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 15px;
    color: var(--black);
    font-size: 27px;
    line-height: 1.35;
    font-weight: 800;
}

.about-highlight h3 span {
    display: block;
    color: var(--red);
}

.about-highlight > p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--text);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   HIGHLIGHT STATS
========================================================= */

.highlight-stats {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 35px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #dddddd;
}

.highlight-stat {
    display: flex;
    flex-direction: column;
}

.highlight-stat strong {
    color: var(--red);
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
}

.highlight-stat span {
    margin-top: 5px;
    color: var(--text);
    font-size: 13px;
    line-height: 1.4;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .about-section {
        padding: 60px 0;
    }

    .about-heading {
        margin-bottom: 40px;
    }

    .about-heading h1 {
        font-size: 34px;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .about-highlight {
        padding: 35px;
    }

}


@media (max-width: 767px) {

    .about-section {
        padding: 50px 0;
    }

    .about-heading h1 {
        font-size: 29px;
    }

    .about-heading p {
        font-size: 14px;
    }

    .about-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .about-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .primary-btn,
    .profile-btn {
        width: 100%;
    }

    .about-highlight {
        padding: 30px 25px;
    }

    .about-highlight h3 {
        font-size: 24px;
    }

    .highlight-stats {
        gap: 25px;
    }

    .highlight-stat strong {
        font-size: 25px;
    }

}


/* =========================================================
   ABOUT IMAGE
   ========================================================= */

.about-image {
    display: flex;
    justify-content: center;
}

.image-frame {
    position: relative;

    width: 100%;
    max-width: 500px;
}

.image-frame > img {
    width: 100%;

    border-radius: 15px;

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.15);
}

.experience-badge {
    position: absolute;

    right: -20px;
    bottom: 25px;

    width: 125px;
    height: 125px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: var(--red);
    color: var(--white);

    border:
        7px solid
        var(--white);

    border-radius: 50%;

    box-shadow:
        0 10px 30px
        rgba(201, 0, 0, 0.25);

    text-align: center;
}

.experience-badge strong {
    font-size: 28px;
    line-height: 1;
}

.experience-badge span {
    margin-top: 5px;

    font-size: 10px;
    line-height: 1.3;

    text-transform: uppercase;
}


/* =========================================================
   POPUP
   ========================================================= */

.popup-overlay {
    position: fixed;

    inset: 0;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background:
        rgba(0, 0, 0, 0.78);

    z-index: 999999;
}

.popup-container {
    width: 100%;
    max-width: 950px;

    max-height: 92vh;

    display: grid;

    grid-template-columns:
        43% 57%;

    overflow: hidden;

    background: var(--white);

    border-radius: 12px;

    box-shadow:
        0 30px 80px
        rgba(0, 0, 0, 0.40);
}


/* Popup left */

.popup-left {
    padding: 45px 35px;

    background:
        linear-gradient(
            145deg,
            var(--red),
            var(--dark-red)
        );

    color: var(--white);
}

.popup-small-title {
    color: #ffdada;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}

.popup-left h2 {
    margin-top: 12px;
    margin-bottom: 20px;

    font-size: 32px;
    line-height: 1.2;
}

.popup-left h3 {
    font-size: 18px;
}

.popup-left h3 span {
    color: #ffe000;
}

.popup-left h4 {
    margin-bottom: 30px;

    font-size: 22px;
}

.feature {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    margin-bottom: 20px;

    font-size: 13px;
    line-height: 1.6;
}

.checkmark {
    width: 25px;
    height: 25px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--white);

    color: var(--red);

    border-radius: 50%;

    font-weight: 900;
}


/* Popup right */

.popup-right {
    position: relative;

    padding: 35px;

    background: var(--white);

    overflow-y: auto;
}

.close-btn {
    position: absolute;

    top: 12px;
    right: 15px;

    width: 35px;
    height: 35px;

    border: 0;

    border-radius: 50%;

    background: var(--red);
    color: var(--white);

    font-size: 24px;

    cursor: pointer;

    transition: var(--transition);
}

.close-btn:hover {
    background: var(--dark-red);

    transform:
        rotate(90deg);
}

.form-header {
    margin-bottom: 20px;
}

.form-header span {
    color: var(--red);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;
}

.form-header h3 {
    margin-top: 3px;

    color: var(--black);

    font-size: 25px;
}


/* =========================================================
   FORM
   ========================================================= */

.form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;

    margin-bottom: 6px;

    color: var(--black);

    font-size: 12px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 11px 12px;

    border:
        1px solid
        #ddd;

    border-radius: 5px;

    outline: none;

    background: var(--white);

    color: var(--black);

    font-size: 13px;

    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);

    box-shadow:
        0 0 0 3px
        rgba(201, 0, 0, 0.08);
}

.form-group textarea {
    min-height: 100px;

    resize: vertical;
}

.captcha-box {
    margin-bottom: 8px;
}

.captcha-box img {
    width: 150px;
    height: 50px;

    object-fit: contain;

    border:
        1px solid
        var(--border);
}

.submit-btn {
    width: 100%;

    padding: 13px;

    border: 0;
    border-radius: 5px;

    background: var(--red);
    color: var(--white);

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--dark-red);

    box-shadow:
        var(--red-shadow);
}

.footer-text {
    margin-top: 12px;

    color: #999;

    text-align: center;

    font-size: 10px;
}


/* =========================================================
   GOOGLE TRANSLATE HIDE
   ========================================================= */

#google_translate_element {
    display: none;
}

.goog-te-banner-frame {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
}

body {
    top: 0 !important;
}

.goog-text-highlight {
    background: transparent !important;
    box-shadow: none !important;
}


/* =========================================================
   SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-red);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1200px) {

    .links > li > a {
        padding-left: 8px;
        padding-right: 8px;

        font-size: 12px;
    }

    .hrilogo {
        width: 145px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }

    .header-inner {
        min-height: auto;

        padding:
            8px 0;

        flex-direction: column;

        gap: 8px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .navbar {
        min-height: 70px;

        padding:
            0 15px;
    }

    .nav-links {
        position: fixed;

        top: 0;
        right: -100%;

        width: 330px;
        max-width: 90%;

        height: 100vh;

        margin: 0;

        background: var(--white);

        box-shadow:
            -10px 0 35px
            rgba(0, 0, 0, 0.15);

        overflow-y: auto;

        transition:
            right 0.35s ease;

        z-index: 999999;
    }

    .nav-links.active {
        right: 0;
    }

    .sidebar-logo {
        height: 75px;

        padding: 0 20px;

        display: flex;

        align-items: center;
        justify-content: space-between;

        border-bottom:
            1px solid
            var(--border);
    }

    .sidebar-logo .hrilogo {
        width: 130px;
    }

    .links {
        display: block;
    }

    .links > li {
        border-bottom:
            1px solid
            #f1f1f1;
    }

    .links > li > a {
        min-height: auto;

        padding:
            14px 20px;

        justify-content: space-between;
    }

    .links > li > a .arrow {
        margin-left: auto;
    }

    /* Mobile dropdown */

    .sub-menu,
    .nested-menu {
        position: static;

        width: 100%;

        max-height: 0;

        overflow: hidden;

        opacity: 1;
        visibility: visible;

        transform: none;

        border: 0;

        border-radius: 0;

        box-shadow: none;

        transition:
            max-height 0.3s ease;
    }

    .sub-menu.open,
    .nested-menu.open {
        max-height: 1500px;
    }

    .sub-menu li > a {
        padding:
            11px 35px;

        background:
            #fff8f8;
    }

    .nested-menu li > a {
        padding-left: 50px;
    }

    /* Services */

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    /* About */

    .about-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .about-image {
        order: -1;
    }

    .about-content {
        text-align: center;
    }

    .about-content h2::after {
        margin-left: auto;
        margin-right: auto;
    }

    .about-actions {
        justify-content: center;
    }

    /* Popup */

    .popup-container {
        grid-template-columns: 1fr;

        max-width: 650px;

        max-height: 90vh;

        overflow-y: auto;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    body {
        font-size: 14px;
    }

    .approved-govt {
        flex-wrap: wrap;
        justify-content: center;

        text-align: center;
    }

    .upload-resume {
        flex-wrap: wrap;
        justify-content: center;
    }

    .upload-resume p {
        display: none;
    }

    .lang-menu {
        width: 190px;
    }

    .marquee-inner {
        font-size: 11px;
    }

    .service-section,
    .about-section {
        padding: 60px 0;
    }

    .section-heading h1,
    .about-content h2 {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 220px;
    }

    .service-content h3 {
        min-height: auto;
    }

    .service-content p {
        min-height: auto;
    }

    .employer-heading {
        margin-top: 55px;
    }

    .about-content {
        text-align: left;
    }

    .about-content h2::after {
        margin-left: 0;
    }

    .about-actions {
        justify-content: flex-start;

        flex-wrap: wrap;
    }

    .experience-badge {
        right: 10px;
        bottom: 15px;

        width: 105px;
        height: 105px;
    }

    .experience-badge strong {
        font-size: 23px;
    }

    .popup-overlay {
        padding: 10px;
    }

    .popup-left {
        display: none;
    }

    .popup-right {
        padding: 30px 18px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .navbar {
        min-height: 62px;
    }

    .hrilogo {
        width: 125px;
    }

    .mobile-menu-btn {
        font-size: 27px;
    }

    .section-heading h1,
    .about-content h2 {
        font-size: 24px;
    }

    .service-image {
        height: 190px;
    }

    .about-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .primary-btn,
    .profile-btn {
        width: 100%;
    }

}


/* =========================================
   U A International - CTA Section
   ========================================= */

.uai-cta-area {
    width: 100%;
    padding: 100px 0;
    background: #f5f8fc;
    position: relative;
    overflow: hidden;
}

/* Optional background effect */
.uai-cta-area::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(0, 86, 179, 0.08);
    border-radius: 50%;
}

.uai-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.uai-cta-wrapper {
    width: 100%;
    padding: 55px 60px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.uai-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.uai-cta-title {
    margin: 0;
    color: #1b1b1b;
    font-size: 28px;
    line-height: 1.4;
    font-weight: 700;
    max-width: 700px;
}

/* Button */
.uai-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    padding: 15px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.uai-btn-secondary {
    color: #ffffff;
    background: #d40000;
    border: 2px solid #d40000;
}

.uai-btn-secondary:hover {
    color: #0056b3;
    background: #ffffff;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.18);
}

/* =========================================
   Responsive
   ========================================= */

@media (max-width: 991px) {
    .uai-cta-area {
        padding: 80px 0;
    }

    .uai-cta-wrapper {
        padding: 45px 40px;
    }

    .uai-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .uai-cta-title {
        font-size: 25px;
    }
}

@media (max-width: 767px) {
    .uai-cta-area {
        padding: 60px 0;
    }

    .uai-container {
        padding: 0 15px;
    }

    .uai-cta-wrapper {
        padding: 35px 25px;
        border-radius: 10px;
    }

    .uai-cta-title {
        font-size: 22px;
        line-height: 1.45;
    }

    .uai-btn {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .uai-cta-wrapper {
        padding: 30px 20px;
    }

    .uai-cta-title {
        font-size: 20px;
    }

    .uai-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
}


/* =========================================
   U A INTERNATIONAL
   CLIENT / CANDIDATE SECTION
   ========================================= */

.ua-client-candidate-section {
    padding: 80px 0;
    background: #f6f8fb;
}

.ua-client-candidate-section .row {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(15, 23, 42, 0.10);
}

/* Main Cards */
.ua-action-card {
    position: relative;
    min-height: 330px;
    display: flex;
    align-items: center;
    padding: 50px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.ua-action-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    right: -80px;
    bottom: -90px;
    background: rgba(255, 255, 255, 0.10);
    transition: all 0.5s ease;
}

.ua-action-card:hover::before {
    transform: scale(1.4);
}

/* Client Card */
.ua-client-card {
   background: linear-gradient(
    135deg,
    #7a0000 0%,
    #b5121b 50%,
    #e21b23 100%
);
    color: #ffffff;
}

/* Candidate Card */
.ua-candidate-card {
    background: linear-gradient(
        135deg,
    #050505 0%,
    #151515 50%,
    #2b2b2b 100%
    );
    color: #ffffff;
}

/* Content */
.ua-action-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
}

.ua-action-label {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.ua-action-card h3 {
    margin: 0 0 15px;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
    color: #ffffff;
}

.ua-action-card p {
    margin: 0 0 28px;
    max-width: 480px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
}

/* Button */
.ua-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 24px;
    border-radius: 6px;
    background: #ffffff;
    color: #071b3a;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ua-action-btn i {
    font-size: 15px;
    transition: transform 0.3s ease;
}

.ua-action-btn:hover {
    color: #071b3a;
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.ua-action-btn:hover i {
    transform: translateX(5px);
}

/* =========================================
   TABLET
   ========================================= */

@media (max-width: 991px) {

    .ua-client-candidate-section {
        padding: 60px 20px;
    }

    .ua-action-card {
        min-height: 300px;
        padding: 40px;
    }

    .ua-action-card h3 {
        font-size: 28px;
    }
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

    .ua-client-candidate-section {
        padding: 45px 15px;
    }

    .ua-client-candidate-section .row {
        border-radius: 15px;
    }

    .ua-action-card {
        min-height: auto;
        padding: 35px 25px;
    }

    .ua-action-card h3 {
        font-size: 25px;
    }

    .ua-action-card p {
        font-size: 14px;
        line-height: 1.7;
    }

    .ua-action-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 480px) {

    .ua-action-card {
        padding: 30px 20px;
    }

    .ua-action-card h3 {
        font-size: 22px;
    }

    .ua-action-label {
        font-size: 11px;
    }

    .ua-action-card p {
        margin-bottom: 22px;
    }
}

/* =========================================================
   U A INTERNATIONAL
   SERVICES + WHY CHOOSE + COUNTERS + ACTION BUTTONS
   RED / WHITE / BLACK THEME
========================================================= */


/* =========================================================
   COMMON
========================================================= */

.ua-service-area,
.ua-why-section,
.ua-counter-section,
.ua-action-section {
    font-family: inherit;
}

.ua-service-area *,
.ua-why-section *,
.ua-counter-section *,
.ua-action-section * {
    box-sizing: border-box;
}

.ua-subtitle {
    display: inline-block;
    margin-bottom: 12px;

    color: #d40000;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* =========================================================
   QUALITY SERVICES
========================================================= */
/* =========================================================
   U.A. INTERNATIONAL - QUALITY SERVICES
   CLEAN CSS
========================================================= */

.ua-service-area {
    padding: 80px 0;
    background: #ffffff;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.ua-service-heading {
    text-align: center;
    margin-bottom: 50px;
}

.ua-service-heading .section-label {
    display: block;
    margin-bottom: 10px;
    color: var(--red);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.ua-service-heading h1 {
    margin: 0;
    color: var(--black);
    font-size: 38px;
    line-height: 1.3;
    font-weight: 800;
}

.ua-service-heading h1 span {
    color: var(--red);
}

.ua-service-heading p {
    max-width: 650px;
    margin: 15px auto 0;
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
}

.ua-service-heading h1::after {
    content: "";
    display: block;
    width: 55px;
    height: 4px;
    margin: 15px auto 0;
    background: var(--red);
    border-radius: 5px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.ua-service-card {
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.ua-service-card:hover {
    border-color: rgba(198, 30, 42, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   SERVICE ICON
========================================================= */

.ua-service-icon {
    flex: 0 0 65px;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(198, 30, 42, 0.08);
    color: var(--red);
    border-radius: 50%;
    font-size: 25px;
    transition: all 0.3s ease;
}

.ua-service-card:hover .ua-service-icon {
    background: var(--red);
    color: #ffffff;
}


/* =========================================================
   SERVICE CONTENT
========================================================= */

.ua-service-content {
    flex: 1;
}

.ua-service-content h5 {
    margin: 0 0 12px;
    color: var(--black);
    font-size: 21px;
    line-height: 1.4;
    font-weight: 700;
}

.ua-service-content p {
    margin: 0 0 18px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   READ MORE
========================================================= */

.ua-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ua-read-more:hover {
    color: var(--black);
}

.ua-read-more i {
    transition: transform 0.3s ease;
}

.ua-read-more:hover i {
    transform: translateX(5px);
}


/* =========================================================
   CTA SECTION
========================================================= */

.ua-cta-section {
    margin-top: 60px;
    padding: 45px 50px;
    background: var(--red);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.ua-cta-section::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -80px;
    top: -100px;
    border: 35px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.ua-cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.ua-cta-text {
    max-width: 750px;
}

.ua-cta-text > span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.ua-cta-text h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 30px;
    line-height: 1.3;
    font-weight: 800;
}

.ua-cta-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.ua-cta-button {
    flex-shrink: 0;
}

.ua-white-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 25px;
    background: #ffffff;
    color: var(--red);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.ua-white-btn:hover {
    background: var(--black);
    color: #ffffff;
}

.ua-white-btn i {
    transition: transform 0.3s ease;
}

.ua-white-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .ua-service-area {
        padding: 60px 0;
    }

    .ua-service-heading {
        margin-bottom: 40px;
    }

    .ua-service-heading h1 {
        font-size: 34px;
    }

    .ua-cta-content {
        align-items: flex-start;
        flex-direction: column;
    }

    .ua-cta-button {
        width: 100%;
    }

}


@media (max-width: 767px) {

    .ua-service-area {
        padding: 50px 0;
    }

    .ua-service-heading h1 {
        font-size: 29px;
    }

    .ua-service-heading p {
        font-size: 14px;
    }

    .ua-service-card {
        gap: 18px;
        padding: 25px 20px;
    }

    .ua-service-icon {
        flex: 0 0 52px;
        width: 52px;
        height: 52px;
        font-size: 20px;
    }

    .ua-service-content h5 {
        font-size: 18px;
    }

    .ua-service-content p {
        font-size: 14px;
    }

    /* .ua-cta-section {
        margin-top: 45px;
        padding: 30px 25px;
    }

    .ua-cta-text h3 {
        font-size: 25px;
    }

    .ua-cta-text p {
        font-size: 14px;
    }

    .ua-white-btn {
        width: 100%;
        justify-content: center;
    } */

}

.ua-service-area {
    padding: 90px 0;
    background: #ffffff;
}

.ua-section-heading {
    margin-bottom: 50px;
}

.ua-section-heading .ua-subtitle {
    position: relative;
    padding-left: 45px;
    padding-right: 45px;
}

.ua-section-heading .ua-subtitle::before,
.ua-section-heading .ua-subtitle::after {
    content: "";
    position: absolute;

    top: 50%;
    width: 32px;
    height: 2px;

    background: #d40000;
}

.ua-section-heading .ua-subtitle::before {
    left: 0;
}

.ua-section-heading .ua-subtitle::after {
    right: 0;
}

.ua-section-heading h2 {
    margin: 0 0 12px;

    color: #111111;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
}

.ua-section-heading p {
    margin: 0;

    color: #666666;
    font-size: 16px;
}


/* Service Container */

.ua-service-container {
    padding-left: 80px;
    padding-right: 80px;
}


/* Service Card */

.ua-service-card {
    height: 100%;
    min-height: 245px;

    display: flex;
    align-items: flex-start;
    gap: 25px;

    padding: 35px;

    position: relative;
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #eeeeee;
    border-radius: 14px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* Red top border */

.ua-service-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        #8b0000 0%,
        #d40000 50%,
        #ff3030 100%
    );
}


/* Hover */

.ua-service-card:hover {
    transform: translateY(-8px);

    border-color: #d40000;

    box-shadow:
        0 18px 45px rgba(212, 0, 0, 0.14);
}


/* Service Icon */

.ua-service-icon {
    flex: 0 0 72px;

    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: linear-gradient(
        135deg,
        #8b0000 0%,
        #d40000 55%,
        #ff3030 100%
    );

    color: #ffffff;

    box-shadow:
        0 8px 22px rgba(212, 0, 0, 0.25);

    transition: all 0.35s ease;
}

.ua-service-card:hover .ua-service-icon {
    transform: scale(1.08) rotate(-3deg);
}

.ua-service-icon i {
    color: #ffffff;
    font-size: 30px;
}


/* Service Content */

.ua-service-content {
    flex: 1;
}

.ua-service-content h5 {
    margin: 0 0 12px;

    color: #111111;

    font-size: 21px;
    line-height: 1.35;
    font-weight: 750;

    transition: color 0.3s ease;
}

.ua-service-card:hover .ua-service-content h5 {
    color: #d40000;
}

.ua-service-content p {
    margin: 0 0 20px;

    color: #666666;

    font-size: 15px;
    line-height: 1.75;
}


/* Read More */

.ua-read-more {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #d40000;

    font-size: 14px;
    font-weight: 750;

    text-decoration: none;

    transition: all 0.3s ease;
}

.ua-read-more i {
    transition: transform 0.3s ease;
}

.ua-read-more:hover {
    color: #8b0000;
}

.ua-read-more:hover i {
    transform: translateX(6px);
}


/* =========================================================
   SERVICES CTA
========================================================= */

.ua-cta-section {
    margin-top: 65px;

    position: relative;
    overflow: hidden;

    border-radius: 16px;

    background: linear-gradient(
        135deg,
        #050505 0%,
        #161616 55%,
        #000000 100%
    );

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.18);
}

.ua-cta-section::before {
    content: "";

    position: absolute;

    top: 0;
    /* left: 0; */

    width: 5px;
    height: 100%;

    background: linear-gradient(
        180deg,
        #ff3030,
        #a50000
    );
}

.ua-cta-section::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -180px;
    top: -180px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(212, 0, 0, 0.25) 0%,
        rgba(212, 0, 0, 0) 70%
    );

    pointer-events: none;
}

.ua-cta-content {
    min-height: 220px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 42px 50px;

    position: relative;
    z-index: 2;
}

.ua-cta-text {
    max-width: 800px;
}

.ua-cta-text > span {
    display: inline-block;

    margin-bottom: 8px;

    color: #ff3030;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.ua-cta-text h3 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
}

.ua-cta-text p {
    margin: 0;

    color: #cccccc;

    font-size: 15px;
    line-height: 1.75;
}


/* CTA Button */

.ua-white-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px 25px;

    background: #ffffff;

    color: #c40000;

    border: 2px solid #ffffff;
    border-radius: 6px;

    font-size: 14px;
    font-weight: 750;

    text-decoration: none;

    white-space: nowrap;

    transition: all 0.3s ease;
}

.ua-white-btn i {
    transition: transform 0.3s ease;
}

.ua-white-btn:hover {
    background: #d40000;
    border-color: #d40000;
    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(212, 0, 0, 0.3);
}

.ua-white-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   U.A. INTERNATIONAL - WHY CHOOSE US
   CLEAN CSS
========================================================= */

.ua-why-section {
    padding: 80px 0;
    background: #ffffff;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.ua-why-heading {
    text-align: center;
    margin-bottom: 50px;
}

.ua-why-heading .section-label {
    display: block;
    margin-bottom: 10px;
    color: var(--red);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.ua-why-heading h1 {
    margin: 0;
    color: var(--black);
    font-size: 38px;
    line-height: 1.3;
    font-weight: 800;
}

.ua-why-heading h1 span {
    color: var(--red);
}

.ua-why-heading p {
    max-width: 650px;
    margin: 15px auto 0;
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
}

.ua-why-heading h1::after {
    content: "";
    display: block;
    width: 55px;
    height: 4px;
    margin: 15px auto 0;
    background: var(--red);
    border-radius: 5px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.ua-why-left {
    padding-right: 40px;
}

.ua-why-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--red);
    color: #ffffff;
    border-radius: 50%;
    font-size: 20px;
}

.ua-why-left h3 {
    margin: 0 0 15px;
    color: var(--black);
    font-size: 28px;
    line-height: 1.3;
    font-weight: 800;
}

.ua-why-left h3 span {
    display: block;
    color: var(--red);
}

.ua-why-left p {
    margin: 0;
    color: var(--text);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.ua-success-wrapper {
    padding-left: 20px;
}

.ua-success-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #eeeeee;
}

.ua-success-item:first-child {
    padding-top: 0;
}

.ua-success-item:last-child {
    border-bottom: 0;
}

.ua-check {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    background: rgba(198, 30, 42, 0.10);
    color: var(--red);
    border-radius: 50%;
    font-size: 14px;
}

.ua-success-item p {
    margin: 0;
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   READ MORE BUTTON
========================================================= */

.ua-why-button {
    text-align: center;
    margin-top: 40px;
}

.ua-red-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 25px;
    background: var(--red);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.ua-red-btn:hover {
    background: var(--black);
    color: #ffffff;
    transform: translateY(-2px);
}

.ua-red-btn i {
    transition: transform 0.3s ease;
}

.ua-red-btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .ua-why-section {
        padding: 60px 0;
    }

    .ua-why-heading {
        margin-bottom: 40px;
    }

    .ua-why-heading h1 {
        font-size: 34px;
    }

    .ua-why-left {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .ua-success-wrapper {
        padding-left: 0;
    }
}


@media (max-width: 767px) {

    .ua-why-section {
        padding: 50px 0;
    }

    .ua-why-heading h1 {
        font-size: 29px;
    }

    .ua-why-heading p {
        font-size: 14px;
    }

    .ua-why-left h3 {
        font-size: 25px;
    }

    .ua-success-item {
        gap: 12px;
        padding: 15px 0;
    }

    .ua-success-item p {
        font-size: 14px;
        line-height: 1.65;
    }

    .ua-check {
        flex: 0 0 30px;
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .ua-why-button {
        margin-top: 30px;
    }
}

/* =========================================================
   COUNTERS
========================================================= */

.ua-counter-section {
    padding: 75px 0;

    position: relative;

    background: linear-gradient(
        135deg,
        #050505 0%,
        #151515 50%,
        #000000 100%
    );

    overflow: hidden;
}


/* Background Red Glow */

.ua-counter-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: -250px;
    top: -250px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(212, 0, 0, 0.23) 0%,
        rgba(212, 0, 0, 0) 70%
    );

    pointer-events: none;
}

.ua-counter-section::after {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    right: -230px;
    bottom: -230px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(212, 0, 0, 0.18) 0%,
        rgba(212, 0, 0, 0) 70%
    );

    pointer-events: none;
}


/* =========================================================
   U A INTERNATIONAL - MODERN COUNTER SECTION
========================================================= */

.ua-counter-section {
    position: relative;
    padding: 90px 0;
    background: linear-gradient(
        135deg,
        #050505 0%,
        #111111 50%,
        #1c1c1c 100%
    );
    overflow: hidden;
}

/* Red background glow */
.ua-counter-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -180px;
    left: -180px;
    background: rgba(220, 0, 0, 0.16);
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.ua-counter-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    right: -150px;
    bottom: -180px;
    background: rgba(220, 0, 0, 0.12);
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.ua-counter-section .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   COUNTER CARD
========================================================= */

.ua-counter-card {
    position: relative;
    min-height: 190px;
    padding: 35px 30px;
    display: flex;
    align-items: center;
    gap: 25px;

    background: linear-gradient(
        145deg,
        #191919 0%,
        #0b0b0b 100%
    );

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


/* Red left line */

.ua-counter-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 20px;
    width: 4px;

    background: linear-gradient(
        180deg,
        #ff1a1a,
        #b00000
    );

    border-radius: 0 5px 5px 0;
}


/* Hover */

.ua-counter-card:hover {
    transform: translateY(-8px);

    border-color: rgba(230, 0, 0, 0.55);

    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(220, 0, 0, 0.10);
}


/* =========================================================
   ICON
========================================================= */

.ua-counter-icon {
    flex: 0 0 75px;
    width: 75px;
    height: 75px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #e00000,
        #8b0000
    );

    border-radius: 16px;

    color: #ffffff;
    font-size: 30px;

    box-shadow:
        0 10px 25px rgba(220, 0, 0, 0.30);

    transition: all 0.35s ease;
}

.ua-counter-card:hover .ua-counter-icon {
    transform: rotate(-5deg) scale(1.08);

    box-shadow:
        0 12px 30px rgba(220, 0, 0, 0.45);
}


/* =========================================================
   NUMBER
========================================================= */

.ua-counter-card h2 {
    margin: 0 0 8px;

    color: #ffffff;

    font-size: 38px;
    line-height: 1;
    font-weight: 800;

    letter-spacing: -1px;

    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #ff3b3b 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.ua-counter-card p {
    margin: 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;

    max-width: 240px;
}


/* =========================================================
   SPECIAL CARD STYLING
========================================================= */

/* 4th & 5th cards slightly different */

.ua-counter-card:nth-child(4),
.ua-counter-card:nth-child(5) {
    min-height: 170px;
}

.ua-counter-card:nth-child(4) .ua-counter-icon,
.ua-counter-card:nth-child(5) .ua-counter-icon {
    background: linear-gradient(
        135deg,
        #ffffff,
        #dddddd
    );

    color: #b00000;

    box-shadow:
        0 10px 25px rgba(255, 255, 255, 0.10);
}

.ua-counter-card:nth-child(4):hover .ua-counter-icon,
.ua-counter-card:nth-child(5):hover .ua-counter-icon {
    box-shadow:
        0 12px 30px rgba(255, 255, 255, 0.20);
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 991px) {

    .ua-counter-section {
        padding: 70px 0;
    }

    .ua-counter-card {
        min-height: 170px;
        padding: 28px 25px;
    }

    .ua-counter-icon {
        width: 65px;
        height: 65px;
        flex-basis: 65px;
        font-size: 26px;
    }

    .ua-counter-card h2 {
        font-size: 32px;
    }

    .ua-counter-card p {
        font-size: 14px;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 575px) {

    .ua-counter-section {
        padding: 55px 0;
    }

    .ua-counter-card,
    .ua-counter-card:nth-child(4),
    .ua-counter-card:nth-child(5) {
        min-height: 145px;
        padding: 24px 20px;
        gap: 18px;
        border-radius: 14px;
    }

    .ua-counter-icon {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
        font-size: 23px;
        border-radius: 12px;
    }

    .ua-counter-card h2 {
        font-size: 27px;
        margin-bottom: 6px;
    }

    .ua-counter-card p {
        font-size: 13px;
        line-height: 1.45;
    }

    .ua-counter-card::before {
        top: 15px;
        bottom: 15px;
        width: 3px;
    }
}

/* =========================================================
   CLIENT / CANDIDATE ACTION SECTION
========================================================= */

.ua-action-section {
    padding: 80px 0;

    background: #ffffff;
}


/* Action Box */

.ua-action-box {
    min-height: 210px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 35px 40px;

    position: relative;
    overflow: hidden;

    transition: all 0.35s ease;
}


/* Client */

.ua-action-box.ua-client {
    background: linear-gradient(
        135deg,
        #8b0000 0%,
        #d40000 60%,
        #ef2020 100%
    );

    color: #ffffff;
}


/* Candidate */

.ua-action-box.ua-candidate {
    background: linear-gradient(
        135deg,
        #080808 0%,
        #171717 55%,
        #000000 100%
    );

    color: #ffffff;
}


/* Decorative circle */

.ua-action-box::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -90px;
    bottom: -110px;

    border-radius: 50%;

    border: 35px solid rgba(255, 255, 255, 0.06);

    pointer-events: none;
}


/* Text */

.ua-action-box span {
    display: block;

    margin-bottom: 8px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;

    opacity: 0.8;
}

.ua-action-box h3 {
    margin: 0;

    font-size: 27px;
    line-height: 1.25;

    font-weight: 800;
}


/* Action Button */

.ua-action-box > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 12px 20px;

    position: relative;
    z-index: 3;

    border-radius: 5px;

    font-size: 14px;
    font-weight: 750;

    text-decoration: none;

    white-space: nowrap;

    transition: all 0.3s ease;
}


/* Client button */

.ua-client > a {
    background: #ffffff;
    color: #c40000;
}

.ua-client > a:hover {
    background: #111111;
    color: #ffffff;

    transform: translateX(4px);
}


/* Candidate button */

.ua-candidate > a {
    background: #d40000;
    color: #ffffff;

    border: 1px solid #d40000;
}

.ua-candidate > a:hover {
    background: #ffffff;
    color: #c40000;

    transform: translateX(4px);
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1199px) {

    .ua-service-container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .ua-service-card {
        padding: 30px;
    }

    .ua-section-heading h2 {
        font-size: 36px;
    }

    .ua-why-left h2 {
        font-size: 34px;
    }

    .ua-cta-content {
        padding: 38px;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 991px) {

    .ua-service-area {
        padding: 70px 0;
    }

    .ua-service-container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .ua-why-section {
        padding: 70px 0;
    }

    .ua-why-left {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .ua-success-wrapper {
        padding-left: 0;
    }

    .ua-cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .ua-cta-button {
        width: 100%;
    }

    .ua-white-btn {
        width: auto;
    }

    .ua-action-box {
        min-height: 190px;
    }
}


/* =========================================================
   RESPONSIVE - SMALL MOBILE
========================================================= */

@media (max-width: 767px) {

    .ua-service-area {
        padding: 55px 0;
    }

    .ua-service-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .ua-section-heading {
        margin-bottom: 35px;
    }

    .ua-section-heading h2 {
        font-size: 29px;
    }

    .ua-section-heading p {
        font-size: 14px;
        padding: 0 10px;
    }


    /* Service */

    .ua-service-card {
        min-height: auto;

        flex-direction: column;

        gap: 20px;

        padding: 27px 22px;
    }

    .ua-service-icon {
        flex-basis: 62px;

        width: 62px;
        height: 62px;
    }

    .ua-service-icon i {
        font-size: 25px;
    }

    .ua-service-content h5 {
        font-size: 19px;
    }

    .ua-service-content p {
        font-size: 14px;
    }


    /* CTA */

    .ua-cta-section {
        margin-top: 45px;
    }

    .ua-cta-content {
        min-height: auto;

        padding: 32px 25px;
    }

    .ua-cta-text h3 {
        font-size: 26px;
    }

    .ua-cta-text p {
        font-size: 14px;
    }

    .ua-white-btn {
        width: 100%;
    }


    /* Why */

    .ua-why-section {
        padding: 60px 0;
    }

    .ua-why-section .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .ua-why-left h2 {
        font-size: 29px;
    }

    .ua-why-left > p {
        font-size: 14px;
    }

    .ua-success-item {
        padding: 14px;
    }

    .ua-success-item p {
        font-size: 13.5px;
    }


    /* Counters */

    .ua-counter-section {
        padding: 55px 15px;
    }

    .ua-counter-card {
        min-height: 125px;
        padding: 20px;
    }

    .ua-counter-icon {
        flex-basis: 52px;

        width: 52px;
        height: 52px;

        font-size: 20px;
    }

    .ua-counter-card h2 {
        font-size: 26px;
    }

    .ua-counter-card p {
        font-size: 13px;
    }


    /* Action */

    .ua-action-section {
        padding: 55px 15px;
    }

    .ua-action-box {
        min-height: 180px;

        padding: 28px 23px;

        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .ua-action-box h3 {
        font-size: 23px;
    }

    .ua-action-box > a {
        width: 100%;
    }
}


/* =========================================================
   EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 480px) {

    .ua-subtitle {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .ua-section-heading .ua-subtitle {
        padding-left: 35px;
        padding-right: 35px;
    }

    .ua-section-heading .ua-subtitle::before,
    .ua-section-heading .ua-subtitle::after {
        width: 25px;
    }

    .ua-section-heading h2 {
        font-size: 26px;
    }

    .ua-service-card {
        padding: 23px 18px;
    }

    .ua-cta-content {
        padding: 28px 20px;
    }

    .ua-cta-text h3 {
        font-size: 23px;
    }

    .ua-success-item {
        gap: 10px;
    }

    .ua-check {
        flex-basis: 25px;

        width: 25px;
        height: 25px;

        font-size: 11px;
    }

    .ua-counter-card {
        padding: 18px 15px;
        gap: 14px;
    }

    .ua-counter-icon {
        flex-basis: 45px;

        width: 45px;
        height: 45px;

        font-size: 17px;
    }

    .ua-counter-card h2 {
        font-size: 23px;
    }

    .ua-action-box {
        padding: 25px 20px;
    }
}



/* =========================================================
   U.A. INTERNATIONAL - BOARD OF DIRECTORS
   CLEAN CSS
========================================================= */

.directors-section {
    padding: 80px 0;
    background: #ffffff;
}

/* =========================================================
   SECTION HEADING
========================================================= */

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

.directors-heading .section-label {
    display: block;
    margin-bottom: 10px;
    color: var(--red);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.directors-heading h1 {
    margin: 0;
    color: var(--black);
    font-size: 38px;
    line-height: 1.3;
    font-weight: 800;
}

.directors-heading h1 span {
    color: var(--red);
}

.directors-heading p {
    max-width: 650px;
    margin: 15px auto 0;
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
}

.directors-heading h1::after {
    content: "";
    display: block;
    width: 55px;
    height: 4px;
    margin: 15px auto 0;
    background: var(--red);
    border-radius: 5px;
}

/* =========================================================
   DIRECTORS GRID
========================================================= */

.directors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* =========================================================
   DIRECTOR CARD
========================================================= */

.director-card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.director-card:hover {
    transform: translateY(-8px);
    border-color: #ffbcbc;
    box-shadow: var(--red-shadow);
}

/* =========================================================
   DIRECTOR IMAGE
========================================================= */

.director-image {
    position: relative;
    height: 330px;
    overflow: hidden;
    background: #f5f5f5;
}

.director-image img {
    display: block;
    width: 80%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.director-card:hover .director-image img {
    transform: scale(1.05);
}

/* =========================================================
   DIRECTOR NUMBER
========================================================= */

.director-number {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    color: var(--white);
    border: 3px solid var(--white);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(201, 0, 0, 0.25);
}

/* =========================================================
   CARD CONTENT
========================================================= */

.director-content {
    padding: 22px 20px 25px;
    text-align: center;
}

.director-role {
    display: block;
    margin-bottom: 7px;
    color: var(--red);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.director-content h3 {
    margin: 0;
    color: var(--black);
    font-size: 21px;
    line-height: 1.4;
    font-weight: 800;
    transition: var(--transition);
}

.director-card:hover .director-content h3 {
    color: var(--red);
}

/* =========================================================
   PROFILE BUTTON
========================================================= */

.director-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    padding: 9px 16px;
    background: var(--red);
    color: var(--white);
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.director-link:hover {
    background: var(--dark-red);
    color: var(--white);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
    .directors-section {
        padding: 70px 0;
    }

    .directors-heading h1 {
        font-size: 34px;
    }

    .directors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .director-image {
        height: 320px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
    .directors-section {
        padding: 60px 0;
    }

    .directors-heading {
        margin-bottom: 35px;
    }

    .directors-heading h1 {
        font-size: 30px;
    }

    .directors-heading p {
        font-size: 14px;
    }

    .directors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .director-image {
        height: 380px;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
    .directors-section {
        padding: 50px 0;
    }

    .directors-heading h1 {
        font-size: 27px;
    }

    .director-image {
        height: 330px;
    }

    .director-content h3 {
        font-size: 20px;
    }
}


/* =========================================================
   U.A. INTERNATIONAL
   PREMIUM CORPORATE FOOTER
   ========================================================= */

.uai-footer {
    position: relative;
    overflow: hidden;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(201, 0, 0, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 80%,
            rgba(201, 0, 0, 0.08),
            transparent 30%
        ),
        #111111;
}


/* =========================================================
   TOP ACCENT
   ========================================================= */

.uai-footer-accent {
    width: 100%;
    height: 5px;

    background:
        linear-gradient(
            90deg,
            #920000 0%,
            #c90000 50%,
            #920000 100%
        );
}


/* =========================================================
   FOOTER MAIN
   ========================================================= */

.uai-footer-main {
    position: relative;

    padding: 80px 0 55px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.015),
            rgba(201,0,0,0.025)
        );
}

.uai-footer-main::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    top: -220px;
    right: -180px;

    border-radius: 50%;

    background:
        rgba(201, 0, 0, 0.07);

    pointer-events: none;
}

.uai-footer-main::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    bottom: -150px;
    left: -100px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,0.05);

    pointer-events: none;
}


/* =========================================================
   GRID
   ========================================================= */

.uai-footer-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        1.15fr
        1fr
        0.75fr;

    gap: 55px;
}


/* =========================================================
   BRAND
   ========================================================= */

.uai-footer-brand {
    margin-bottom: 22px;
}

.uai-footer-logo {
    display: flex;
    align-items: center;

    gap: 12px;
}

.uai-footer-logo span {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #c90000,
            #920000
        );

    color: #ffffff;

    border-radius: 10px;

    font-size: 19px;
    font-weight: 900;

    box-shadow:
        0 10px 25px
        rgba(201, 0, 0, 0.30);
}

.uai-footer-logo strong {
    color: #ffffff;

    font-size: 21px;
    letter-spacing: 1.5px;
}

.uai-footer-brand p {
    max-width: 420px;

    margin-top: 15px;

    color: #a9a9a9;

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   MAP
   ========================================================= */

.uai-map-wrapper {
    position: relative;

    height: 230px;

    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,0.10);

    border-radius: 12px;

    background: #1b1b1b;

    box-shadow:
        0 15px 40px
        rgba(0,0,0,0.30);
}

.uai-map-wrapper iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;

    filter:
        grayscale(0.25)
        contrast(1.05);
}


/* =========================================================
   QR BOX
   ========================================================= */

.uai-qr-box {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 20px;

    padding: 17px 20px;

    background:
        linear-gradient(
            135deg,
            #1d1d1d,
            #181818
        );

    border:
        1px solid
        rgba(255,255,255,0.08);

    border-left:
        3px solid
        var(--red);

    border-radius: 10px;

    box-shadow:
        0 10px 30px
        rgba(0,0,0,0.20);
}

.uai-qr-box h4 {
    margin: 4px 0;

    color: #ffffff;

    font-size: 17px;
}

.uai-qr-box p {
    margin: 0;

    color: #999999;

    font-size: 11px;
    line-height: 1.5;
}

.uai-mini-label {
    color: #e24a4a;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.uai-qr-box img {
    width: 78px;
    height: 78px;

    padding: 5px;

    flex-shrink: 0;

    background: #ffffff;

    border-radius: 7px;
}


/* =========================================================
   FOOTER HEADING
   ========================================================= */

.uai-footer-heading {
    margin-bottom: 25px;
}

.uai-footer-heading span {
    display: block;

    margin-bottom: 5px;

    color: #d83b3b;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}

.uai-footer-heading h3 {
    margin: 0;

    color: #ffffff;

    font-size: 23px;
    line-height: 1.3;

    font-weight: 800;
}

.uai-footer-heading i {
    display: block;

    position: relative;

    width: 50px;
    height: 3px;

    margin-top: 12px;

    background: var(--red);

    border-radius: 10px;
}

.uai-footer-heading i::after {
    content: "";

    position: absolute;

    left: 58px;
    top: 0;

    width: 7px;
    height: 3px;

    background: #ffffff;

    border-radius: 5px;
}


/* =========================================================
   CONTACT LIST
   ========================================================= */

.uai-contact-list {
    display: flex;
    flex-direction: column;

    gap: 9px;
}

.uai-contact-item {
    display: flex;
    align-items: center;

    gap: 13px;

    padding: 9px 10px;

    border-radius: 8px;

    transition:
        all 0.3s ease;

    border:
        1px solid
        transparent;
}

.uai-contact-item:hover {
    background:
        rgba(255,255,255,0.045);

    border-color:
        rgba(201,0,0,0.25);

    transform:
        translateX(4px);
}

.uai-contact-icon {
    width: 36px;
    height: 36px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        rgba(201,0,0,0.13);

    color: #e13939;

    border:
        1px solid
        rgba(201,0,0,0.22);

    border-radius: 7px;

    font-size: 13px;

    transition:
        all 0.3s ease;
}

.uai-contact-item:hover .uai-contact-icon {
    background: var(--red);

    color: #ffffff;

    transform:
        rotate(-5deg);
}

.uai-contact-content {
    min-width: 0;

    display: flex;
    flex-direction: column;
}

.uai-contact-content small {
    color: #777777;

    font-size: 8px;
    font-weight: 800;

    line-height: 1.2;

    letter-spacing: 1.2px;
}

.uai-contact-content strong {
    margin-top: 3px;

    color: #eeeeee;

    font-size: 12px;
    line-height: 1.5;

    font-weight: 600;

    word-break: break-word;
}

.uai-contact-item:hover .uai-contact-content strong {
    color: #ffffff;
}

.uai-address {
    align-items: flex-start;
}


/* =========================================================
   QUICK LINKS
   ========================================================= */

.uai-quick-links {
    display: grid;

    grid-template-columns: 1fr;

    gap: 3px;
}

.uai-quick-links a {
    position: relative;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 7px 8px;

    color: #a9a9a9;

    font-size: 12px;
    font-weight: 500;

    border-radius: 5px;

    transition:
        all 0.3s ease;
}

.uai-quick-links a i {
    color: var(--red);

    font-size: 10px;

    transition:
        all 0.3s ease;
}

.uai-quick-links a:hover {
    padding-left: 14px;

    color: #ffffff;

    background:
        rgba(255,255,255,0.035);
}

.uai-quick-links a:hover i {
    color: #ffffff;

    transform:
        translateX(3px);
}


/* =========================================================
   FOOTER CTA
   ========================================================= */

.uai-footer-cta {
    position: relative;
    z-index: 2;

    margin-top: 65px;

    padding: 30px 35px;

    background:
        linear-gradient(
            105deg,
            #8f0000,
            #c90000 55%,
            #a80000
        );

    border-radius: 12px;

    overflow: hidden;

    box-shadow:
        0 18px 45px
        rgba(0,0,0,0.25);
}

.uai-footer-cta::before {
    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    right: -80px;
    top: -100px;

    border:
        1px solid
        rgba(255,255,255,0.15);

    border-radius: 50%;
}

.uai-footer-cta-content {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.uai-footer-cta-content > div:first-child {
    max-width: 650px;
}

.uai-footer-cta-content span {
    color: #ffd6d6;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.uai-footer-cta-content h3 {
    margin: 5px 0 0;

    color: #ffffff;

    font-size: 22px;
    line-height: 1.4;
}

.uai-footer-cta-buttons {
    display: flex;
    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}

.uai-footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 11px 17px;

    border-radius: 5px;

    font-size: 11px;
    font-weight: 800;

    transition:
        all 0.3s ease;
}

.uai-footer-btn i {
    font-size: 10px;
}

.uai-footer-btn-light {
    background: #ffffff;

    color: var(--red);
}

.uai-footer-btn-light:hover {
    background: #151515;

    color: #ffffff;

    transform:
        translateY(-2px);
}

.uai-footer-btn-red {
    background:
        rgba(0,0,0,0.20);

    color: #ffffff;

    border:
        1px solid
        rgba(255,255,255,0.30);
}

.uai-footer-btn-red:hover {
    background: #ffffff;

    color: var(--red);

    transform:
        translateY(-2px);
}


/* =========================================================
   COPYRIGHT
   ========================================================= */

.uai-footer-bottom {
    position: relative;
    z-index: 5;

    background: #090909;

    border-top:
        1px solid
        rgba(255,255,255,0.07);
}

.uai-footer-bottom-inner {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.uai-footer-bottom p {
    margin: 0;

    color: #777777;

    font-size: 10px;
}

.uai-footer-bottom p:last-child {
    text-align: right;
}

.uai-footer-bottom .fa-heart {
    margin: 0 3px;

    color: var(--red);
}


/* =========================================================
   SOCIAL ICONS
   ========================================================= */

.uai-footer-social {
    display: flex;
    align-items: center;

    gap: 7px;
}

.uai-footer-social a {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        #171717;

    color: #999999;

    border:
        1px solid
        #292929;

    border-radius: 50%;

    font-size: 11px;

    transition:
        all 0.3s ease;
}

.uai-footer-social a:hover {
    background: var(--red);

    border-color: var(--red);

    color: #ffffff;

    transform:
        translateY(-3px);

    box-shadow:
        0 7px 18px
        rgba(201,0,0,0.30);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .uai-footer-main {
        padding: 65px 0 45px;
    }

    .uai-footer-grid {
        grid-template-columns:
            1fr 1fr;

        gap: 45px 30px;
    }

    .uai-footer-map-column {
        grid-column:
            1 / -1;
    }

    .uai-map-wrapper {
        height: 250px;
    }

    .uai-footer-cta-content {
        align-items: flex-start;

        flex-direction: column;
    }

    .uai-footer-cta-buttons {
        width: 100%;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .uai-footer-main {
        padding: 55px 0 35px;
    }

    .uai-footer-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .uai-footer-map-column {
        grid-column: auto;
    }

    .uai-footer-logo strong {
        font-size: 18px;
    }

    .uai-footer-logo span {
        width: 48px;
        height: 48px;

        font-size: 16px;
    }

    .uai-map-wrapper {
        height: 220px;
    }

    .uai-qr-box {
        padding: 15px;
    }

    .uai-footer-cta {
        margin-top: 45px;

        padding: 25px 20px;
    }

    .uai-footer-cta-content h3 {
        font-size: 19px;
    }

    .uai-footer-cta-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .uai-footer-btn {
        width: 100%;
    }

    .uai-footer-bottom-inner {
        padding: 20px 0;

        flex-direction: column;

        text-align: center;
    }

    .uai-footer-bottom p:last-child {
        text-align: center;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .uai-footer-heading h3 {
        font-size: 21px;
    }

    .uai-contact-content strong {
        font-size: 11px;
    }

    .uai-qr-box {
        align-items: center;
    }

    .uai-qr-box img {
        width: 68px;
        height: 68px;
    }

    .uai-footer-social a {
        width: 30px;
        height: 30px;
    }

}
