:root {
    --primary-color: #005193;
    --secondary-color: #16CFED;
    --black: #232E42;
    --gray: #4B535D;
    --light-gray: #BDBDBD;
    --dark-black: #161616;
    --light-bg: #F5F5F5;
    --swiper-image-ratio: 33.3%;
    --swiper-width: 50%;
    --swiper-inactive-scale: .85;
    --swiper-mobile-width: 90%;
    --swiper-mobile-inactive-scale: .95;
}

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

body,
html {
    font-family: "Mulish", sans-serif;
    scroll-behavior: smooth;
    will-change: scroll-position;
    -webkit-overflow-scrolling: touch;
    -webkit-font-smoothing: antialiased;
    backface-visibility: hidden;
    /* transform: translateZ(0); */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: clip;
}

h1,
h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--black);
    line-height: 1.45;
}

h3 {
    font-size: clamp(1.75rem, 4vw, 2rem);
    color: var(--black);
}

h4 {
    font-size: clamp(1.5rem, 3.5vw, 1.75rem);
    color: var(--black);
}

h5 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--black);
}

h6 {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--black);
}

/* ===== Lists (Reset Defaults) ===== */
ul,
ol {
    padding-left: 0;
    list-style: none;
    color: var(--black);
}

li {
    margin-bottom: 0.5rem;
}

p {
    color: var(--gray);
    line-height: 1.7;
}

a {
    text-decoration: none;
}

.text-justify{
    text-align: justify;
}

.button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 50px;
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.button-black {
    background-color: var(--black);
    color: #fff;
    padding: 12px 50px;
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.button::before,
.button-black::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgb(255 255 255 / 30%) 50%,
            rgba(255, 255, 255, 0) 100%);
    z-index: -1;
    transition: left 0.7s ease;
}

.button:hover,
.button-black:hover {
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.15), 0 5px 5px rgba(0, 0, 0, 0.12);
}

.button:hover::before,
.button-black:hover::before {
    left: 100%;
}

.section-heading {
    color: var(--black);
    font-weight: 400;
}

.section-subheading {
    background: #16CFED;
    background: linear-gradient(to bottom, #16CFED 35%, #7AE5A4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.863), rgba(255, 255, 255, 0));
    z-index: -1;
    pointer-events: none;
}

header {
    position: absolute;
    top: 0;
    z-index: 99;
    width: 100%;
}

header .navbar {
    padding: 0.5rem 0;
}

header .menu-item a {
    color: var(--dark-black);
    font-weight: 600;
    text-decoration: none;
}


header #primary-menu {
    margin-left: 0;
    margin-bottom: 0;
    display: inline-flex;
    gap: 3.1rem;
    list-style: none;
    padding-left: 0;
    font-size: 0.93rem;
    padding-right: 3.1rem;
}

header #navbarNav {
    justify-content: center;
}

header .navbar-toggler {
    width: 50px;
    height: 35px;
    padding: 0;
}

.header.fixed-nav {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transform: translateY(-100%);
    animation: slideDown 0.3s ease forwards;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.enquiry-combo {
    border-radius: 4px;
    overflow: hidden;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.enquiry-icon {
    background-color: var(--primary-color);
    padding: 0.3rem 0.5rem;
}

.enquiry-phone {
    background-color: white;
    color: var(--black);
    padding: 0.2rem 0.5rem;
    border: 1px solid var(--black);
}

.enquiry-combo:hover .enquiry-icon {
    background-color: var(--primary-color);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}


/* Hero Section */
.hero-section {
    position: relative;
}

.hero-section .hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section .hero-content {
    position: absolute;
    bottom: 0;
    left: 5%;
    transform: translateY(-5%);
    z-index: 9;
}

.hero-content h1 {
    font-size: 9vw;
    margin-bottom: 0;
    line-height: 1;
    font-family: "DM Serif Display", serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content h5 {
    font-size: 5.5vw;
    font-family: "DM Serif Display", serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.services-section {
    border-bottom: 1px solid var(--light-gray);
}

.services-section .service-card {
    padding: 40px 25px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.services-section .service-card::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 75%;
    height: 65%;
    transform: translate(-50%, -50%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
}

.services-section .service-card:hover::before {
    opacity: 1;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.12) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.12) 1px, transparent 1px);
    transition: opacity 0.5s ease;
    transition: opacity 0.6s ease;
}

.services-section .service-card-1 {
    padding-left: 0 !important;
}

.services-section .service-card-3 {
    padding-right: 0 !important;
}

.services-section .row div:not(:last-child) .service-card {
    border-right: 1px solid var(--light-gray);
}

.services-section .service-icon {
    max-width: 66px;
    height: auto;
}

.services-section .service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.services-section .service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.6;
}

.services-section .service-description {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.8;
}

.services-section .service-title,
.services-section .service-description {
    max-width: 350px;
}

.service-f {
    font-size: 22px;
    color: var(--black);
    transition: color 0.5s ease
}

.services-section .service-card:hover .service-f {
    color: var(--secondary-color);
}

.experience-section-content {
    background-color: var(--light-bg);
}

.experience-section {
    color: #2a2f45;
}

.experience-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.circle-list {
    flex: 1;
    min-width: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle {
    width: 210px;
    height: 210px;
    border: 1px solid #2a2f45;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    gap: 6px;
}

.experience-years {
    flex: 1;
    min-width: 180px;
    display: flex;
    align-items: center;
    border-left: 1px solid #2a2f45;
    padding-left: 30px;
}

.years {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 20px;
}

.years .number {
    font-size: 10rem;
    font-weight: 500;
    line-height: 1;
}

.years .plus {
    font-size: 6rem;
    margin-top: -10px;
    font-weight: bold;
}

.text {
    font-size: 14px;
    line-height: 1.5;
}

.sticky-image {
    top: 80px;
    z-index: 1;
    position: sticky;
}


.bar-container {
    margin-top: 1rem;
}

.bar-label {
    font-weight: 500;
    font-size: 0.95rem;
}

.bar {
    height: 8px;
    border-radius: 4px;
    margin-top: 4px;
}

.bar1 {
    background-color: #1a1a1a;
    width: 90%;
}

.bar2 {
    background: #16CFED;
    background: linear-gradient(90deg, rgba(22, 207, 237, 1) 0%, rgba(122, 229, 164, 1) 83%);
    width: 70%;
}


.future-card-section {
    background-image: url(https://storeyourcode.com/demo/zavian-overseas/wp-content/themes/zavian-overseas/assets/images/bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.card-custom {
    background-color: #2A3642;
    border-radius: 0.75rem;
    padding: 2rem;
    position: relative;
    min-height: 230px;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.card-custom:hover {
    transform: translateY(-5px);
}

.card-number {
    position: absolute;
    top: 1px;
    right: 1px;
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 0 0 8px #121C27;
}

.card-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.card-text {
    color: #d1dbe5;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 300;
}

.services-nav {
    border-left: 2px solid #eee;
}

.service-item {
    cursor: pointer;
    padding: 18px 20px;
    border-left: 1px solid var(--light-gray);
    color: #000;
    transition: all 0.3s;
}

.service-item.active {
    background: #16CFED;
    background: linear-gradient(to bottom, #16CFED 35%, #7AE5A4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-left: 3px solid #00bcd4;
}

.blue-line {
    width: 64px;
    display: none;
    height: 8px;
    margin-top: 1rem;
    background-color: var(--primary-color);
}

.services-slider .slide-content {
    display: none;
    margin: 1rem 0;
}

.services-slider .slick-slide {
    box-sizing: border-box;
    overflow: hidden;
    transition: all 0.4s ease;
    margin: 0 auto;
    box-sizing: border-box;
    transform: scale(0.9);
}

.services-slider .slick-slide img {
    max-width: 100%;
}

.services-slider .slick-center {
    max-width: 100%;
    transform: scale(1);
}

.services-slider .slick-center .slide-content {
    display: block;
}

.services-slider .slick-center .blue-line {
    display: block;
}


.industry-section {
    background-color: var(--light-bg)
}

.industry-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    padding: 0 1px;
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industry-title-overlay {
    background: var(--primary-color);
    color: #fff;
    padding: 14px 10px;
    text-align: center;
    /* transition: all 0.3s ease-in-out; */
    /* opacity: 0; */
    /* visibility: hidden; */
    /* transform: translateY(-45px); */
}

/* .industry-card:hover .industry-title-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-top: -1px
} */

.client-logo {
    transition: 0.3s ease;
    background-color: #FFF;
    padding: 0.5rem 1rem;
    border: 1px solid #D7D7D7;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.client-slider .slick-slide {
    padding: 0 10px;
}

.slick-slider-top .slick-slide,
.slick-slider-bottom .slick-slide {
    padding: 0 10px;
}

.slick-slider-top,
.slick-slider-bottom {
    position: relative;
}

.slick-slider-top .slick-slide,
.slick-slider-bottom .slick-slide {
    position: relative;
    overflow: hidden;
}

.slick-slider-top .slick-slide::before,
.slick-slider-bottom .slick-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0.3) 75%,
            rgba(255, 255, 255, 0.3) 90%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    z-index: 2;
    pointer-events: none;
    visibility: hidden;
}

.slick-slider-top .slick-slide:hover::before,
.slick-slider-bottom .slick-slide:hover::before {
    visibility: visible;
    animation: shineRight 1s forwards;
}

@keyframes shineRight {
    0% {
        left: -100%;
        visibility: visible;
    }

    100% {
        left: 150%;
        visibility: visible;
    }
}

.contact-section {
    position: relative;
    background: linear-gradient(135deg, #e8f7ff, #d6f1fd);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid #B7EAE7
}

.contact-form {
    z-index: 3;
}

.contact-form input,
.contact-form textarea {
    border-radius: 8px;
    border: none;
    padding: 1rem 0.75rem;
    border: 1px solid #B7EAE7
}

.contact-form textarea {
    height: 140px;
}

.contact-form .btn-submit {
    border-radius: 8px;
    width: 100%;
}

.contact-image {
    position: absolute;
    bottom: 0;
    max-height: 830px;
    right: 0;
    z-index: 2;
}

.contact-image-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    max-height: 800px;
}

/* Banner */
.banner-section {
    background: url('https://storeyourcode.com/demo/zavian-overseas/wp-content/themes/zavian-overseas/assets/images/banner-bg.webp');
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
    background-size: cover
}

.banner-text h1 {
    font-size: clamp(2.5rem, 5vw + 1rem, 5.8rem);
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-family: "DM Serif Display", serif;
}

.banner-text p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.banner-image img {
    max-width: 100%;
    height: auto;
}

.apply-btn {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.apply-btn svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.apply-btn:hover svg {
    transform: translateX(5px);
}



/* About */

.mission-section {
    background-color: var(--light-bg)
}

/* .mission-statement {
    font-style: italic;
} */

.achievements-list {
    list-style: none;
    padding-left: 0;
}

.achievements-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 1.4rem;
    line-height: 1.4;
}

.achievements-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #666;
}

.mission-divider {
    width: 2px;
    background-color: #dee2e6;
    position: relative;
}

.connecting-section {
    background-color: #EAEAEA;
}
.country-flag {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    position: relative; 
}
.flag-label {
    margin-left: 10px;
    text-transform: uppercase;
}
.country-flag:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -5px;
    height: 40px;
    width: 1px;
    background-color: #000; 
}
.choose-nav-item {
    border-bottom: 1px solid var(--light-bg);
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--black);
}

.choose-nav-item:hover,
.choose-nav-item.active {
    background-color: var(--light-bg);
}

.choose-nav-item i {
    color: var(--black);
    font-size: 14px;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.choose-nav-item:hover i,
.choose-nav-item.active i {
    color: #17a2b8;
    transform: rotate(0deg);
}

.choose-slider-container {
    background-color: #fff;
    border: 1px solid #E3E4DE;
    padding: 3.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.choose-slide-item {
    display: none;
}

.choose-slide-item.active {
    display: block;
}

.choose-slide-subtitle {
    background: #16CFED;
    background: linear-gradient(to bottom, #16CFED 35%, #7AE5A4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.choose-slide-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    max-width: 750px;
}

.choose-slider-container .slick-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f1f1f1;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.choose-slider-container .slick-arrow:hover {
    background-color: #17a2b8;
    color: white;
}

.choose-slider-container .slick-prev {
    left: -15px;
}

.choose-slider-container .slick-next {
    right: -15px;
}

.choose-slider-nav {
    margin-top: auto;
    display: flex;
}

.choose-slider-nav button {
    background-color: #C5DDFF4F;
    border: none;
    width: 50px;
    height: 50px;
    margin: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.choose-slider-nav button:hover {
    background-color: #17a2b8;
    color: white;
}

.team-section {
    text-align: center;
}

.section-title {
    margin-bottom: 0.5rem;
}

.section-subtitle {
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-card {
    transition: transform 0.3s ease;
}

.member-card:hover {
    transform: translateY(-10px);
}

.member-img-container {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    overflow: hidden;
    border-radius: 5px;
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--black);
}

.member-position {
    font-size: 1rem;
    background: #16CFED;
    background: linear-gradient(to bottom, #16CFED 35%, #7AE5A4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.divider {
    margin: 3rem 0;
}

/* Service Page */
.in-service-card {
    background-color: var(--light-bg);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 620px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.in-service-card h3 {
    margin: 0 0 20px;
    position: relative;
    padding-bottom: 25px;
    transition: all 0.3s ease;
    z-index: 2;
}

.in-service-card h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 3px;
    background-color: var(--light-gray);
    transition: all 0.3s ease;
}

.in-service-card p {
    margin-bottom: 20px;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.in-service-image-container {
    max-height: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: max-height 0.6s ease-in-out, opacity 0.5s ease, transform 0.5s ease;
    overflow: hidden;
    will-change: max-height, opacity, transform;
    margin-bottom: 0;
}

.in-service-card:hover .in-service-image-container {
    max-height: 240px;
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 1rem;
    transition: max-height 0.8s ease-in-out, opacity 0.6s ease, transform 0.5s ease;
    will-change: max-height, opacity, transform;
}

.in-service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.in-service-content {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.5s ease, padding-top 0.5s ease;
    padding-top: 0;
}

.in-service-card:hover .in-service-content {
    padding-top: 20px;
    transform: translateY(10px);
}

.in-service-card:hover p {
    color: var(--black)
}

.in-service-card:hover h3:after {
    background-color: var(--primary-color)
}

.arrow-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.arrow-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    color: var(--black)
}

.arrow-link:hover .arrow-icon {
    transform: translateX(5px);
}

.in-service-card:hover {
    background-color: #EAEAEA;
}

.testimonial-left {
    background: url('https://storeyourcode.com/demo/zavian-overseas/wp-content/themes/zavian-overseas/assets/images/testimonial-bg.png') center/cover no-repeat;
    color: white;
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 3rem
}

.testimonial-left h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.divider-white {
    content: '';
    display: block;
    width: 160px;
    height: 1px;
    background-color: white;
    margin-top: 20px;
}

.testimonial-count {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.testimonial-label {
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.testimonial-right {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    color: #e0e0e0;
}

.testimonial-profile {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.testimonial-name h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.testimonial-name h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: #ddd;
    margin-top: 10px;
}

.testimonial-content {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 30px;
}

.testimonial-navigation {
    display: flex;
    gap: 10px;
}

.nav-button {
    width: 50px;
    height: 50px;
    background-color: #f0f0f0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background-color: #17a2b8;
    color: white;
}

.testimonial-carousel .slick-slide {
    outline: none;
}

/* Service Details */
.staffing-content {
    padding-right: 20px;
}

.staffing-title {
    margin-bottom: 10px;
}

.subtitle {
    margin-bottom: 20px;
}

.staffing-text {
    max-width: 545px
}

.service-form {
    padding: 20px;
}

.quote-form {
    background-color: #f8f9fa;
    border-radius: 5px;
}

.quote-form-heading {
    background-color: #121C27;
    padding: 20px;
}

.quote-form h5 {
    color: #fff;
}

.quote-form .form-control {
    margin-bottom: 20px;
    border: 1px solid #EBEBEB;
    padding: 0.75rem;
    border-radius: inherit;
}

.quote-form .form-control::placeholder {
    color: #CBCBCB;
}

.quote-form .form-control:focus {
    box-shadow: none;
    border-color: #00c2cb;
}

.quote-form textarea.form-control {
    height: 100px;
    resize: none;
}

.process-section {
    background-color: var(--light-bg)
}

.process-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 1rem;
    position: relative;
    padding-bottom: 15rem;
}

.process-header {
    text-align: center;
    margin-bottom: 3rem;
}

.timeline {
    position: relative;
    width: 100%;
}

.step {
    margin-bottom: 2.5rem;
    position: relative;
    width: 100%;
    clear: both;
}

.step-left {
    float: left;
    width: 54%;
    position: relative;
    margin-bottom: 1.5rem
}

.step-right {
    float: right;
    width: 54%;
    position: relative;
    margin-bottom: 1.5rem
}

.step-header {
    background-color: white;
    border-radius: 16px;
    padding: 12px 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    position: relative;
    transition: all 0.3s ease-in-out
}

.step-header:hover {
    background-color: var(--primary-color);
    color: #fff
}

.step-header:hover .step-number {
    color: #fff
}

.step-number {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-right: 15px;
    min-width: 32px;
}

.step-title {
    font-weight: 500;
    font-size: 1.2rem;
}

.step-content {
    background-color: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    margin-left: 15px;
    margin-top: -5px;
}

.highlight-step i {
    margin-right: 10px;
    font-size: 1rem;
}

.step-content p {
    margin: 0;
    font-size: 1.2rem;
    color: var(--black);
    max-width: 400px
}

@keyframes dashFlow {
    to {
        background-position: 20px 0;
    }
}

@keyframes dashFlowDown {
    to {
        background-position: 0 20px;
    }
}

.step-left::after {
    content: '';
    position: absolute;
    top: 70%;
    right: -15%;
    width: 15%;
    height: 2px;
    background-image: linear-gradient(to right, #ccc 50%, transparent 50%);
    background-size: 10px 1px;
    animation: dashFlow 1.5s linear infinite;
}

.step-right::after {
    content: '';
    position: absolute;
    top: 70%;
    left: -15%;
    width: 15%;
    height: 2px;
    background-image: linear-gradient(to right, #ccc 50%, transparent 50%);
    background-size: 10px 1px;
    animation: dashFlow 1.5s linear infinite;
}

.step-left::before {
    content: '';
    position: absolute;
    top: 70%;
    right: -15%;
    height: 100%;
    width: 2px;
    background-image: linear-gradient(to bottom, #ccc 50%, transparent 50%);
    background-size: 2px 10px;
    animation: dashFlowDown 1.5s linear infinite;
}

.step-right::before {
    content: '';
    position: absolute;
    top: 70%;
    left: -15%;
    height: 100%;
    width: 2px;
    background-image: linear-gradient(to bottom, #ccc 50%, transparent 50%);
    background-size: 2px 10px;
    animation: dashFlowDown 1.5s linear infinite;
}

/* Remove connectors from last step */
.last-step .step-left::before,
.last-step .step-left::after,
.last-step .step-right::before,
.last-step .step-right::after {
    display: none;
}


.service-text-slider {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.service-text-item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    font-size: 28px
}

.text-now {
    color: #aaaaaa;
}

.text-goal,
.text-growth {
    color: #000000;
}

.text-for {
    color: #aaaaaa;
    margin: 0 5px;
}

.text-your {
    color: #aaaaaa;
    margin: 0 5px;
}

.arrow {
    color: #555555;
    margin: 0 10px;
    font-size: 18px;
}

.related-service-card {
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    background-color: var(--light-bg)
}

.related-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: var(--black);
    transition: all 0.3s ease;
}

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

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

/* Footer */
.enquiry-section {
    background: url(https://storeyourcode.com/demo/zavian-overseas/wp-content/themes/zavian-overseas/assets/images/enq-bg.webp) no-repeat center center / cover;
    color: white;
    text-align: left;
    position: relative;
}

.newsletter-bar {
    background-color: var(--primary-color);
    color: white;
}

.newsletter-bar h4 {
    font-weight: 700;
    margin-bottom: 5px;
}

.newsletter-bar p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.newsletter-input {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input p {
    display: flex;
    flex-wrap: wrap;
}

.newsletter-input input {
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 15px;
    border-radius: 0;
    background: transparent;
    font-size: 0.9rem;
}

.newsletter-input input::placeholder {
    color: #fff !important;
    opacity: 1;
}

.newsletter-input input::-webkit-input-placeholder {
    color: #fff !important;
}

.newsletter-input input::-moz-placeholder {
    color: #fff !important;
    opacity: 1;
}

.newsletter-input input:-ms-input-placeholder {
    color: #fff !important;
}

.newsletter-input input:-moz-placeholder {
    color: #fff !important;
    opacity: 1;
}

.newsletter-input button {
    border-radius: 0;
    background-color: white;
    color: var(--black);
    font-size: 0.9rem
}

.footer {
    background-color: #121C27;
    position: relative;
    z-index: 1;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(https://storeyourcode.com/demo/zavian-overseas/wp-content/themes/zavian-overseas/assets/images/footer-bg.png);
    background-repeat: no-repeat;
    z-index: -1;
}

.footer p {
    font-size: 0.8rem;
    color: #e3e0e0;
    font-weight: 300;
}

.footer h6 {
    color: #e3e0e0;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.footer ul {
    padding-left: 16px;
}

.footer ul li {
    list-style: disc;
    color: #e3e0e0;
    font-weight: 300;

}

.footer a {
    color: #e3e0e0;
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    font-weight: 300;
}

.footer-description {
    max-width: 280px;
    line-height: 1.8;
}

.footer a:hover {
    color: white;
}

.footer .footer-logo {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer .social-icons a {
    color: white;
    margin-right: 15px;
    display: inline-block;
}

.footer-bottom {
    text-align: center;
    color: #e3e0e0;
    padding-top: 20px;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-first {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}