@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Lato", sans-serif;
    line-height: 1.5;
    color: #212529;
    font-weight: 400;
}

.container {
    max-width: 1176px;
    margin: 0 auto;
    padding: 0 30px;
}


/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Sub nav styles  */
.subnav {
    background: #02073E;
    padding: 10px 0;
}

.subnav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.navsub-meta {
    display: flex;
    gap: 20px;
}

.navsub-links {
    display: flex;
    gap: 20px;
    justify-content: end;
    flex-wrap: wrap;
}

.subnav a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.subnav a:hover {
    text-decoration: underline;
}

.navsub-links .login {
    padding-left: 20px;
    border-left: 1px solid #353965;
}

@media screen and (max-width: 768px) {
    .navsub-links {
        display: none;
    }
}

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Header Styles */
.header {
    background: #3F43AD;
    color: white;
    padding: 35px 0;
}

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

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 257px;
    height: 50px;
}


/* Desktop Navigation */
.nav-desktop {
    flex: 1;
    display: flex;
    align-items: center;
    margin-left: auto;
    justify-content: end;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-item {
    position: relative;
    margin-left: 30px;
    z-index: 10;
}

.nav-link {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    line-height: 30px;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
    white-space: nowrap;
}

.nav-link::after {
    margin-left: 8px;
    content: '';
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #8199BB;
    border-radius: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.contact-link::after {
    display: none;
}

.nav-item.active .nav-link::after {
    transform: rotate(180deg);
}

/* Desktop Dropdown Menu */
.dropdown-content {
    position: absolute;
    z-index: 1001;
    top: 100%;
    right: 0;
    opacity: 0;
    left: 50%;
    transform: translateX(-50%);
    visibility: hidden;
    transition: all 0.3s ease;
    padding-top: 20px;
    min-width: 220px;
}

.search-dropdown-content {
    position: absolute;
    z-index: 1001;
    top: 100%;
    right: 0;
    opacity: 0;
    left: 50%;
    transform: translateX(-50%);
    visibility: hidden;
    transition: all 0.3s ease;
    padding-top: 20px;
    min-width: 220px;
}

.dropdown-menu {
    list-style: none;
    display: block;
    background: white;
    border-radius: .25rem;
    width: 100%;
    overflow: hidden;
}

.dropdown-menu::before {
    content: '';
    height: 10px;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    clear: both;
}

.nav-item.active .dropdown-content {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    border-bottom: 1px solid #D1DCEB;
    overflow: hidden;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 10px 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: #F3F6FB;
}

/* Search Toggle - hide arrow */
.search-toggle {
    color: white;
    font-size: 17px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.search-toggle::after {
    margin-left: 8px;
    content: '';
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #8199BB;
    border-radius: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Search Dropdown Wrapper */
.search-dropdown {
    background: white;
    border-radius: .25rem;
    overflow: hidden;
    padding: 10px;

}

.search-dropdown::before {
    content: '';
    height: 10px;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    clear: both;
}

.search-box {
    position: relative;
}

.search-input {
    border-radius: 5px;
    line-height: 50px;
    padding: 0 16px 0 16px;
    font-size: 15px;
    background-color: #F3F6FB;
    border: 1px solid #D1DCEB;
    height: 50px;
    display: block;
    width: 100%;
    color: #212529;
    outline: none;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.search-submit {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 0px;
    right: 0px;
    background: #fff;
    color: #8199BB;
    text-align: center;
    border: 1px solid #D1DCEB;
    cursor: pointer;
    border-radius: 0px 5px 5px 0px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    border: 1px solid #6569BE;
    height: 40px;
    width: 40px;
    padding: 0;
    text-align: center;
    border-radius: 5px;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    color: #fff;
    background-color: transparent;
    display: none;
    justify-content: center;
    align-items: center;
}


/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    max-width: 400px;
    width: 400px;
    border-left: 1px solid rgba(0, 0, 0, .2);
    height: 100vh;
    background: white;
    z-index: 2000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    box-shadow: 0px 6px 10px -5px rgba(183, 202, 235, 0.7);
    -webkit-box-shadow: 0px 6px 10px -5px rgba(183, 202, 235, 0.7);
}

.mobile-menu-close {
    background: transparent;
    border: 1px solid #D1DCEB;
    border-radius: 5px;
    color: black;
    height: 40px;
    width: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Navigation */
.mobile-nav {
    padding: 40px;
}

.mobile-nav-menu {
    list-style: none;
}

.mobile-nav-item {
    margin-bottom: 25px;
}

.mobile-nav-link {
    color: #333;
    font-weight: 400;
    font-size: 18px;
    position: relative;
    display: block;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-link::after {
    margin-left: 8px;
    content: '';
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #8199BB;
    border-radius: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
}


.contact-link::after {
    display: none;
}

.mobile-nav-item.active .mobile-nav-link::after {
    transform: rotate(180deg);
}


/* Mobile Dropdown Menu */
.mobile-dropdown-menu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav-item.active .mobile-dropdown-menu {
    max-height: 500px;
    margin-top: 20px;
}

.mobile-dropdown-menu a {
    display: block;
    text-decoration: none;
    font-size: 16px;
    padding: 5px 0;
    color: #333;
    position: relative;
}

.mobile-dropdown-menu a::before {
    margin-right: 10px;
    content: '\2014';
    color: #D1DCEB;
}

.mobile-dropdown-menu a:hover {
    background-color: #e9ecef;
}

/* Mobile Search Box */
.mobile-search-box {
    display: flex;
    align-items: center;
    width: 100%;
}

.mobile-search-box .search-box {
    width: 100%;
}


/* Mobile Additional Links */
.mobile-additional-links {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 30px;
    padding-top: 30px;
    padding-left: 0px;
    border-top: 1px solid #D1DCEB;
    list-style: none;
}

.mobile-additional-links a {
    color: #333;
    font-weight: 400;
    text-decoration: none;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 20px;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}



/* Desktop Styles */
@media (max-width: 1320px) {
    .search-dropdown-content {
        left: auto;
        transform: translateX(0%);
    }

    .search-dropdown-content .search-dropdown::before {
        display: none;
    }

    .logo-img {
        width: 205px;
        height: 40px;
    }

    .nav-item {
        margin-left: 20px;
    }

    .nav-link {
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .header {
        padding: 20px 0;
    }

    .nav-desktop {
        display: none;
    }

    .navsub-links {
        display: none;
    }

    .search-wrapper {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}


/* Tablet Styles */
@media (max-width: 991px) and (min-width: 768px) {
    .nav-menu {
        gap: 2px;
    }

    .nav-link {
        padding: 10px 12px;
        font-size: 13px;
    }
}


@media (max-width: 576px) {
    .mobile-menu {
        width: 100%;
        max-width: 100%;
    }
}



/* =====================>>>>>>>>>>>>>>>>>>>>>>>>>>> Header Styles End =======================>>>>>>>>>>>> */


/* =====================>>>>>>>>>>>>>>>>>>>>>>>>>>> Hero Section Start =======================>>>>>>>>>>>> */
.hero-carousel {
    position: relative;
    touch-action: pan-y;
}

.swiper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    height: 600px;
}

.swiper-slide {
    position: relative;
    height: 100%;
    background-color: #F3F6FB;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(2, 7, 62, 0.75) 0%, rgba(2, 7, 62, 0.5) 50%, rgba(2, 7, 62, 0) 100%);
    z-index: 1;
}

/* Slide backgrounds */
.slide-1 {
    background-image: url('./assets/hero-bg-1.webp');
}

.slide-2 {
    background-image: url('./assets/hero-bg-2.webp');
}

.slide-3 {
    background-image: url('./assets/hero-bg-3.webp');
}

.slide-4 {
    background-image: url('./assets/hero-bg-4.webp');
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1176px;
    padding: 0 30px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    height: 100%;
    z-index: 1001;
    position: relative;
}


.hero-content h1 {
    margin-bottom: 25px;
    font-weight: 700;
    font-style: normal;
    font-size: 44px;
    line-height: 54px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
    color: #fff;
    position: relative;
}

.hero-content h1 .accent {
    position: relative;
}

.hero-content h1 .accent::before {
    padding: 0;
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 5px;
    bottom: 0;
    background-image: url("./assets/heading-line.svg");
    background-repeat: no-repeat;
    background-size: 100% 5px;
    background-position: left bottom;
    transform: rotate(-1deg);
}

.hero-content p {
    font-weight: 400;
    color: #fff;
    font-size: 18px;
    max-width: 570px;
    width: 100%;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
    line-height: 30px;
    margin-bottom: 35px;
}

.hero-btn {
    padding: 0 20px;
    font-weight: 400;
    border-radius: 5px;
    font-size: 18px;
    text-decoration: none;
    border: none;
    display: inline-block;
    height: 60px;
    line-height: 60px;
    cursor: pointer;
    width: auto;
    background: #3F43AD;
    color: #fff;
    text-align: center;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #175CFF;
}

/* Tabs Container */
.tabs-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    max-width: 1176px;
    width: 100%;
    padding: 0 30px;
    z-index: 10;
}

.tabs-nav {
    display: flex;
    border: 1px solid #D1DCEB;
    border-radius: 6px;
    background-color: white;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.tab-btn {
    flex: 1;
    background: white;
    font-weight: normal;
    border: none;
    font-size: 16px;
    height: 80px;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    border-right: 1px solid #D1DCEB;
}

.tab-btn:last-child {
    border-right: none;
}

.tab-btn.active {
    font-weight: 700;
    text-decoration: underline;
}

.swiper-button-next,
.swiper-button-prev {
    display: none !important;
}

.mobile-arrow-btn {
    display: none;
    border: none;
    color: #8199BB;
    font-size: 18px;
    cursor: pointer;
    pointer-events: all;
    background-color: transparent;
}

.mobile-arrow-btn:active {
    transform: scale(0.95);
}

@media screen and (max-width: 968px) {

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

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 44px;
        line-height: 54px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    .tabs-nav {
        justify-content: center;
        align-items: center;
        border: none;
        border: 1px solid #D1DCEB;
        padding: 0 24px;
    }

    .tab-btn {
        display: none;
        border: none;
        height: auto;
    }

    .tab-btn.active {
        display: block;
        font-size: 16px;
        font-weight: 600;
        width: auto;
        text-align: center;
        margin: 0 auto;
        height: 80px;
    }
}




/* =========================== Take-home pay calculator Styles Start  */

.take-home-pay-calculator {
    max-width: 1176px;
    padding: 0 30px;
    margin: 100px auto 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.left-side-content h2 {
    font-size: 32px;
    line-height: 46px;
    margin-bottom: 35px;
    font-weight: 700;
    font-style: normal;
    color: #02073E;
}

.left-side-content p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 35px;
    font-weight: 400;
    color: #333;
}

.left-side-content p .blue-text {
    color: #3F43AD;
}

.left-side-content p sub {
    font-style: italic;
    font-size: 16px;
    line-height: 26px;
    bottom: 0;
    vertical-align: initial;
}

.left-side-content p sub a {
    font-weight: 700;
    color: #3F43AD;
    text-decoration: underline;
}

.left-side-content .trust-pilot {
    margin-bottom: 45px;
    padding: 10px 15px;
    border: 1px solid #D1DCEB;
    display: inline-flex;
    font-size: 16px;
    font-weight: bold;
    color: #02073E;
    line-height: 30px;
    text-align: center;
    align-items: center;
    border-radius: 5px;
}

.left-side-content .trust-pilot p {
    margin-bottom: 0;
}

.left-side-content .trust-pilot img {
    height: 30px;
    margin-bottom: -8px;
    margin-left: 4px;
}

.take-home-pay-calculator .calculator-form {
    border: 1px solid #D1DCEB;
    padding: 40px;
    box-shadow: 0px 0px 6px 0px rgba(183, 202, 235, 0.7);
    position: relative;
    border-radius: 5px;
    background: #fff;
}

.calculator-form .calc-title {
    top: -17px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}

.calculator-form h3 {
    padding: 0 20px 0 20px;
    background: #fff;
    display: inline-block;
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    font-style: normal;
    color: #02073E;
    position: relative;
}

.calculator-form h3 .accent {
    position: relative;
}

.calculator-form h3 .accent::before {
    padding: 0;
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 5px;
    bottom: 0;
    background-image: url("./assets/heading-line.svg");
    background-repeat: no-repeat;
    background-size: 100% 5px;
    background-position: left bottom;
    transform: rotate(-1deg);
}

.calculator-form .form-label {
    margin-bottom: .5rem;
    display: block;
    color: #212529;
}

.calc-input-container {
    display: flex;
    gap: 20px;
}

.calc-input-container .calc-input {
    width: 66%;
    position: relative;
}

.calc-input input {
    border: 1px solid #D1DCEB;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    height: 60px;
    width: 100%;
    padding: 0 10px 0 40px;
    margin: 0 0 30px 0;
    color: #333;
    line-height: 50px;
    font-size: 15px;
    background-color: #F3F6FB;
}

.calc-input::after {
    content: '£';
    position: absolute;
    top: 0;
    left: 20px;
    height: 60px;
    width: auto;
    display: inline-block;
    z-index: 10;
    line-height: 59px;
    color: #8199BB;
}

.calc-input-container .form-select {
    width: 30%;
    height: 60px;
    line-height: 60px;
    padding: 0 50px 0 20px;
    color: #333;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 15px;
    background-color: #F3F6FB;
    border: 1px solid #D1DCEB;
    display: block;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='12' viewBox='0 0 16 12'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 2l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
}

.calc-input-container .form-select::-ms-expand {
    display: none;
}

.calc-paid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.calc-paid-container .calc-paid-btn {
    height: 60px;
    line-height: 58px;
    text-align: center;
    border: 1px solid #D1DCEB;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    width: 100%;
    cursor: pointer;
    margin: 0 0 30px 0;
    color: #212529;
    display: inline-block;
    background-color: transparent;
}

.calc-btn {
    padding: 0 20px;
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    background: #3F43AD;
    color: #fff;
    border: none;
    transition: all .3s ease-in-out;
}

.calc-btn:hover {
    background: #175CFF;
}

@media screen and (max-width: 968px) {
    .take-home-pay-calculator {
        grid-template-columns: repeat(1, 1fr);
        gap: 0px;
    }
}


@media screen and (max-width: 568px) {
    .take-home-pay-calculator {
        margin: 80px auto 60px;
    }

    .left-side-content h2 {
        font-size: 24px;
        line-height: 36px;
        margin-bottom: 30px;
    }

    .left-side-content p {
        margin-bottom: 30px;
    }

    .left-side-content .trust-pilot {
        width: 100%;
        justify-content: center;
    }

    .take-home-pay-calculator .calculator-form {
        padding: 35px 30px 30px 30px;
    }

    .calculator-form .calc-title {
        top: -14px;
    }

    .calculator-form h3 {
        font-size: 18px;
        line-height: 28px;
    }

    .calculator-form .form-label {
        margin-bottom: .5rem;
        display: block;
        color: #212529;
    }

    .calc-input-container .calc-input {
        width: 50%;
        position: relative;
    }

    .calc-input-container .form-select {
        width: 50%;
    }
}



/* =======>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Testimonial Section styles  */
.testimonials-section {
    position: relative;
    max-width: 1176px;
    margin: 0 auto;
    margin-bottom: 60px;
    padding: 0 30px;
}

.testimonials-carousel {
    position: relative;
    touch-action: pan-y;
    width: 83%;
    margin: 0 auto;
}

.testimonials-swiper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonials-swiper .swiper-slide {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: transparent;
}

.testimonials-swiper .swiper-slide::before {
    background: transparent;
}

.testimonial-quote {
    font-size: 32px;
    line-height: 46px;
    font-weight: 700;
    font-style: normal;
    color: #02073E;
    margin-bottom: 35px;
}

.testimonial-source {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 35px;
}

.testimonial-source a {
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    color: #3F43AD;
    text-decoration: underline;
}

.testimonial-source a:hover {
    color: #175CFF;
}

.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
    display: none !important;
}

/* Testimonial Tabs Container */
.testimonial-tabs-container {
    width: 83%;
    position: relative;
    margin: 0 auto;
}

.testimonial-tabs-nav {
    width: 100%;
    column-gap: 80px;
    display: flex;
    justify-content: center;
}

.testimonial-tab-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: relative;
}


.testimonial-tab-avatar {
    border-radius: 100%;
    height: 60px;
    width: 60px;
}

.testimonial-tab-name {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    line-height: 30px;
    text-align: start;
}

.testimonial-tab-btn.active::after {
    padding: 0;
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 100%;
    height: 5px;
    background-image: url("./assets/heading-line.svg");
    background-repeat: no-repeat;
    background-size: 100% 5px;
    background-position: left bottom;
    transform: rotate(-1deg);
}


.testimonial-mobile-arrow-btn {
    font-size: 18px;
    color: #8199BB;
    border: none;
    background: transparent;
    display: none;
}


/* Responsive - Mobile */
@media (max-width: 968px) {
    .testimonials-carousel {
        width: 100%;
    }

    .testimonial-source {
        margin-bottom: 10px;
    }

    .testimonial-mobile-arrow-btn {
        display: block !important;
    }

    .testimonial-tabs-container {
        width: 100%;
    }

    .testimonial-tabs-nav {
        justify-content: space-between;
        align-items: center;
    }

    .testimonial-tab-btn {
        display: none;
        border: none;
        position: relative;
    }

    .testimonial-tab-btn.active {
        display: flex;
        flex-direction: column;
        margin: 0 auto;
        gap: 4px;
    }

    .testimonial-tab-btn.active::after {
        display: none;
    }
}

@media (max-width: 568px) {
    .testimonial-quote {
        font-size: 24px;
        line-height: 36px;
        margin-bottom: 30px;
    }


    .testimonial-source {
        margin-bottom: 0px;
    }
}


/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Valuse tabs & accordin section  */
.values-section {
    margin-bottom: 60px;
    padding: 60px 0 60px 0;
    background: #F3F6FB;
}

.values-section .tabs-main-container {
    max-width: 1176px;
    margin: 0 auto;
    padding: 0 30px;
}

.values-container {
    display: flex;
    background: white;
    border-radius: 5px;
    border: 1px solid #D1DCEB;
    overflow: hidden;
}

.values-status {
    display: flex;
    justify-content: space-around;
    margin: 0 0 60px 0;
    text-align: center;
    position: relative;
}

.values-status::after {
    content: '';
    position: absolute;
    width: 1px;
    background: #D1DCEB;
    height: 100%;
    top: 0;
    left: 50%;
}

.values-status h2 {
    font-size: 44px;
    line-height: 54px;
    margin-bottom: 10px;
    font-weight: 700;
    font-style: normal;
    color: #02073E;
}

.values-status p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    color: #333;
}

/* Desktop Tabs Sidebar */
.values-tabs-sidebar {
    min-width: 340px;
    border-right: 1px solid #D1DCEB;
    display: block;
    background-color: #F9FBFF;
}

.values-tab-btn {
    width: 100%;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #02073E;
    font-weight: normal;
    background: #F9FBFF;
    font-size: 16px;
    cursor: pointer;
    border: 0px;
    border-bottom: 1px solid #D1DCEB;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.values-tab-btn:last-child {
    border-bottom: 0px;
}

.values-tab-btn.active {
    background: #fff;
    box-shadow: 0px 0px 6px 0px rgba(183, 202, 235, 0.7);
    z-index: 10;
    position: relative;
    font-weight: bold;
}

.values-tab-btn.active span {
    text-decoration: underline;
}

.values-tab-btn i {
    color: #8199BB;
    display: none;
}

.values-tab-btn.active i {
    display: block;
}

/* Desktop Content Area */
.values-content-area {
    flex: 1;
    padding: 60px 75px;
}

.values-tab-content {
    display: none;
}

.values-tab-content.active {
    display: block;
}

.values-content-title {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 35px;
    font-weight: 700;
    font-style: normal;
    color: #02073E;
}

.values-content-text {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 35px;
    font-weight: 400;
    color: #333;
}

.values-content-text strong {
    color: #3F43AD;
}

.values-content-btn {
    padding: 0 20px;
    border-radius: 5px;
    font-size: 18px;
    text-decoration: none;
    border: none;
    display: inline-block;
    height: 60px;
    line-height: 60px;
    cursor: pointer;
    width: auto;
    background: #3F43AD;
    color: #fff;
    text-align: center;
}

.values-content-btn:hover {
    background: #175CFF;
}

/* Mobile Accordion */
.values-accordion {
    display: none;
}

.values-accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.values-accordion-item:last-child {
    border-bottom: none;
}

.values-accordion-header {
    padding: 15px 20px;
    color: #333;
    line-height: 30px;
    font-size: 16px;
    display: block;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    background-color: #fff;
    width: 100%;
    border: 0px;
    z-index: 1001;
}

.values-accordion-header.active {
    box-shadow: 0px 0px 6px 0px rgba(183, 202, 235, 0.7);
}

.values-accordion-header.active span {
    text-decoration: underline;
    font-weight: bold;
}

.values-accordion-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
    color: #8199BB;
}

.values-accordion-header.active .values-accordion-icon {
    transform: rotate(180deg);
}

.values-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.values-accordion-content.active {
    max-height: 600px;
}

.values-accordion-body {
    padding: 20px;
    background: #ffff;
}

.values-accordion-body .values-content-title {
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 30px;
    color: #02073E;
}

.values-accordion-body .values-content-text {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    color: #333;
    margin-bottom: 30px;
}

.values-accordion-body .values-content-text strong {
    color: #3F43AD;
}

.values-content-img {
    height: auto;
    float: right;
}

/* Responsive */
@media (max-width: 968px) {
    .values-container {
        flex-direction: column;
    }

    .values-status {
        flex-direction: column;
        margin: 0 0 30px 0;
        gap: 30px;
    }

    .values-status::after {
        display: none;
    }

    .values-status h2 {
        font-size: 36px;
        line-height: 46px;
    }

    .values-tabs-sidebar {
        display: none;
    }

    .values-content-area {
        display: none;
    }

    .values-accordion {
        display: block;
    }
}



/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Services Section Styles  */
.services-section {
    max-width: 1176px;
    margin: 0 auto;
    padding: 0 30px;
    margin-bottom: 60px;
}

.services-header {
    text-align: center;
    padding-bottom: 60px;
    max-width: 570px;
    margin: 0 auto;
}

.services-title {
    font-size: 32px;
    line-height: 46px;
    margin-bottom: 20px;
    font-weight: 700;
    font-style: normal;
    color: #02073E;
}

.services-title .accent {
    position: relative;
    display: inline-block;
}

.services-title .accent::after {
    padding: 0;
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 5px;
    bottom: 0;
    background-image: url("./assets/heading-line.svg");
    background-repeat: no-repeat;
    background-size: 100% 5px;
    background-position: left bottom;
    transform: rotate(-1deg);
}

.services-description {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    color: #333;
}

.services-description strong {
    color: #3F43AD;
}

.services-carousel {
    position: relative;
    height: fit-content;

}

.services-swiper {
    width: 100%;
    height: fit-content;
}

.services-swiper .swiper-slide {
    height: fit-content;
}

.services-swiper .swiper-slide::before {
    background: none;
}

.service-card {
    background: white;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #D1DCEB;
    text-decoration: none;
}


.service-image-wrapper {
    position: relative;
    width: 100%;
}

.service-image {
    display: block;
    width: 100%;
}

.service-icon {
    position: absolute;
    right: 30px;
    bottom: -30px;
    height: 60px;
    width: 60px;
    border-radius: 5px;
    background: #fff;
    line-height: 60px;
    text-align: center;
    font-size: 26px;
    color: #3E95AC;
}

.service-content {
    padding: 30px;
}

.service-name {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
    font-weight: 700;
    font-style: normal;
    color: #02073E;
}

.service-text {
    font-size: 16px;
    line-height: 30px;
    color: #333;
    font-weight: normal;
}

.services-swiper .swiper-button-next,
.services-swiper .swiper-button-prev {
    display: none !important;
}

.services-swiper .swiper-pagination {
    bottom: 0;
}

.services-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d1d5db;
    opacity: 1;
    transition: all 0.3s ease;
}

.services-swiper .swiper-pagination-bullet-active {
    background: #3F43AD;
}

/* Responsive */
@media (max-width: 968px) {
    .services-swiper .swiper-slide {
        margin-bottom: 50px;
    }

    .service-icon {
        display: none;
    }
}


@media (max-width: 640px) {
    .services-header {
        padding-bottom: 30px;
    }

    .services-title {
        font-size: 28px;
        line-height: 38px;
    }

    .service-content {
        padding: 20px;
    }

    .service-name {
        font-size: 16px;
        line-height: 26px;
    }
}


/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Office Hero Section  */
.office-hero-carousel {
    position: relative;
    touch-action: pan-y;
}

.office-hero-carousel .swiper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    height: 600px;
}

.office-hero-carousel .swiper-slide {
    position: relative;
    height: 100%;
    background-color: #F3F6FB;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.office-hero-carousel .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(2, 7, 62, 0.75) 0%, rgba(2, 7, 62, 0.5) 50%, rgba(2, 7, 62, 0) 100%);
    z-index: 1;
}

/* Slide backgrounds */
.office-slide-1 {
    background-image: url('./assets/office-bg-1.webp');
}

.office-slide-2 {
    background-image: url('./assets/office-bg-2.webp');
}

.office-slide-3 {
    background-image: url('./assets/office-bg-3.webp');
}

/* Tabs Container */
.office-tabs-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    max-width: 1176px;
    width: 100%;
    padding: 0 30px;
    z-index: 10;
}

.office-tabs-nav {
    display: flex;
    border: 1px solid #D1DCEB;
    border-radius: 6px;
    background-color: white;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.office-tab-btn {
    flex: 1;
    background: white;
    font-weight: normal;
    border: none;
    font-size: 16px;
    height: 80px;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    border-right: 1px solid #D1DCEB;
}

.office-tab-btn:last-of-type {
    border-right: none;
}

.office-tab-btn.active {
    font-weight: 700;
    text-decoration: underline;
}

.swiper-button-next,
.swiper-button-prev {
    display: none !important;
}

.office-mobile-arrow-btn {
    display: none;
    border: none;
    color: #8199BB;
    font-size: 18px;
    cursor: pointer;
    pointer-events: all;
    background-color: transparent;
}

.office-mobile-arrow-btn:active {
    transform: scale(0.95);
}

@media screen and (max-width: 968px) {

    .office-mobile-arrow-btn {
        display: block;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    .office-tabs-nav {
        justify-content: center;
        align-items: center;
        border: none;
        border: 1px solid #D1DCEB;
        padding: 0 24px;
    }

    .office-tab-btn {
        display: none;
        border: none;
        height: auto;
    }

    .office-tab-btn.active {
        display: block;
        font-size: 16px;
        font-weight: 600;
        width: auto;
        text-align: center;
        margin: 0 auto;
        height: 80px;
    }
}


/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Secure by design section styles  */
.secure-by-design-section {
    max-width: 1176px;
    margin: 0 auto;
    padding: 0 30px;
    margin-bottom: 60px;
    margin-top: 120px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.secure-by-design-section .secure-by-design-content h2 {
    font-size: 32px;
    line-height: 46px;
    margin-bottom: 35px;
    font-weight: 700;
    font-style: normal;
    color: #02073E;
}

.secure-by-design-section .secure-by-design-content p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 35px;
    font-weight: 400;
    color: #333;
}

.secure-by-design-section .secure-by-design-content p .blue-text {
    color: #3F43AD;
}

.secure-by-design-section .secure-by-design-content p a {
    font-weight: 700;
    color: #3F43AD;
}

.secure-by-design-section .secure-by-design-content p a:hover {
    color: #175CFF;
}

.security-shield-img {
    width: 100%;
    height: auto;
}


@media screen and (max-width: 968px) {
    .secure-by-design-section {
        margin-top: 80px;
        grid-template-columns: repeat(1, 1fr);
    }


    .secure-by-design-section .secure-by-design-content h2 {
        font-size: 24px;
        line-height: 36px;
    }

    .secure-by-design-section .secure-by-design-content p {
        margin-bottom: 30px;
    }
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Brands Container styles */

.brands-container {
    max-width: 1176px;
    margin: 0 auto;
    padding: 0 30px;
    margin-bottom: 60px;
    position: relative;
}

.brands-container-content {
    background: #3F43AD;
    padding: 30px 70px;
    position: relative;
    border-radius: 5px;
}

.brands-container-content .brands-nav .brands-nav-btn {
    color: #fff !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    width: 30px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.brands-container-content .brands-nav .brands-nav-btn.prev {
    left: 0;
}

.brands-container-content .brands-nav .brands-nav-btn.next {
    right: 0;
}

.brands-swiper {
    width: 100%;
    overflow: hidden;
}

.brands-container-content .swiper {
    height: fit-content;
}

.brands-container-content .swiper-slide {
    display: flex;
    background: none;
    height: fit-content;
}

.brands-swiper .swiper-slide::before {
    background: none;
    height: fit-content;
}

.brands-logo-item {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: start;
    justify-content: center;
}

.brands-logo-item img {
    width: auto;
    display: inline-block;
}


/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Latest News Section  */
.latest-news-container {
    padding: 60px 0 60px 0;
    background: #F3F6FB;
}

.latest-news-container .latest-news-row {
    max-width: 1176px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

.latest-news-row .latest-news-header {
    text-align: center;
    margin-bottom: 60px;
}

.latest-news-header h2 {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    font-style: normal;
    color: #02073E;
}

.latest-news-header p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    color: #333;
}

.latest-news-row .latest-new-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.latest-new-cards .news-card {
    height: 100%;
    border: 1px solid #D1DCEB;
    width: 100%;
    transition: transform 250ms;
    box-shadow: 0px 6px 10px -5px rgba(183, 202, 235, 0.7);
    border-radius: 5px;
    display: block;
    background-color: #fff;
    overflow: hidden;
    text-decoration: none;
}

.latest-new-cards .news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0px 0px 6px 0px rgba(183, 202, 235, 0.7);
}

.news-card .news-img {
    position: relative;
}

.news-card .news-img img {
    max-width: 100%;
    height: auto;
    width: 100%;
}

.news-card .news-img .new-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    padding: 4px 8px;
    font-size: 14px;
    line-height: 24px;
    border-radius: 5px;
    color: #02073E;
}

.news-card .news-content {
    padding: 30px;
}

.news-card .news-content .news-date {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #333;
}

.news-card .news-content .news-name {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    font-style: normal;
    color: #333;
}

@media screen and (max-width: 968px) {
    .latest-news-row .latest-new-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .latest-news-row .latest-new-cards {
        grid-template-columns: repeat(1, 1fr);
    }

    .latest-news-container {
        padding: 30px 0 30px 0;
    }

    .latest-news-row .latest-news-header {
        margin-bottom: 30px;
    }

    .latest-news-header h2 {
        font-size: 20px;
        line-height: 30px;
    }
}


/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Footer  */
.footer {
    position: relative;
}

.footer .footer-top {
    background: #3F43AD;
    padding: 60px 0;
}

.footer-top .footer-top-container {
    max-width: 1176px;
    padding: 0 30px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-top-container .logo {
    margin-bottom: 20px;
    max-width: 100%;
    height: auto;
}

.footer-top-container ul {
    list-style: none;
}

.footer-top-container ul li a {
    margin-bottom: 5px;
    font-size: 16px;
    color: #fff;
    font-weight: normal;
    line-height: 30px;
    text-decoration: none;
}

.footer-top-container ul li a:hover {
    text-decoration: underline;
}

.footer-top-container ul .footer-title {
    font-weight: 700;
    font-style: normal;
    margin-bottom: 20px;
    color: white;
}

.footer .footer-bottom {
    background: #02073E;
    padding: 10px 0;
}

.footer-bottom .footer-bottom-container {
    max-width: 1176px;
    padding: 0 30px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.footer-bottom-container .footer-btm-links {
    list-style: none;
    line-height: 28px;
}

.footer-bottom-container .footer-btm-links li {
    font-size: 14px;
    display: inline;
    color: #fff;
    margin-right: 20px;
}

.footer-bottom-container .footer-btm-links li a {
    color: white;
    text-decoration: none;
}

.footer-bottom-container .footer-btm-links li a:hover {
    text-decoration: underline;
}

.footer-bottom-container .footer-btm-social {
    text-align: right;
    list-style: none;
    line-height: 28px;
    display: flex;
    justify-content: end;
}

.footer-btm-social li {
    margin-left: 20px;
    font-size: 14px;
    display: inline;
    color: white;
}

.footer-btm-social li ul li {
    border-left: 1px solid #353965;
    padding-left: 20px;
}

.footer-btm-social li ul li a {
    color: white;
}

.m-find-us {
    display: none;
}


@media screen and (max-width: 968px) {
    .footer .footer-top {
        padding: 40px 0;
    }

    .footer-top .footer-top-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer-top-container .logo {
        margin: 0 auto 20px;
    }

    .footer-top-container ul {
        display: none;
    }

    .footer-bottom .footer-bottom-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer-bottom-container .footer-btm-links {
        text-align: center;
    }


    .footer-bottom-container .footer-btm-social {
        display: none;
    }

    .m-find-us {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .m-find-us p {
        margin-bottom: 5px;
        font-size: 16px;
        color: #fff;
        line-height: 28px;
    }

    .m-find-us .m-social-links {
        display: flex;
        justify-content: center;
    }

    .m-social-links .m-social-link {
        margin: 10px 10px 0 10px;
        height: 40px;
        width: 40px;
        border-radius: 100%;
        border: 1px solid #6569BE;
        display: inline-block;
        line-height: 38px;
        font-size: 16px;
        color: #fff;
        font-weight: normal;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}