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

@font-face {
    font-family: 'Azo Mono Test';
    src: url('../fonts/azo-sans-bold.woff2') format('woff2'),
        url('../fonts/azo-sans-bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


*,
*:before,
*:after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    font: inherit;
}

img,
picture,
svg,
video {
    display: block;
    max-width: 100%;
}

input,
select,
textarea {
    background-color: transparent;
    outline: none;
}

button {
    cursor: pointer;
    background-color: transparent;
    outline: none;
    border: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease-in-out;
}

p {
    margin-bottom: 1em;
}

p:last-child,
p:last-child {
    margin-bottom: 0 !important;
}

body {
    min-height: 100vh;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    background-color: #fff;
}

.relative {
    position: relative;
}

.text-white {
    color: #fff !important;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 1.25;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 10px;
    padding: 14.5px 20px;
    background-color: #45AD4A;
    color: #fff;
    border: 1px solid #45AD4A;
    min-width: 230px;
    max-width: 100%;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    border-color: #45AD4A;
    background-color: #45AD4A;
}

.btn-primary:hover {
    background-color: #fff;
    color: #45AD4A;
}

.btn-secondary {
    background-color: transparent;
    color: #45AD4A;
}

.btn-secondary:hover {
    color: #fff;
    background-color: #45AD4A;
}

.cs-subheading {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    color: #fff;
    padding: 4px 8px;
    border-radius: 20px;
    background-color: #7584A9;
    display: inline-block;
    margin-bottom: 8px;
}

.cs-heading {
    font-weight: 500;
    font-size: 36px;
    line-height: 48px;
    color: #32377F;
}

.container {
    max-width: 1864px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-lg {
    max-width: 1912px;
    margin: 0 auto;
    padding: 0 20px;
}

.cs-section {
    padding: 80px 0;
}

.on-mb {
    display: none !important;
}

.swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #E3E3E3;
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 !important;
}

.swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 15px;
    background-color: #45AD4A;
}

/* Header */
.header {
    color: #fff;
    padding: 24px 0;
    position: absolute;
    left: 0;
    width: 100%;
    /* backdrop-filter: blur(30px); */
    box-shadow: 0px 4px 30px 0px #0000000D;
    z-index: 99;

}

.header-logo {
    width: 134px;
    display: block;
}

.header-logo img {
    width: 100%;
}

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

.header .header-right {
    display: flex;
    align-items: center;
    gap: 48px;
}

.header .header-right .menu {
    display: flex;
    gap: 32px;
    list-style: none;
}

.header .header-right .menu li a {
    font-weight: 600;
    font-size: 14px;
    line-height: 26px;
    text-transform: uppercase;
}

.header .header-right .menu li a:hover {
    color: #45AD4A;
}

.header-phone {
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    font-family: 'Azo Mono Test';
}

.header-action {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone img {
    width: 24px;
}

.header-btn {
    padding: 17px 31.5px;
    min-width: auto;
}

.header-open-menu,
.header-phone-mb,
.header-mail-mb,
.header-open-close {
    display: none;
}

/* Home Hero */
.home-hero {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 304px 0 309px;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    pointer-events: none;

    background: linear-gradient(47.8deg, rgba(13, 14, 35, 0.7) 42.49%, rgba(0, 0, 0, 0) 89.95%),
        linear-gradient(357.67deg, rgba(0, 0, 0, 0) 55.27%, rgba(0, 0, 0, 0.4) 89.26%);

}

.home-hero-main {
    position: relative;
    color: #fff;
}

.home-hero-heading-wrapper {
    display: inline-block;
    padding: 8px;
    position: relative;
    margin-bottom: 24px;
}

.home-hero-heading {
    color: #fff;
    font-size: 64px;
    line-height: 80px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.home-hero-heading-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #32377F;
    border-radius: 8px;
}

.home-hero-content {
    padding-left: 8px;
}

.home-hero-desc {
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.02em;
    max-width: 646px;
    margin-bottom: 24px;
}

.home-hero-desc p {
    margin-bottom: 32px;
}


.home-about-main {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 80px;
    row-gap: 24px;
}

.home-about-main .left {
    width: 49.51%;
    padding-right: 24px;
}

.home-about-main .right {
    width: 50.49%;
}

.home-about .cs-subheading {
    margin-bottom: 10px;
}

.home-about-heading {
    color: #32377F;
    font-weight: 600;
    font-size: 40px;
    line-height: 56px;
    margin-bottom: 12px;
}

.home-about-heading span {
    font-weight: 500;
    font-size: 36px;
    line-height: 56px;
    display: block;
}

.home-about-content {
    line-height: 1.75;
    margin-top: 73px;
    color: #191919;
}

.home-about-content p {
    margin-bottom: 24px;
}

.home-about-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.home-about-services .box {
    background-color: #F7F7F7;
    border-radius: 10px;
    padding: 16px;
    position: relative;
    overflow: hidden;
}

.home-about-services .box .deco {
    position: absolute;
    top: 0;
    left: 16px;
    width: 271px;
}

.home-about-services .box .icon {
    width: 72px;
    height: 72px;
    box-shadow: 0px 4px 4px 0px #0000001A;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 4px 24px 4px;
    position: relative;
}

.home-about-services .box .content {
    position: relative;
}

.home-about-services .box .title {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #282058;
    margin-bottom: 8px;
}

.home-about-services .box .desc {
    font-size: 16px;
    line-height: 26px;
    color: #191919;
}

.service-stats {
    padding: 40px 0;
}

.service-stats-main {
    border-radius: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    padding: 64px 56px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 29px;
}

.service-stats-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(50, 55, 127, 0.85);
}

.service-stats-main .left {
    width: 37.16%;
    padding-right: 56px;
}

.service-stats-main .right {
    width: 62.84%;
    padding: 0 16px;
}

.service-stats-main .heading {
    font-size: 32px;
    line-height: 48px;
    font-weight: 500;
}

.service-stats-main .stat-list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.service-stats-main .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.service-stats-main .stat-number {
    color: #45AD4A;
    font-size: clamp(48px, 5vw, 96px);
}

.service-stats-main .stat-label {
    font-weight: 500;
    font-size: 24px;
    line-height: 20px;
    text-align: center;
}

.home-services {
    padding: 40px 0 56px;
}

.home-services-main {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    border-radius: 20px;
    padding: 56px 24px;
}

.home-services-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.9);
}

.home-services-header {
    margin-bottom: 32px;
}

.home-services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 32px 30px;
}

.home-services-list .item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.home-services-list .item .image {
    height: 265px;
    width: 100%;
    overflow: hidden;
}

.home-services-list .item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-services-list .item .title {
    background-color: #45AD4A;
    padding: 15px 18px;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    position: absolute;
    left: 0;
    bottom: 0;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 8px;
}

.home-services-list .item .play-btn {
    position: absolute;
    top: 0;
    right: 0;
}

.home-clients {
    padding-bottom: 40px;
}

.home-clients .heading {
    margin-bottom: 24px;
}

.home-clients .desc {
    font-size: 16px;
    line-height: 24px;
    color: #5A5A5A;
}

.home-clients-header {
    margin-bottom: 32px;
}

.clients-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.clients-slider-container .slider-track {
    display: flex;
    flex-wrap: nowrap;
}

.clients-slider-container .item {
    margin: 0 55px;
    width: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.clients-slider-container .item img {
    object-fit: contain;
    max-height: 47px;
}


.key-benefits-main {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 20px;
    align-items: end;
}

.key-benefits-main .left,
.key-benefits-main .right {
    width: calc(50% - 10px);
}

.key-benefits-main .heading {
    margin-bottom: 8px;
}

.key-benefits-main .desc {
    font-size: 16px;
    line-height: 24px;
    color: #5A5A5A;
    margin-bottom: 24px;
}

.key-benefit-box {
    background: #F7F7F7;
    border-radius: 10px;
    padding: 22px 16px;
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    min-height: 136px;
    flex-wrap: wrap;
}

.key-benefit-box:last-child {
    margin-bottom: 0 !important;
}

.key-benefit-box .icon {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.key-benefit-box .content {
    flex: 1;
}

.key-benefit-box .title {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #32377F;
    margin-bottom: 8px;
    text-align: left;
    text-transform: capitalize;
}

.key-benefit-box .desc {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #7A7A7A;
    margin-bottom: 0;
}

.coverage-sec {
    padding: 104px 0 80px;
}

.coverage-sec .cs-heading {
    margin-bottom: 24px;
}

.coverage-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.coverage-list .item {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.coverage-list .item:nth-child(even) {
    flex-direction: row-reverse;
}

.coverage-list .item .col {
    width: calc(50% - 10px);
}

.coverage-list .item .image {
    height: 317px;
    width: 100%;
}

.coverage-list .item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.coverage-list .item .content .left {
    width: 98px;
    padding: 24px 40px 16px 24px;
}

.coverage-list .item .content .right {
    width: calc(100% - 98px);
    border-left: 1px solid #E5E5E5;
    padding: 24px;
}

.coverage-list .item .content .number {
    font-size: 32px;
    line-height: 40px;
    color: #333333;
}

.coverage-list .item .content .row {
    display: flex;
    align-items: end;
    border-bottom: 1px solid #E5E5E5;
}

.coverage-list .item .content .row:last-child {
    border-bottom: none;
}

.coverage-list .item .title {
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    text-transform: capitalize;
    color: #32377F;
    margin-bottom: 8px;
}

.coverage-list .item .desc {
    font-size: 16px;
    line-height: 26px;
    color: #191919;
}

.our-process-sec {
    padding: 40px 0;
}

.our-process-main {
    border-radius: 20px;
    padding: 40px 24px;
    background-color: #32377F;
    overflow: hidden;
}

.our-process-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/struckaxiom-1.png') no-repeat center;
    background-size: cover;
}

.our-process-sec .cs-heading {
    margin-bottom: 40px;
}

.process-wrapper {
    color: #fff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 12px 8px;
    margin-bottom: 40px;
}

.step-item {
    cursor: pointer;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-item .step-number {
    font-weight: 400;
    font-size: 36px;
    line-height: 40px;
}

.step-item>.inner {
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-item .line {
    width: 100%;
    height: 8px;
    border-radius: 10px;
    transition: 0.3s;
    background-color: #E5DBC7;
}

.step-item.active .line {
    background-color: #45AD4A;
}

.process-wrapper .process-content {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding-left: 24px;
    overflow: hidden;
}

.process-wrapper .content-block {
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
    pointer-events: none;
    flex-wrap: wrap;
    display: none;
    opacity: 0;
    transform: translateX(20px);
}

.process-wrapper .content-block.active {
    display: flex;
    opacity: 1;
    transform: translateX(0);

}

.process-wrapper .content-text {
    width: 52.85%;
    padding: 0 80px 0 24px;
}

.process-wrapper .content-text .title {
    font-weight: 500;
    font-size: 36px;
    line-height: 56px;
    color: #191919;
    margin-bottom: 10px;
}

.process-wrapper .content-text .desc {
    font-size: 20px;
    color: rgb(25, 25, 25, 0.8);
    line-height: 24px;
}

.process-wrapper .content-image {
    width: 47.15%;
    height: 317px;
}

.process-wrapper .content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}


.key-benefits-2-sec .key-benefits-main .heading {
    margin-bottom: 52px;
}

.key-benefits-2-sec .key-benefit-box {
    min-height: 108px;
}

.flexible-solutions {
    padding: 24px 0;
}

.flexible-solutions-main {
    padding: 56px 24px;
    border-radius: 20px;
    background: linear-gradient(180deg, #F4F6FD 0%, #E9EAFA 100%);
    overflow: hidden;
}

.flexible-solutions-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/struckaxiom-2.png') no-repeat center;
    background-size: cover;
}

.flexible-solutions-main .inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.flexible-solutions-main .inner .left,
.flexible-solutions-main .inner .right {
    width: calc(50% - 12px);
}

.flexible-solutions-main .inner .left {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: start;
}

.flexible-solutions-main .cs-heading {
    line-height: 56px;
    max-width: 626px;
}

.flexible-solutions-main .desc {
    font-size: 16px;
    line-height: 28px;
    color: #191919;
}

.flexible-solutions-video {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 900/466;
}

.flexible-solutions-video .video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flexible-solutions-video .video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: none;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: .3s ease;
}


.certificates-main {
    display: flex;
    flex-wrap: wrap;
    row-gap: 24px;
}

.certificates-main .left {
    width: 49.51%;
    padding-right: 24px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}

.certificates-main .cs-subheading {
    margin-bottom: 0;
}

.certificates-main .cs-heading {
    line-height: 56px;
}

.certificates-main .desc {
    max-width: 621px;
    font-family: Montserrat;
    font-size: 16px;
    line-height: 28px;
    color: #191919;
}

.certificates-main .right {
    width: 50.49%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.certificates-main .right::before {
    content: "";
    position: absolute;
    left: -1px;
    width: calc(100% + 2px);
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 15.12%, rgba(255, 255, 255, 0) 81.74%, #FFFFFF 100%);
    pointer-events: none;
    z-index: 1;
}

.certificate-slider .item {
    margin: 0 20px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #EDEDED;
    min-height: 132px;
}

.certificate-slider .item img {
    max-height: 99px;
}

.recent-news-sec {
    padding: 56px 0;
}

.recent-news-sec .cs-heading {
    color: #333333;
}

.recent-news-header {
    margin-bottom: 40px;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    padding-bottom: 43px;
}

.news-card {
    background-color: #F7F7F7;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;

}

.news-card .card-img {
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    height: 182px;
    display: block;
    margin-bottom: 16px;
}

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

.news-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;

}

.news-card .card-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #32377F;
    margin-bottom: 8px;
}

.news-card .card-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    font-weight: 500;
    color: #2A3341;
    font-size: 16px;
    line-height: 20px;
    margin-top: auto;
}

.ctas-sec {
    padding: 40px 0;
}

.ctas-box {
    border-radius: 20px;
    padding: 80px 40px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.ctas-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(50, 55, 127, 0.8);
}

.ctas-box .inner {
    max-width: 1276px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.ctas-box .cs-subheading {
    margin-bottom: 0;
}

.ctas-box .cs-heading {
    color: #fff;
}

.ctas-box .desc {
    font-weight: 500;
    font-size: 24px;
    line-height: 48px;
}

.footer-site {
    padding: 56px 0;
}

.footer-site .container {
    max-width: 1316px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
}


.footer-main .column-1 {
    width: 32.13%;
}

.footer-main .column-2 {
    width: 13.01%;
}

.footer-main .column-3 {
    width: 21.87%;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 230px;
    margin-top: -9px;
    margin-bottom: 34px;
}

.footer-logo {
    width: 82px;
}

.footer-logo img {
    width: 100%;
}

.footer-logo-wrapper .title {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    color: #32377F;
    flex: 1;
}

.footer-desc {
    font-size: 16px;
    line-height: 26px;
    color: #5A5A5A;
    margin-bottom: 42px;
}

.footer-copyright {
    font-size: 14px;
    line-height: 26px;
    color: #5A5A5A;
}

.footer-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.02em;
    color: #000;
    margin-bottom: 16px;
}

.footer-menus ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
}

.footer-menus ul li a {
    font-size: 16px;
    line-height: 26px;
    text-wrap: nowrap;
    color: #5A5A5A;
}

.footer-menus ul li a:hover {
    color: #45AD4A;
}

.footer-address {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-address p {
    display: flex;
    gap: 10px;
    font-size: 18px;
    line-height: 26px;
    color: #5A5A5A;
    align-items: start;
    margin-bottom: 0;
}

.footer-address p a[href^="mailto"] {
    text-decoration: underline;
}

.footer-address a[href^="tel"] {
    font-weight: 600;
}

.footer-address img {
    width: 24px;
}