/*===================================================
    Header Navigation
===================================================*/

.main-header {
    background-color: var(--primary-color);
    position: relative;
    z-index: 2;
}

.main-header-wapper {
    display: grid;
    grid-template-columns: 200px auto;
    align-items: center;
}

.site-logo img {
    width: 150px;
}

.site-logo {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.main-header-info {
    position: relative;
}

.main-header-info:before {
    background-color: var(--primary-color);
    clip-path: polygon(0 0, 0% 0%, 100% 100%, 0% 100%);
    width: 50px;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
}

.main-header-info:after {
    background-color: white;
    transform: skewX(23deg);
    width: 8px;
    height: 100%;
    content: "";
    position: absolute;
    left: 7px;
    top: 0;
}

.top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-left: 80px;
}

.top-header:before {
    background-color: var(--primary-color);
    content: "";
    width: 6000px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.top-left {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.top-left li a,
.top-left li {
    font-family: var(--primary-font);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    line-height: 1;
    text-decoration: none;
}

.top-left li i {
    color: var(--white-color);
    font-size: 13px;
    margin-right: 6px;
}

.top-right {
    display: inline-flex;
    align-items: center;
}

.header-social-share {
    display: flex;
    align-items: center;
}

.header-social-share li a {
    color: var(--white-color);
    font-size: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid white;
}

.header-social-share li:last-child a {
    border-right: 1px solid white;
}

@media (min-width: 993px) {
    .header-menu-wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        padding-left: 80px;
    }

    .header-menu-wrap:before {
        background-color: var(--white-color);
        width: 6000px;
        height: 100%;
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
    }

    .header-menu-wrap ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .header-menu-wrap ul li {
        display: inline-block;
        position: relative;
        padding: 30px 0;
        margin-right: 30px;
    }

    .header-menu-wrap ul li>a {
        font-family: var(--primary-font), sans-serif;
        color: var(--heading-color);
        display: block;
        font-size: 15px;
        letter-spacing: -0.2px;
        font-weight: 700;
        padding: 0;
        margin: 0;
        line-height: 1;
        text-decoration: none;
        -webkit-font-smoothing: antialiased;
        position: relative;
        z-index: 1;
        transition: color 0.3s ease;
    }

    .header-menu-wrap ul li>a::after {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--primary-color);
        transition: width 0.3s ease, left 0.3s ease;
    }

    .header-menu-wrap ul li>a:hover {
        color: var(--primary-color);
    }

    .header-menu-wrap ul li>a:hover::after {
        width: 100%;
        left: 0;
    }

    .header-menu-wrap ul li.active>a {
        color: var(--primary-color);
    }

    .header-menu-wrap ul li.active>a::after {
        width: 100%;
        left: 0;
    }

    .nav-cta-btn {
        background: var(--primary-color) !important;
        color: var(--white-color) !important;
        padding: 10px 22px !important;
        border-radius: 4px;
        font-weight: 600 !important;
        transition: background 0.3s ease, transform 0.2s ease !important;
    }

    .nav-cta-btn::after {
        display: none !important;
    }

    .nav-cta-btn:hover {
        background: #d4611f !important;
        transform: translateY(-1px);
    }
}

@media all and (max-width: 1200px) and (min-width: 993px) {
    .main-header-wapper {
        grid-template-columns: 150px 1fr;
    }

    .header-menu-wrap {
        padding-left: 70px;
    }

    .header-menu-wrap ul li {
        margin-right: 20px;
    }
}

@media (max-width: 992px) {
    .top-header {
        display: none;
    }

    .header-menu-wrap {
        position: relative;
        padding: 9px 0;
    }

    .header-menu-wrap::before {
        background-color: #fff;
        width: 3000px;
        height: 100%;
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
    }

    .main-header-info:after {
        transform: skewX(35deg);
    }

    .header-menu-wrap .nav-menu {
        display: none;
    }

    .mobile-menu-icon {
        background: linear-gradient(135deg, var(--primary-color) 0%, #d4611f 100%);
        width: 50px;
        height: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border-radius: 14px;
        cursor: pointer;
        position: fixed;
        top: 16px;
        right: 16px;
        z-index: 99999;
        box-shadow: 0 6px 24px rgba(235, 111, 41, 0.45), 0 0 0 3px rgba(255, 255, 255, 0.9);
        transition: transform 0.2s ease, background 0.3s ease;
    }

    .mobile-menu-icon:hover {
        transform: scale(1.08);
        box-shadow: 0 8px 32px rgba(235, 111, 41, 0.55), 0 0 0 3px rgba(255, 255, 255, 0.9);
    }

    .hamburger-line {
        width: 22px;
        height: 2.5px;
        background-color: var(--white-color);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .mobile-menu-icon.menu-open {
        background: linear-gradient(135deg, var(--bg-dark) 0%, #333 100%);
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35), 0 0 0 3px rgba(255, 255, 255, 0.9);
    }

    .mobile-menu-icon.menu-open .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-icon.menu-open .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-icon.menu-open .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .mobile-navigation-menu {
        background-color: rgba(255, 255, 255, 1);
        border-right: none;
        position: fixed;
        left: -100%;
        top: 0;
        width: min(320px, 85vw);
        height: 100vh;
        height: 100dvh;
        padding: 0;
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
        display: block;
        visibility: hidden;
        opacity: 0;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        overflow-y: auto;
    }

    .open-mobile-menu.mobile-navigation-menu {
        left: 0;
        visibility: visible;
        opacity: 1;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-menu-header {
        background: var(--primary-color);
        padding: 24px 24px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-menu-header img {
        height: 36px;
    }

    #mobile-menu-close {
        color: var(--white-color);
        position: absolute;
        right: 16px;
        top: 20px;
        width: 36px;
        height: 36px;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        border: none;
        cursor: pointer;
        transition: background 0.2s ease;
    }

    #mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    .mobile-navigation-menu .main-menu {
        display: block;
    }

    .mobile-navigation-menu ul {
        padding-left: 0;
    }

    .mobile-navigation-menu ul li {
        position: relative;
        margin: 0;
        display: block;
        padding: 0;
    }

    .mobile-navigation-menu ul li>a {
        font-family: var(--primary-font);
        color: var(--heading-color);
        display: block;
        padding: 16px 24px;
        font-size: 16px;
        line-height: 1;
        font-weight: 600;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .mobile-navigation-menu ul li:hover>a {
        color: var(--primary-color);
        background: #fff5ee;
    }

    .mobile-navigation-menu ul li ul {
        background-color: transparent;
        width: 100%;
        opacity: 1;
        padding: 0;
        visibility: visible;
        position: inherit;
        display: none;
        top: inherit;
        left: inherit;
        box-shadow: none;
    }
}

@media (max-width: 767px) {
    .main-header-info:before {
        height: calc(100% + 1px);
        left: -1px;
        top: -1px;
    }

    .main-header-info:after {
        transform: skewX(41.5deg);
    }
}

@media (max-width: 600px) {
    .mobile-navigation-menu {
        width: 100%;
        max-width: 100vw;
    }
}

body.menu-open {
    overflow: hidden;
}

.main-header-wapper {
    display: grid;
    grid-template-columns: 200px auto;
    align-items: center;
}

.site-logo img {
    width: 150px;
}

.sticky-header {
    display: none;
}

.main-header-info {
    position: relative;
}

.main-header-info:before {
    background-color: var(--primary-color);
    clip-path: polygon(0 0, 0% 0%, 100% 100%, 0% 100%);
    width: 50px;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
}

.main-header-info:after {
    background-color: white;
    transform: skewX(23deg);
    width: 8px;
    height: 100%;
    content: "";
    position: absolute;
    left: 7px;
    top: 0;
}

/* Top Header */
.top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-left: 80px;
}

.top-header:before {
    background-color: var(--primary-color);
    content: "";
    width: 6000px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.top-left {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.top-header-nav li a,
.top-left li a,
.top-left li {
    font-family: var(--primary-font);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    line-height: 1;
    text-decoration: none;
}

.top-left li i {
    color: var(--white-color);
    font-size: 13px;
    margin-right: 6px;
}


.top-right {
    display: inline-flex;
    align-items: center;
}


.top-header-nav {
    min-height: 40px;
    display: flex;
    align-items: center;
    margin-right: 40px;
}

.top-header-nav li {
    position: relative;
}

.top-header-nav li:not(:first-of-type) {
    margin-left: 20px;
}

.top-header-nav li:not(:last-of-type):before {
    background-color: #b40007;
    width: 2px;
    height: 15px;
    content: "";
    position: absolute;
    right: -13px;
    top: 50%;
    transform: translateY(-50%);
}

.header-social-share {
    display: flex;
    align-items: center;
}

.header-social-share li a {
    color: var(--white-color);
    font-size: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid white;
}

.header-social-share li:last-child a {
    border-right: 1px solid white;
}

.site-logo {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Navigation Menu */
.nav-menu-wrapper .site-logo {
    display: none;
}

.menu-right-item {
    display: flex;
    align-items: center;
    column-gap: 15px;
    height: 100%;
}

.menu-right-item>div {
    height: 100%;
    display: flex;
    align-items: center;
}

.menu-right-item .menu-action-btn {
    color: var(--heading-color);
    cursor: pointer;
    font-size: 25px;
    position: relative;
}

.menu-right-item .dl-search-icon {
    clip-path: polygon(0 0, 100% 0, 100% 70%, 80% 100%, 0 100%);
    margin-top: 5px;
}

@media (max-width: 767px) {

    .menu-right-item .dl-search-icon,
    .menu-action-btn.cart {
        display: none;
    }
}

.menu-action-btn.cart i {
    font-size: 28px;
}

.menu-action-btn.cart span {
    background-color: var(--primary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    right: -5px;
    bottom: -5px;
    font-size: 14px;
    font-weight: 500;
}

.menu-right-item .default-btn {
    margin-left: 10px;
    padding: 15px 30px;
}

@media (max-width: 1170px) {
    .menu-right-item .default-btn {
        padding: 20px 25px;
    }
}


/* Menu Button */
.menu-right-item .menu-btn {
    background-color: var(--heading-color);
    color: var(--white-color);
    height: 100%;
    padding: 0 30px;
    display: flex;
    align-items: center;
}

.menu-right-item .menu-btn:hover {
    background-color: var(--bg-dark);
}

/* Burger Menu - hidden by default */
.mobile-menu-icon {
    display: none;
}

/* Menu Style */
@media (min-width: 993px) {
    .nav-menu-wrapper {
        margin-bottom: -30px;
    }

    .sticky-header .nav-menu-wrapper {
        margin: 0;
    }

    .sticky-header .header-menu-wrap ul {
        padding-left: 0;
    }

    .header-menu-wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        padding-left: 80px;
    }

    .header-menu-wrap:before {
        background-color: var(--white-color);
        width: 6000px;
        height: 100%;
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
    }

    .header-menu-wrap ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .header-menu-wrap ul li {
        display: inline-block;
        position: relative;
        padding: 30px 0;
        margin-right: 30px;
    }

    .header-menu-wrap ul li>a {
        font-family: var(--primary-font), sans-serif;
        color: var(--heading-color);
        display: block;
        font-size: 15px;
        letter-spacing: -0.2px;
        font-weight: 700;
        padding: 0;
        margin: 0;
        line-height: 1;
        text-decoration: none;
        -webkit-font-smoothing: antialiased;
        position: relative;
        z-index: 1;
        transition: color 0.3s ease;
    }

    .header-menu-wrap ul li>a::after {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--primary-color);
        transition: width 0.3s ease, left 0.3s ease;
    }

    .header-menu-wrap ul li>a:hover {
        color: var(--primary-color);
    }

    .header-menu-wrap ul li>a:hover::after {
        width: 100%;
        left: 0;
    }

    .header-menu-wrap ul li.active>a {
        color: var(--primary-color);
    }

    .header-menu-wrap ul li.active>a::after {
        width: 100%;
        left: 0;
    }

    .nav-cta-btn {
        background: var(--primary-color) !important;
        color: var(--white-color) !important;
        padding: 10px 22px !important;
        border-radius: 4px;
        font-weight: 600 !important;
        transition: background 0.3s ease, transform 0.2s ease !important;
    }

    .nav-cta-btn::after {
        display: none !important;
    }

    .nav-cta-btn:hover {
        background: #d4611f !important;
        transform: translateY(-1px);
    }

    .header-menu-wrap li ul {
        background-color: var(--white-color);
        box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 10%);
        border-radius: 0;
        width: 220px;
        padding: 0;
        display: block;
        position: absolute;
        left: -35px;
        top: 70px;
        opacity: 0;
        visibility: hidden;
        z-index: 0;
        -webkit-transform: perspective(300px) rotateX(-18deg);
        transform: perspective(300px) rotateX(-18deg);
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
    }

    .header-menu-wrap li:hover>ul {
        -webkit-transform: perspective(300px) rotateX(0deg);
        transform: perspective(300px) rotateX(0deg);
        opacity: 1;
        visibility: visible;
        top: 75px;
        z-index: 99;
    }

    .header-menu-wrap li li {
        display: flex;
        justify-content: space-between;
        padding: 15px 20px;
        margin: 0;
        border-bottom: 1px solid #ddd;
        text-align: left;
        position: relative;
        transition: all 0.2s ease-in-out;
    }

    .header-menu-wrap li li:last-child {
        margin: 0;
        border-bottom: 0;
    }

    .header-menu-wrap li li>a {
        font-family: var(--body-font);
        color: var(--heading-color);
        display: block;
        height: auto;
        line-height: inherit;
        font-weight: 500;
        font-size: 15px;
        /* text-transform: capitalize; */
        line-height: 20px;
        letter-spacing: -0.2px;
        width: 100%;
        -webkit-font-smoothing: antialiased;
    }

    .header-menu-wrap li li:before {
        background-color: var(--bg-grey);
        content: "";
        width: 0;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        transition: width .5s linear;
    }

    .header-menu-wrap li li:hover:before {
        width: 100%;
    }

    .header-menu-wrap li li:after {
        background-color: var(--primary-color);
        width: 3px;
        height: 100%;
        content: "";
        position: absolute;
        left: 0px;
        top: 0;
        visibility: hidden;
        opacity: 0;
        transition: all .2s cubic-bezier(.75, 0, .175, 1);
    }

    .header-menu-wrap li li:hover:after {
        visibility: visible;
        opacity: 1;
    }

    .header-menu-wrap li li>a:hover {
        color: var(--heading-color);
    }

    .header-menu-wrap li ul li ul {
        width: 220px;
        position: absolute;
        left: 100%;
        top: 0;
    }

    .header-menu-wrap li ul {
        display: block !important;
    }

    /* Sticky Header */
    .sticky-header {
        background-color: var(--white-color);
        width: 100%;
        position: fixed;
        left: 0;
        top: 0;
        display: block;
        transform: translateY(-100%);
        z-index: 99;
    }

    .sticky-header .top-header {
        display: none;
    }

    .sticky-header .main-header-info:after {
        transform: skewX(31.5deg);
    }

    .sticky-header .nav-menu-wrapper .site-logo {
        display: block;
        max-width: 150px;
    }

    .sticky-header.sticky-fixed-top {
        transition: transform 1s ease;
        will-change: transform;
    }

    .sticky-header.sticky-fixed-top {
        transform: translateY(0);
        box-shadow: 0 10px 60px rgb(0 0 0 / 10%);
    }

    .sticky-header.sticky-fixed-top .header-menu-wrap .nav-menu>li {
        padding: 32px 0;
    }

    .sticky-header.sticky-fixed-top .header-menu-wrap li:hover>ul {
        top: 79px;
    }

    .sticky-fixed-top .menu-right-item .menu-btn {
        height: auto;
        padding: 10px 30px;
    }
}

@media all and (max-width: 1200px) and (min-width: 993px) {
    .main-header-wapper {
        grid-template-columns: 150px 1fr;
    }

    .header-menu-wrap {
        padding-left: 70px;
    }

    .header-menu-wrap ul li {
        margin-right: 20px;
    }
}

.mobile-navigation-menu {
    display: none;
}

@media (max-width: 992px) {
    .top-header {
        display: none;
    }

    .header-menu-wrap {
        position: relative;
        padding: 9px 0;
    }

    .header-menu-wrap::before {
        background-color: #fff;
        width: 3000px;
        height: 100%;
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
    }

    .main-header-info:after {
        transform: skewX(35deg);
    }

    .header-menu-wrap .nav-menu {
        display: none;
    }

    /* Mobile Menu */
    .navigation-menu {
        display: none;
    }

    .mobile-menu-icon {
        background: linear-gradient(135deg, var(--primary-color) 0%, #d4611f 100%);
        width: 50px;
        height: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border-radius: 14px;
        cursor: pointer;
        position: fixed;
        top: 16px;
        right: 16px;
        z-index: 99999;
        box-shadow: 0 6px 24px rgba(235, 111, 41, 0.45), 0 0 0 3px rgba(255, 255, 255, 0.9);
        transition: transform 0.2s ease, background 0.3s ease;
    }

    .mobile-menu-icon:hover {
        transform: scale(1.08);
        box-shadow: 0 8px 32px rgba(235, 111, 41, 0.55), 0 0 0 3px rgba(255, 255, 255, 0.9);
    }

    .hamburger-line {
        width: 22px;
        height: 2.5px;
        background-color: var(--white-color);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .mobile-menu-icon.menu-open {
        background: linear-gradient(135deg, var(--bg-dark) 0%, #333 100%);
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35), 0 0 0 3px rgba(255, 255, 255, 0.9);
    }

    .mobile-menu-icon.menu-open .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-icon.menu-open .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-icon.menu-open .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    #mobile-menu-close {
        color: var(--heading-color);
        position: absolute;
        right: 15px;
        top: 20px;
        width: 60px;
        height: 60px;
        font-size: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    #mobile-menu-close:hover {
        color: var(--primary-color);
    }

    .mobile-navigation-menu {
        background-color: rgba(255, 255, 255, 1);
        border-right: none;
        position: fixed;
        left: -100%;
        top: 0;
        width: min(320px, 85vw);
        height: 100vh;
        height: 100dvh;
        padding: 0;
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
        display: block;
        visibility: hidden;
        opacity: 0;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        overflow-y: auto;
    }

    .open-mobile-menu.mobile-navigation-menu {
        left: 0;
        visibility: visible;
        opacity: 1;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-menu-header {
        background: var(--primary-color);
        padding: 24px 24px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-menu-header img {
        height: 36px;
    }

    #mobile-menu-close {
        color: var(--white-color);
        position: absolute;
        right: 16px;
        top: 20px;
        width: 36px;
        height: 36px;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        border: none;
        cursor: pointer;
        transition: background 0.2s ease;
    }

    #mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    .mobile-navigation-menu .main-menu {
        display: block;
    }

    .mobile-navigation-menu .dropdown-plus {
        width: 100px;
        height: 49px;
        line-height: 49px;
        position: absolute;
        top: 2px;
        right: 32px;
        cursor: pointer;
        z-index: 1;
    }

    .mobile-navigation-menu .dropdown-plus:before,
    .mobile-navigation-menu .dropdown-plus:after {
        position: absolute;
        content: "";
        top: 21px;
        right: 10px;
        width: 10px;
        height: 2px;
        background-color: var(--bg-dark);
    }

    .mobile-navigation-menu .dropdown-plus:after {
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .mobile-navigation-menu .dropdown-plus.dropdown-open:after {
        display: none;
    }

    .mobile-navigation-menu ul {
        padding-left: 0;
    }

    .mobile-navigation-menu ul li {
        position: relative;
        margin: 0;
        display: block;
        padding: 0;
    }

    .mobile-navigation-menu ul li>a {
        font-family: var(--primary-font);
        color: var(--heading-color);
        display: block;
        padding: 16px 24px;
        font-size: 16px;
        line-height: 1;
        font-weight: 600;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .mobile-navigation-menu ul li:hover>a,
    .mobile-navigation-menu li li:hover>a {
        color: var(--primary-color);
        background: #fff5ee;
    }

    .mobile-navigation-menu ul li ul li ul,
    .mobile-navigation-menu ul li ul {
        background-color: transparent;
        width: 100%;
        opacity: 1;
        padding: 0;
        visibility: visible;
        position: inherit;
        display: none;
        top: inherit;
        left: inherit;
        box-shadow: none;
    }

    .mobile-navigation-menu li li {
        padding: 0 20px;
    }

    .mobile-navigation-menu li li {
        padding-left: 10px;
    }

    .mobile-navigation-menu li li:last-child {
        border-bottom: none;
    }

    .mobile-navigation-menu li li>a {
        color: var(--body-color);
        font-weight: 500;
        font-size: 15px;
        padding: 14px 20px 14px 40px;
    }

    .menu-right-item {
        justify-content: flex-end;
    }
}

@media (max-width: 767px) {
    .main-header-info:before {
        height: calc(100% + 1px);
        left: -1px;
        top: -1px;
    }

    .main-header-info:after {
        transform: skewX(41.5deg);
    }
}

@media (max-width: 600px) {
    .mobile-navigation-menu {
        width: 100%;
        max-width: 100vw;
    }
}

.about-img-wrap>img:nth-child(1) {
    width: 350px;
    height: 450px;
    border-radius: 2px;
    border: 10px solid var(--white-color);
    box-shadow: var(--box-shadow);
    object-fit: cover;
    object-position: center;
}

.about-img-wrap>img:nth-child(2) {
    width: 300px;
    height: 250px;
    border-radius: 2px;
    border: 10px solid var(--white-color);
    box-shadow: var(--box-shadow);
    position: absolute;
    right: 50px;
    bottom: -110px;
    object-fit: cover;
    object-position: center;
    z-index: 2;
}

.about-img-wrap>img:nth-child(3) {
    width: 230px;
    position: absolute;
    right: 20px;
    top: -100px;
    z-index: 1;
    animation-name: AnimUpDown;
    -webkit-animation-name: AnimUpDown;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
}

.about-img-wrap .about-img-info {
    position: absolute;
    left: 110px;
    bottom: 0;
    transform: rotate(-90deg);
    z-index: 2;
}

.about-img-info {
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0px 0px 0px 3px #DF111950;
    padding: 15px 30px;
    border-radius: 2px;
    display: inline-flex;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.promo-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.promo-list li {
    display: grid;
    grid-template-columns: 60px 1fr;
    align-items: flex-start;
    gap: 20px;
}

.promo-list li i {
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 35px;
    width: 60px;
    height: 60px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-content h3 {
    line-height: 1;
    font-weight: 700;
    margin-bottom: 5px;
}

.promo-content p {
    font-size: 16px;
    margin: 0;
}

.promo-list.white .promo-content h3 {
    color: var(--white-color);
}

.promo-list.white .promo-content p {
    color: var(--grey-color);
}

.call-info {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 15px;
    align-items: center;
}

.call-info i {
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0px 0px 0px 3px #DF111950;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-info h3 {
    font-weight: 700;
    line-height: 1;
    margin: 0;
}

.call-info h3 span {
    color: var(--body-color);
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
}

.call-info.white h3 {
    color: var(--white-color);
}

.call-info.white h3 span {
    color: var(--grey-color);
}

@media (max-width: 992px) {
    .about-img-wrap {
        margin-bottom: 40px;
    }

    .about-img-wrap>img:nth-child(2) {
        bottom: 0;
        right: 80px;
    }

    .about-img-wrap>img:nth-child(3) {
        width: 200px;
        right: 100px;
        top: -50px;
    }

    .about-img-wrap .about-img-info {
        left: 250px;
        bottom: 100px;
    }
}

@media (max-width: 767px) {
    .about-img-wrap>img:nth-child(2) {
        width: 200px;
        height: 150px;
    }

    .about-img-wrap .about-img-info {
        left: 100px;
        bottom: 120px;
        transform: rotate(0);
    }

    .about-section .btn-group,
    .promo-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}


/*===================================================
    03 Company
====================================================*/
.company-img-wrap {
    width: 550px;
    height: 500px;
    position: relative;
}

.company-img-wrap img {
    position: absolute;
    left: 0;
    top: 0;
}

.company-img-wrap img:nth-child(1) {
    border-radius: 2px;
    width: 300px;
    height: 400px;
}

.company-img-wrap img:nth-child(2) {
    width: 450px;
    left: 30px;
    top: auto;
    bottom: 0;
}

.certification {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 2px;
    text-align: center;
    position: absolute;
    left: auto;
    right: 20%;
    top: 10%;
    animation-name: AnimUpDown;
    -webkit-animation-name: AnimUpDown;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
}

.certification i {
    color: var(--white-color);
    font-size: 50px;
    margin-bottom: 10px;
    display: block;
}

.certification h3 {
    color: var(--white-color);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin: 0;
}

.certification h3 span {
    color: var(--grey-color);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-top: 10px;
}

.company-list-wrap {
    display: grid;
    grid-template-columns: 1fr 280px;
    align-items: center;
    gap: 30px;
    max-width: 90%;
}

@media (min-width: 993px) {
    .company-list-wrap .check-list {
        max-width: 80%;
    }
}

.founder-card {
    background-color: var(--bg-grey);
    background-image: url(../img/wave-pattern.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    padding: 20px 30px;
    border-radius: 2px;
    text-align: center;
}

.founder-card .founder-thumb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    margin-bottom: 10px;
}

.founder-card h3 {
    font-weight: 700;
}

.founder-card h3 span {
    color: var(--body-color);
    display: block;
    font-size: 15px;
    font-weight: 500;
}

@media (max-width:992px) {
    .company-img-wrap img:nth-child(2) {
        left: 100px;
        bottom: 50px;
    }
}

@media (max-width:767px) {

    .company-img-wrap {
        width: 100%;
    }

    .company-img-wrap img:nth-child(2) {
        left: 0;
        bottom: 50px;
        width: 350px;
    }

    .certification {
        right: 0;
    }

    .company-list-wrap {
        grid-template-columns: 1fr;
    }
}

/*===================================================
    04 Service Section
====================================================*/
.service-section {
    position: relative;
    z-index: 1;
}

.service-section .bg-half {
    background-image: url(../img/content-bg-7.jpg);
}

.service-item {
    background-color: var(--white-color);
    border-radius: 2px;
    overflow: hidden;
}

.service-thumb {
    overflow: hidden;
}

.service-card .service-thumb img,
.service-thumb img {
    transform: scale(1.05) translateX(0);
    transition: var(--transition);
}

.service-card:hover .service-thumb img,
.service-item:hover .service-thumb img {
    transform: scale(1.05) translateX(2%);
}

.service-content {
    background-image: url(../img/wave-pattern.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 30%;
    padding: 60px 40px 30px;
    position: relative;
}

.service-content:before {
    background-color: var(--primary-color);
    width: 60%;
    height: 4px;
    content: "";
    position: absolute;
    left: 50%;
    top: -2px;
    transform: translateX(-50%);
    transition: var(--transition);
}

.service-card:hover .service-content:before,
.service-item:hover .service-content:before {
    width: 80%;
}

.service-content i {
    background-color: var(--bg-grey);
    border: 10px solid var(--white-color);
    color: var(--primary-color);
    box-shadow: var(--box-shadow);
    font-size: 45px;
    width: 80px;
    height: 80px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40px;
    top: -40px;
}

.service-content h3 a {
    font-size: 22px;
    font-weight: 700;
}

.service-content p {
    font-size: 17px;
}

.service-content .read-more {
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    padding: 5px 20px;
    border-radius: 2px;
    position: absolute;
    left: 40px;
    bottom: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.service-content .read-more:hover {
    background-color: var(--bg-dark);
    color: var(--white-color);
    transition: var(--transition);
}

.service-item:hover .service-content .read-more {
    transform: translateY(0);
}

/*Service Card 2*/

.service-card .service-thumb {
    width: 100%;
    height: 400px;
    border-radius: 2px;
    overflow: hidden;
}

.service-card .service-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-card .service-content {
    background-color: var(--white-color);
    box-shadow: var(--box-shadow);
    margin-top: -100px;
    margin-right: 30px;
}

.service-card .service-content i {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    box-shadow: 0px 0px 0px 5px #DF111950;
}

/*===================================================
    05 Project Section
====================================================*/
.project-section {
    position: relative;
}

.project-section .bg-half {
    background-image: url(../img/content-bg-4.jpg);
}

.project-section .bg-half.white {
    background-image: url(../img/content-bg-7.jpg);
    height: 540px;
}

.project-section {
    position: relative;
    z-index: 1;
}

.project-section .swiper-outside {
    position: relative;
}

.project-carousel {
    overflow: hidden;
}

.project-thumb {
    width: 100%;
    height: 330px;
    border-radius: 2px;
    overflow: hidden;
}

.project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.project-content {
    background-color: #fff;
    padding: 20px 30px;
    margin-right: 20px;
    transform: translateY(-20px);
    box-shadow: var(--box-shadow);
}

.project-content .category {
    background-color: var(--primary-color);
    font-family: var(--primary-font);
    color: var(--white-color);
    padding: 10px 15px;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1;
    font-weight: 700;
    /* text-transform: capitalize; */
    position: absolute;
    left: 30px;
    top: -20px;
}

.project-content .category:before {
    background-color: #ad070d;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    content: "";
    width: 10px;
    height: 20px;
    position: absolute;
    left: -10px;
    top: 0;
    z-index: -1;
}

.project-content h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    margin: 5px 0 0;
}

/*===================================================
    06 Content Features
====================================================*/
.content-features {
    position: relative;
    z-index: 1;
}

.content-features .bg-half {
    background-image: url(../img/content-bg-2.jpg);
    background-position: right center;
    width: 40%;
    height: 100%;
    left: auto;
    right: 0;
}

.content-features .map-pattern {
    background-position: top left;
    opacity: 0.1;
    left: 0;
    top: 10%;
}

.content-features .promo-list {
    display: grid;
}

.counter-wrap {
    background-color: var(--white-color);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    background-image: url(../img/map-pattern.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 60%;
    border-radius: 2px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 80%;
    margin: 0 auto;
    transform: translateY(-50px);
}

.counter-item {
    display: flex;
    align-items: center;
}

.counter-icon {
    width: 80px;
    height: 80px;
    font-size: 50px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.counter-icon:before {
    background-color: var(--bg-grey);
    width: 50%;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.counter-icon i {
    color: var(--primary-color);
    font-size: 50px;
}

.counter-content h3 {
    color: var(--heading-color);
    font-size: 52px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 5px;
}

.counter-content h3 span {
    line-height: 1;
}

.counter-content h4 {
    color: var(--body-color);
    font-size: 14px;
    font-weight: 600;
    /* text-transform: capitalize; */
    letter-spacing: 0;
}

/*Features Tab*/
.feature-tab {
    box-shadow: var(--box-shadow);
    position: absolute;
    left: 0;
    bottom: -140px;
}

.feature-tab-nav .nav-tabs {
    column-gap: 10px;
    border: none;
    margin-bottom: 1px;
}

.feature-tab-nav .nav-link {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 0;
    border: none;
    font-size: 18px;
    font-weight: 600;
    /* text-transform: capitalize; */
}

.feature-tab-nav .nav-link.active {
    background-color: var(--white-color);
    color: var(--heading-color);
}

.feature-tab-nav .nav-link:focus,
.feature-tab-nav .nav-link:hover {
    border: none;
}

.feature-tab .tab-inner {
    background-color: var(--white-color);
    background-image: url(../img/map-pattern.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    padding: 30px;
}

.feature-tab-content h3 {
    font-weight: 700;
}

.feature-tab .tab-inner .tab-thumb {
    width: 350px;
    height: 280px;
    border-radius: 2px;
    overflow: hidden;
}

.feature-tab .tab-inner .tab-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width:992px) {
    .counter-wrap {
        padding: 40px 30px;
        width: 100%;
    }

    .counter-content h3 {
        font-size: 36px;
    }

    .feature-tab {
        display: none;
    }
}

@media (max-width:767px) {
    .counter-wrap {
        padding: 40px 10px;
        width: 100%;
        flex-direction: column;
        transform: translateY(-30px);
    }

    .counter-content h3 {
        font-size: 36px;
    }

    .content-features .bg-half {
        display: none;
    }

}

/*===================================================
    07 Process Features
====================================================*/
.process-section {
    position: relative;
    z-index: 1;
}

.process-wrapper {
    background-image: url(../img/process-line.png);
    background-repeat: no-repeat;
    background-position: center 20px;
    background-size: contain;
}

.process-item {
    text-align: center;
}

@media (min-width:993px) {
    .process-wrapper .col-lg-3:nth-child(2n + 2) {
        margin-top: 50px;
    }
}

.process-item .process-icon {
    background-color: var(--bg-grey);
    color: var(--primary-color);
    box-shadow: var(--box-shadow);
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-style: solid;
    border-width: 10px 10px 10px 10px;
    border-color: var(--white-color);
    border-radius: 2px 2px 2px 2px;
    margin: 0 auto;
    position: relative;
    margin-bottom: 20px;
}

.process-item .process-icon i {
    font-size: 50px;
}

.process-item .process-icon span {
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0px 0px 0px 3px #DF111950;
    width: 30px;
    height: 30px;
    font-size: 16px;
    line-height: 30px;
    font-weight: 600;
    border-radius: 0;
    text-align: center;
    position: absolute;
    position: absolute;
    right: -25px;
    top: 10px;
}

.process-item .process-content h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    /* text-transform: capitalize; */
    margin-bottom: 10px;
}

.process-item .process-content p {
    margin: 0;
}

@media (max-width: 992px) {
    .process-wrapper {
        background-size: 0;
    }
}


/*===================================================
    08 CTA Section
====================================================*/
.cta-wrapper {
    background-image: url(../img/content-bg-3.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    padding: 50px;
}

.cta-2 .cta-wrapper {
    background-image: url(../img/content-bg-7.jpg);
}

@media (min-width:993px) {
    .cta-wrapper .cta-men {
        background-image: url(../img/delivery-men-2.png);
        background-repeat: no-repeat;
        background-position: right bottom;
        background-size: contain;
        width: 350px;
        height: 450px;
        position: absolute;
        right: 80px;
        bottom: 0;
        object-fit: cover;
        object-position: center;
    }

    .cta-2 .cta-wrapper .cta-men {
        background-image: url(../img/forklift.png);
        width: 490px;
        height: 400px;
        bottom: -40px;
    }
}

@media (max-width: 767px) {
    .cta-wrapper {
        padding: 50px 20px;
    }

    .cta-wrapper .section-heading {
        text-align: center;
    }
}

/*Promo Item*/
.promo-item-wrapper .promo-item {
    background-color: var(--bg-grey);
    background-image: url(../img/truck-pattern.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 50%;
    display: flex;
    align-items: center;
    column-gap: 30px;
    padding: 40px;
}

.promo-section.move-top {
    position: relative;
    margin-top: -80px;
    z-index: 2;
}

.promo-item-wrapper .col-lg-4:nth-child(2) .promo-item {
    background-color: var(--primary-color);
    background-image: url(../img/ship-pattern.png);
}

.promo-item-wrapper .col-lg-4:nth-child(3) .promo-item {
    background-color: var(--bg-dark);
    background-image: url(../img/plane-pattern.png);
}

.promo-item-wrapper .col-lg-4:nth-child(2) .promo-item i {
    color: var(--white-color);
}

.promo-item-wrapper .col-lg-4:nth-child(3) .promo-item .promo-content h3,
.promo-item-wrapper .col-lg-4:nth-child(2) .promo-item .promo-content h3 {
    color: var(--white-color);
}

.promo-item-wrapper .col-lg-4:nth-child(3) .promo-item .promo-content p,
.promo-item-wrapper .col-lg-4:nth-child(2) .promo-item .promo-content p {
    color: var(--grey-color);
}

.promo-item-wrapper .promo-item i {
    color: var(--primary-color);
    font-size: 50px;
}

/*===================================================
    09 Team Section
====================================================*/
.team-thumb {
    width: 100%;
    height: 380px;
    position: relative;
    overflow: hidden;
}

.team-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    left: 0;
    top: 0;
    transition: all .3s linear;
}

.team-item:hover .team-thumb img {
    transform: scale(1.02);
}

.team-social {
    background-color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 40%;
    transform: translateY(-50%) translateX(-100%);
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease;
}

.team-social li a {
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    position: relative;
    z-index: 1;
}

.team-social li a:before {
    background-color: var(--bg-dark);
    width: 0;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease;
    z-index: -1;
}

.team-social li a:hover:before {
    width: 100%;
    visibility: visible;
    opacity: 1;
}

.team-social li a:hover {
    color: #fff;
}

.team-social li:not(:last-of-type) a {
    border-bottom: 1px solid white;
}

.team-item:hover .team-social {
    transform: translateY(-50%) translateX(0);
    visibility: visible;
    opacity: 1;
}

.team-content {
    background-color: var(--white-color);
    box-shadow: var(--box-shadow);
    margin-top: -30px;
    padding: 25px 20px;
    margin-right: 20px;
    position: relative;
    z-index: 2;
}

.team-content .position {
    background-color: var(--primary-color);
    color: var(--white-color);
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
    display: inline-block;
    line-height: 1;
    padding: 10px 25px 10px 20px;
    position: absolute;
    left: 0;
    top: -35px;
}

.team-content h3 {
    font-size: 19px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

/*===================================================
    10 Quote Section
====================================================*/
.quote-section {
    background-image: url(../img/content-bg-5.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.quote-section.quote-2 {
    background-image: url(../img/content-bg-7.jpg);
}

/*Quote Form*/
.quote-form {
    background-color: var(--white-color);
    box-shadow: var(--box-shadow);
    border-radius: 2px;
    padding: 40px;
    width: 550px;
    position: absolute;
    right: 0;
    top: -50px;
    z-index: 9;
}

.quote-form-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.quote-form-group .form-field:nth-child(8),
.quote-form-group .form-field:nth-child(7) {
    grid-column: span 2;
}

.quote-form-group .form-field .form-control {
    height: 50px;
    border: 1px solid #eee;
    border-radius: 0;
    color: var(--heading-color);
}

.quote-form-group .form-field textarea.form-control {
    height: 80px;
}

#form-messages,
#q-form-messages {
    margin-top: 30px;
    margin-bottom: 0;
}

@media (max-width:992px) {
    .quote-form {
        position: inherit;
        width: 100%;
        top: 0;
        margin-top: 40px;
    }
}

@media (max-width:767px) {
    .quote-form {
        padding: 50px 20px;
    }
}

/*===================================================
    11 Testimonial Section
====================================================*/
.testimonial-section {
    position: relative;
}

.testimonial-section .map-pattern {
    background-position: center center;
    top: 100px;
}

@media (min-width:993px) {
    .testimonial-section .section-heading {
        padding-top: 80px;
    }

    .cargo-container {
        background-image: url(../img/hanging-container.png);
        background-repeat: no-repeat;
        background-position: left top;
        background-size: contain;
        width: 300px;
        height: 280px;
        position: absolute;
        left: 80px;
        top: 0;
    }
}

.testimonial-carousel {
    overflow: hidden;
}

.testimonial-carousel .swiper-slide {
    padding: 15px;
    padding-top: 25px;
}

.testimonial-item {
    background-color: var(--white-color);
    box-shadow: var(--box-shadow);
    padding: 40px;
    border-radius: 2px;
    position: relative;
}

.testimonial-item:before {
    background-color: var(--primary-color);
    width: 4px;
    height: 65%;
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
}

.testimonial-item:hover:before {
    height: 75%;
}

.testimonial-item .testi-thumb {
    border: 8px solid var(--white-color);
    box-shadow: 0px 0px 20px 0.5px rgb(0 0 0 / 20%);
    width: 100px;
    height: 100px;
    position: absolute;
    left: 40px;
    top: -8px;
}

.testimonial-item .testi-thumb:before {
    background-color: #ddd;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    content: "";
    width: 12px;
    height: 13px;
    position: absolute;
    left: -18px;
    top: -9px;
    z-index: -1;
}

.testimonial-item .testi-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 2px;
}

.testi-content .client-info {
    padding-left: calc(100px + 20px);
    padding-bottom: 40px;
}

.testi-content .client-info h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    margin: 0;
}

.testi-content .client-info h3 span {
    color: var(--body-color);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-top: 10px;
}

.testimonial-item .quote-icon {
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 18px;
    width: 40px;
    height: 40px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 60px;
    bottom: -20px;
}

.swiper-outside.testi-nav .swiper-nav.swiper-next {
    right: -7.5px;
}

.swiper-outside.testi-nav .swiper-nav.swiper-prev {
    left: -7.5px;
}

/*===================================================
    12 Sponsor Section
====================================================*/
.sponsor-carousel-wrapper {
    background-color: var(--bg-grey);
    padding: 60px;
}

.sponsor-carousel {
    overflow: hidden;
}

.sponsor-carousel .swiper-slide {
    text-align: center;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-carousel .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/*===================================================
    13 Hero Section
====================================================*/
.hero-section {
    background: linear-gradient(135deg, #fff5ee 0%, #ffe8d6 30%, #fff 100%);
    min-height: 680px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(235, 111, 41, 0.12) 0%, transparent 70%);
    top: -150px;
    right: -100px;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(235, 111, 41, 0.08) 0%, transparent 70%);
    bottom: -80px;
    left: -50px;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    opacity: 0.04;
    top: 40%;
    right: 30%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
}

.hero-badge i {
    font-size: 16px;
}

.hero-title {
    font-family: var(--primary-font), sans-serif;
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-title .hl {
    color: var(--primary-color);
    position: relative;
}

.hero-title .hl::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(235, 111, 41, 0.2);
    border-radius: 4px;
    z-index: -1;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--body-color);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-btn-primary {
    background: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 4px 20px rgba(235, 111, 41, 0.35);
}

.hero-btn-primary:hover {
    background: #d4611f;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(235, 111, 41, 0.4);
}

.hero-btn-primary i {
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover i {
    transform: translateX(4px);
}

.hero-btn-secondary {
    background: var(--white-color);
    color: var(--heading-color);
    border: 2px solid #e0e0e0;
}

.hero-btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
}

.hero-stat {
    padding: 0 28px;
}

.hero-stat:first-child {
    padding-left: 0;
}

.hero-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 13px;
    color: var(--body-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: #e0e0e0;
}

/* Hero Visual (right side) */
.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    position: relative;
}

.hero-image-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(235, 111, 41, 0.15) 0%, transparent 50%);
    z-index: 1;
    border-radius: 20px;
}

.hero-image-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.hero-floating-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: var(--white-color);
    border-radius: 14px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.floating-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), #c25a1a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 20px;
}

.floating-card-text strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--heading-color);
    line-height: 1;
}

.floating-card-text span {
    font-size: 13px;
    color: var(--body-color);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 44px;
    }

    .hero-image-wrapper img {
        height: 360px;
    }
}

@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-visual {
        margin-top: 40px;
    }

    .hero-floating-card {
        bottom: -15px;
        left: 20px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 40px 0 60px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-btn {
        justify-content: center;
        padding: 14px 24px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-stat {
        padding: 0;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-image-wrapper img {
        height: 280px;
    }

    .hero-floating-card {
        left: 10px;
        bottom: -10px;
        padding: 14px 18px;
    }

    .floating-card-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .floating-card-text strong {
        font-size: 1.2rem;
    }
}

/*===================================================
    Branch Section
===================================================*/

.content-section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    text-align: center;
}

.intro-section {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 60px;
    margin-bottom: 80px;
    text-align: center;
}

.intro-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color, #007bff), #e8a43e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--primary-color, #007bff);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color, #007bff), #e8a43e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.benefit-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.vacancy-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary-color, #007bff);
    transition: transform 0.3s ease;
}

.vacancy-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 15px;
}

.vacancy-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.vacancy-type {
    background: var(--primary-color, #007bff);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.vacancy-details {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.vacancy-detail {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
}

.vacancy-detail i {
    margin-right: 8px;
    color: var(--primary-color, #007bff);
}

.application-categories {
    margin-top: 80px;
}

.category-card {
    background: linear-gradient(135deg, var(--primary-color, #007bff) 0%, #e8a43e 100%);
    color: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.category-card h4 {
    color: white;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.bonus-highlight {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin: 50px 0;
}

.bonus-highlight h2 {
    color: white;
}

.bonus-amount {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-email {
    background: var(--primary-color, #007bff);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-email:hover {
    background: #f39a14;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(111, 66, 193, 0.3);
}

.requirements-list {
    list-style: none;
    padding: 0;
}

.requirements-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 30px;
}

.requirements-list li:before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
}

.benefits-list li:before {
    content: "\2605";
    position: absolute;
    left: 0;
    color: #ffc107;
    font-weight: bold;
}

/*===================================================
    Services / Wat doen wij
===================================================*/

.partners-section {
    background: white;
    padding: 60px 0;
    border-radius: 20px;
    margin-bottom: 50px;
}

.partner-logo {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color, #007bff);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 45%));
    gap: 30px;
    margin: 50px 0;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid var(--primary-color, #007bff);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(40, 167, 69, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color, #007bff), #c99c20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: white;
}

.service-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.features-section {
    background: linear-gradient(135deg, var(--primary-color, #007bff) 0%, #c99c20 100%);
    color: white;
    border-radius: 20px;
    padding: 60px;
    margin: 80px 0;
}

.features-section h2 {
    color: white;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.feature-item h5 {
    font-size: 1.4rem;
    color: white;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.2rem;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.specialty-card {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.specialty-card:hover {
    background: var(--primary-color, #007bff);
    color: white;
    transform: translateY(-5px);
}

.specialty-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color, #007bff);
    transition: color 0.3s ease;
}

.specialty-card:hover .specialty-icon {
    color: white;
}

.certifications-section {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
}

.cert-badge {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: inline-block;
    min-width: 200px;
}

.cert-icon {
    font-size: 2.5rem;
    color: var(--primary-color, #007bff);
    margin-bottom: 15px;
}

.why-choose-section {
    text-align: center;
    padding: 80px 0;
}

.reason-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
}

.reason-card h4 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color, #007bff);
    margin-bottom: 15px;
}

.reason-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color, #007bff), #c99c20);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color, #007bff) 0%, #c99c20 100%);
    color: white;
    text-align: center;
    padding: 60px;
    border-radius: 20px;
}

.cta-section h2 {
    color: white;
}

.cta-btn {
    background: white;
    color: var(--primary-color, #007bff);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/*===================================================
    History / Wie zijn wij
===================================================*/

.section-text h4 {
    font-size: 2rem;
}

.history-timeline {
    position: relative;
    padding: 20px 0;
}

.timeline-item {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary-color, #007bff);
}

.timeline-item h5 {
    color: var(--primary-color, #007bff);
    font-weight: 600;
    margin-bottom: 15px;
}

.kernwaarden-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.kernwaarde-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.kernwaarde-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.2);
    border-color: var(--primary-color, #007bff);
}

.kernwaarde-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color, #007bff), #dba308);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.kernwaarde-card h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.info-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-color, #007bff);
    color: white;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.info-btn:hover {
    background: #0056b3;
}

.wagenpark-stats {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 50px;
    text-align: center;
}

.stat-item {
    margin-bottom: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color, #007bff);
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bg-light-section {
    background: #f8f9fa;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color, #007bff), #853f16);
    color: white;
    border-radius: 15px 15px 0 0;
}

/*===================================================
    Offerte Form
===================================================*/

.form-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color, #007bff);
}

/*===================================================
    Responsive - Component Sections
===================================================*/

@media (max-width: 992px) {
    .kernwaarden-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .vacancy-details {
        flex-direction: column;
        gap: 10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-section {
        padding: 40px 20px;
    }

    .kernwaarden-grid {
        grid-template-columns: 1fr;
    }
}

/*===================================================
    Footer
===================================================*/
.footer-wrapper {
    background-color: #f8f9fa;
    color: #333;
    padding: 70px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: "\203A";
    margin-right: 8px;
    color: var(--primary-color);
    font-weight: 700;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 4px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact li i {
    color: var(--primary-color);
    font-size: 14px;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-certs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-certs img {
    height: 45px;
    width: auto;
    object-fit: contain;
    background: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.social-share {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-share li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #e9ecef;
    color: #495057;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-share li a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.copyright-area {
    background-color: #1a1a2e;
    color: #adb5bd;
    padding: 20px 0;
    font-size: 14px;
}

.copyright-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright-inner p {
    margin: 0;
}

.copyright-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.copyright-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright-links a:hover {
    color: #fff;
}

.copyright-sep {
    color: #495057;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 575px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .copyright-inner {
        flex-direction: column;
        text-align: center;
    }

    .copyright-links {
        justify-content: center;
    }
}