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

:root {
    --spectra-white: #FFFFFF;
    --spectra-bg-gray: #F5F5F5;
    --spectra-black: #000000;
    --spectra-light-black: #030000;
    --spectra-theme-blue: #47A8C5;
    --spectra-button-blue: #4AA7BD;
    --spectra-light-purple: #FBF5FF;
    --spectra-medium-purple: #C8BBDB;
    --spectra-dark-purple: #9077B6;
}

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

@font-face {
    src: url(../font/HelveticaNeue-Medium.otf) format('opentype');
    font-family: helvetica-neue-medium;
    font-display: swap;
}

@font-face {
    src: url(../font/HelveticaNeue-Bold.otf) format('opentype');
    font-family: helvetica-neue-bold;
    font-display: swap;
}

@font-face {
    src: url(../font/HelveticaNeue-Light.otf) format('opentype');
    font-family: helvetica-neue-light;
    font-display: swap;
}

@font-face {
    src: url(../font/HelveticaNeue-Regular.otf) format('opentype');
    font-family: helvetica-neue-regular;
    font-display: swap;
}

@font-face {
    src: url(../font/HelveticaNeue-Thin.otf) format('opentype');
    font-family: helvetica-neue-thin;
    font-display: swap;
}

@font-face {
    src: url(../font/Spectra-Regular.otf) format('opentype');
    font-family: spectra-regular;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
}

main {
    width: 100%;
}

a {
    text-decoration: none;
}

ul li {
    list-style: none;
}


/* common class  */

.common-container {
    width: 100%;
    height: 100%;
    max-width: 92%;
    margin: 0 auto;
}

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

.txt-start {
    text-align: start;
}

.m-top-20 {
    margin-top: 20px;
}

.m-top-10 {
    margin-top: 10px;
}

.m-bottom-20 {
    margin-bottom: 20px;
}

.m-bottom-10 {
    margin-bottom: 10px;
}

.pt-0 {
    padding-top: 0 !important;
}

.section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}

.spectra-heading-light {
    color: var(--spectra-white);
    font-size: 55px;
    font-weight: 400;
    font-family: helvetica-neue-bold;
    line-height: 1.2;
    position: relative;
}

.spectra-heading-light.dark {
    color: var(--spectra-black);
}

.spectra-para-light {
    color: var(--spectra-white);
    font-weight: 400;
    line-height: 1.3;
    font-size: 18px;
    font-family: helvetica-neue-thin, sans-serif;
}

.spectra-para-light.dark {
    color: var(--spectra-black);
}

.spectra-btn-dark {
    position: relative;
    border: none;
    outline: none;
    background: none;
    background-color: var(--spectra-button-blue);
    font-family: helvetica-neue-regular, sans-serif;
    color: var(--spectra-white);
    font-weight: 500;
    font-size: 13px;
    padding: 18px;
    text-transform: uppercase;
    z-index: 1;
    cursor: pointer;
}

.section-heading {
    color: var(--spectra-black);
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.2;
    font-family: helvetica-neue-bold, sans-serif;
    font-size: 36px;
    text-wrap: nowrap;
}

.section-paragraph {
    color: var(--spectra-black);
    font-weight: 500;
    line-height: 1.4;
    font-family: helvetica-neue-regular, sans-serif;
    font-size: 19px;
}

.spectra-btn-dark::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: -6px;
    bottom: -6px;
    background-color: transparent;
    border: 1px solid var(--spectra-button-blue);
    z-index: -1;
}

.spectra-btn-dark:hover {
    background-color: var(--spectra-white);
    color: var(--spectra-button-blue);
	text-decoration: none;
}

.spectra-btn-dark:hover::after {
    border: 1px solid var(--spectra-white);
}

.btn-white {
    background-color: var(--spectra-white);
    color: var(--spectra-black);
}

.spectra-btn-dark.btn-white::after {
    border: 1px solid var(--spectra-white);
}


.file-button {
    position: fixed;
    right: 20px;
    bottom: 50px;
    z-index: 111111111111111111111111;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--spectra-theme-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.file-button img {
    width: 20px;
    height: 20px;
}


.txt-white {
    color: #FFFFFF;
}



/* hero section  */
.spectra-hero-section {
    position: relative;
    width: 100%;
    height: 540px;
    background-color: var(--spectra-black);
    max-width: auto;
}

.spectra-hero-half {
    display: flex;
    flex-direction: column;
    width: 50%;
    height: 100%;
    color: white;
    align-items: flex-start;
    justify-content: start;
    position: relative;
    gap: 20px;
	top: 50px;
}

.spectra-hero-half h1,
.spectra-hero-half p,
.spectra-hero-half a {
    position: relative;
    z-index: 2;
}

.hero-half-mask {
    position: absolute;
    top: -20px;
    left: 6%;
    width: 600px;
    z-index: 1;
}

.hero-half-mask.mob {
    display: none;
}

.spectra-hero-mask {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 45%;
    background-image: url(../images/hero-mask.svg);
    background-size: cover;
    background-repeat: no-repeat;
}


.hero-maks-office-desktop {
    position: absolute;
    right: 0;
   top: 0px;
    width: 65%;
}

.hero-maks-office-mobile {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: none;
    height: auto;
}

/* choose section  */
.spectra-choose-section {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: var(--spectra-bg-gray);
}

.spectra-choose-section.office-page {
    display: flex;
    justify-content: flex-end;
}

.choose-slider-box {
    position: absolute;
    width: 60%;
    left: 0;
    bottom: 13%;
    z-index: 22;
    background-color: var(--spectra-button-blue);
    padding: 15px 20px 10px 60px;
}

.bad-connection-slider-box {
    width: 100%;
    overflow: hidden;
}

.bad-connection-slider-box .swiper-wrapper {
    padding-bottom: 0 !important;
}

.bad-connection-slider-box .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}


.bad-connection-slider-box .swiper-slide svg {
    width: 45px;
    height: 45px;
}

.bad-connection-slider-box .swiper-slide p {
    width: 100%;
    font-family: helvetica-neue-, sans-serif;
    font-size: 18px;
    color: var(--spectra-white);
    line-height: 1.4;
}



.spectra-choose-section .common-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
}

.choose-para-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.choose-para-box li {
    list-style: disc;
}

.section-paragraph .bold {
    font-family: helvetica-neue-medium;
}

/* get more section  */
.get-more-section {
    width: 100%;
    background-color: var(--spectra-theme-blue);
    position: relative;
    display: flex;
    flex-direction: column;
}

.get-more-section .common-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.get-more-banner {
    width: 100%;
    min-height: 270px;
    background-color: var(--spectra-theme-blue);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.get-more-heading {
    font-weight: 700;
    color: var(--spectra-white);
    font-size: 36px;
    font-family: helvetica-neue-bold;
}

.get-more-para {
    font-weight: 500;
    color: var(--spectra-white);
    font-size: 22px;
    font-family: helvetica-neue-medium;
}

.get-more-slide-container {
    width: 100%;
    padding-left: 60px;
    padding-right: 60px;
    position: relative;
    margin-top: 50px;
}

.getMore-slide-btn-box,
.hearUs-slide-btn-box,
.knowledge-slide-btn-box,
.work-slide-btn-box {
    position: absolute;
    right: 60px;
    top: -98px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.get-more-pagination-btn,
.hear-us-pagination-btn,
.knowledge-pagination-btn,
.down-pagination-btn,
.package-pagination-btn,
.work-pagination-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #4AA7BD;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.get-more-pagination-btn {
    border: 2px solid #FFFFFF;
}

.get-more-pagination-btn svg,
.hear-us-pagination-btn svg,
.knowledge-pagination-btn svg,
.down-pagination-btn svg,
.package-pagination-btn svg,
.work-pagination-btn svg {
    width: 18px;
}

.get-more-pagination-btn svg {
    filter: brightness(0) saturate(100%) invert(100%);
}

.hear-us-pagination-btn.swiper-button-disabled,
.knowledge-pagination-btn.swiper-button-disabled,
.down-pagination-btn.swiper-button-disabled,
.package-pagination-btn.swiper-button-disabled,
.work-pagination-btn.swiper-button-disabled {
    border-color: #B5D4DE;
    cursor: default;
}

.get-more-pagination-btn.swiper-button-disabled {
    border-color: #ffffff70;
    cursor: default;
}

.get-more-pagination-btn.swiper-button-disabled svg,
.hear-us-pagination-btn.swiper-button-disabled svg,
.swiper-button-disabled.swiper-button-disabled svg,
.down-pagination-btn.swiper-button-disabled svg,
.package-pagination-btn.swiper-button-disabled svg,
.work-pagination-btn.swiper-button-disabled svg {
    filter: invert(42%) sepia(44%) saturate(1211%) hue-rotate(162deg) brightness(94%) contrast(87%);
    opacity: 0.35;
}

.get-more-pagination-btn.swiper-button-disabled svg {
    filter: brightness(0) saturate(100%) invert(100%);
}

.work-button-prev.swiper-button-disabled+.work-button-next.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    display: none;
}

.work-button-prev.swiper-button-disabled:has(+ .work-button-next.swiper-button-disabled) {
    display: none;
}


.get-more-slide-box {
    width: 100%;
    overflow: hidden;
}

.swiper-wrapper {
    width: 100%;
}

.get-more-slide-box .swiper-slide {
    padding-top: 50px;
    padding-left: 30px;
    border-right: 1px solid #E6E6E6;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 330px;
    padding-right: 20px;
    background-color: var(--spectra-white);
}

.get-more-slide-box .swiper-slide:last-child {
    border-right: none;
}



.get-more-slide-info-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.get-more-slide-info-box img {
    width: 45px;
    height: 45px;
    margin-bottom: 40px;
}

.get-more-slide-info-box .card-number {
    margin-bottom: 40px;
}

.get-more-slide-info-box h4 {
    margin-bottom: 20px;
    font-weight: 700;
    font-family: helvetica-neue-bold;
    font-size: 20px;
    line-height: 1.2;
    color: var(--spectra-black);
}

.get-more-slide-info-box p {
    font-weight: 400;
    font-family: helvetica-neue-light;
    font-size: 15px;
    line-height: 1.5;
    color: var(--spectra-black);
}

.slide-number {
    font-weight: 400;
    font-family: helvetica-neue-light;
    font-size: 15px;
    color: var(--spectra-black);
}

/* faq section  */

.spectra-faq-section {
    width: 100%;
    background-color: var(--spectra-light-black);
    position: relative;
}

.spectra-faq-section .common-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.spectra-faq-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    overflow: auto;
    height: 600px;
    padding-right: 40px;
}

.spectra-faq-container::-webkit-scrollbar {
    width: 2px;
}

.spectra-faq-container::-webkit-scrollbar-track {
    background: #102726;
}

.spectra-faq-container::-webkit-scrollbar-thumb {
    background: #42C0BB;
    border-radius: 2px;
    width: 2px;
}

.spectra-faq-divider {
    width: 100%;
}

.faq-heading-section {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.faq-heading-section,
.spectra-faq-container {
    flex: 1;
}

.faq-heading-section svg {
    width: 180px;
}

.spectra-faq-divider .spectra-faq-item:first-child {
    border-top: 1.5px solid;
}

.spectra-faq-item {
    background-color: var(--spectra-light-black);
    overflow: hidden;
    transition: all 0.3s ease;
    border-bottom: 1.5px solid;
    border-image-source: linear-gradient(180deg, rgba(66, 192, 187, 0.2) 0%, rgba(93, 138, 181, 0.2) 37.5%, rgba(144, 119, 182, 0.2) 100%);
    border-image-slice: 1;
}

.spectra-faq-header {
    padding: 10px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    border: none;
    background: none;
    color: inherit;
    font: inherit;
    text-align: left;
    width: 100%;
}

.spectra-faq-question {
    font-size: 15px;
    font-weight: 500;
    color: var(--spectra-white);
    flex: 1;
    font-family: helvetica-neue-thin;
}

.spectra-faq-item.active .spectra-faq-question {
    font-family: helvetica-neue-regular;
}

.spectra-faq-icon {
    width: 33px;
    height: 33px;
    border: 2px solid #4AA7BD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    background-color: transparent;
    position: relative;
}

.spectra-faq-icon::before,
.spectra-faq-icon::after {
    content: '';
    position: absolute;
    background-color: #4AA7BD;
    transition: all 0.3s ease;
}

.spectra-faq-icon::before {
    width: 10px;
    height: 1.5px;
}

.spectra-faq-icon::after {
    width: 1.5px;
    height: 10px;
}


.spectra-faq-item.active .spectra-faq-icon::after {
    opacity: 0;
}

.spectra-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.spectra-faq-item.active .spectra-faq-answer {
    max-height: 200px;
    padding: 15px 90px 30px 0;
}

.spectra-faq-item.active .spectra-faq-header {
    padding: 40px 0 0 0;
}

.spectra-faq-answer-text {
    font-family: helvetica-neue-thin;
    font-weight: 400;
    font-size: 15px;
    color: var(--spectra-white);
    line-height: 1.4;
}

/* Animation for smooth opening */
.spectra-faq-item.opening .spectra-faq-answer {
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
}

.spectra-faq-item.closing .spectra-faq-answer {
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

/* hear us section  */
.hear-us-section {
    width: 100%;
    background-color: var(--spectra-bg-gray);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.hear-us-slide-container {
    width: 100%;
    padding-left: 60px;
    position: relative;
}

.hear-us-slide-box {
    width: 100%;
    overflow: hidden;
}

.hear-us-slide-box .swiper-slide {
    background-color: var(--spectra-white);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.hear-us-profile {
    width: 250px;
    height: 250px;
    overflow: hidden;
    border-radius: 50%;
    position: relative;
    margin-top: 20px;
}

.hear-us-profile img {
    width: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.hear-us-profile button {
    position: absolute;
    z-index: 2;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: none;
    background-color: var(--spectra-button-blue);
    border: none;
    outline: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 10px 25px;
    border-radius: 40px;
    font-family: helvetica-neue-light;
    font-size: 16px;
    font-weight: 400;
    color: var(--spectra-white);
    cursor: pointer;
}

.play-hear-video {
    display: none !important;
}

.hear-us-about {
    font-family: helvetica-neue-regular;
    font-weight: 400;
    color: #1B0D01;
    font-style: italic;
    text-align: center;
    font-size: 16px;
    line-height: 1.4;
}

.hear-us-name {
    font-family: helvetica-neue-light;
    font-weight: 400;
    color: var(--spectra-black);
    font-size: 14px;
    border-top: 1px solid #CBCAC7;
    width: 100%;
    text-align: center;
    padding-top: 20px;
}

.hear-us-name .bold {
    font-family: helvetica-neue-medium;
    font-weight: 500;
}


.hear-video-player {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000000c2;
    justify-content: center;
    align-items: center;
    z-index: 111111111111111111;
    left: 0;
    top: 0;
}

.hear-video-wrapper {
    position: relative;
}

.close-video-popup {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 1px solid var(--spectra-bg-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -50px;
    right: -40px;
    color: var(--spectra-white);
    font-family: helvetica-neue-thin;
    font-size: 17px;
    cursor: pointer;
}

.video-player {
    width: 720px;
    height: 380px;
}


/* knowledge section  */
.knowledge-center-section {
    width: 100%;
    background-color: var(--spectra-white);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.knowledge-slide-container {
    width: 100%;
    padding-left: 60px;
    padding-right: 30px;
    position: relative;
}

.knowledge-slide-box {
    width: 100%;
    overflow: hidden;
}

.knowledge-slide-box .swiper-slide {
    width: 100%;
}

.knowledge-cta {
    width: 100%;
}

.knowledge-cta img {
    width: 100%;
	min-height: 275px;
}

.knowledge-cta div {
    color: var(--spectra-black);
    font-family: helvetica-neue-light;
    font-weight: 400;
    font-size: 16px;
    padding: 20px 0 10px 0;
}

.knowledge-cta p {
    color: var(--spectra-black);
    font-family: helvetica-neue-medium;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.3;
}

/* contact section  */
.spectra-contact-section {
    width: 100%;
    background-color: var(--spectra-theme-blue);
    position: relative;
}

.spectra-contact-section .common-container {
    padding: 0 70px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.spectra-contact-section .spectra-heading-light {
    color: var(--spectra-light-black);
}

.spectra-contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.spectra-contact-input-box {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 100px;
}

.spectra-contact-divider {
    width: 100%;
}

.spectra-input-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}


.spectra-input-wrapper label {
    color: var(--spectra-white);
    font-size: 14px;
    font-family: helvetica-neue-light;
    font-weight: 400;
    position: absolute;
    top: 10px;
    left: 0;
}

.spectra-input-wrapper .input-error {
    font-size: 12px;
    position: absolute;
    bottom: -18px;
    left: 0;
    font-family: helvetica-neue-medium;
    color: #bd0505;
    display: none;
}

.spectra-input-wrapper input,
.spectra-input-wrapper select {
    background: none;
    outline: none;
    border: none;
    border-bottom: 1px solid #E2E2E2;
    padding: 45px 0 10px 0;
    font-family: helvetica-neue-regular;
    font-weight: 500;
    color: var(--spectra-white);
    font-size: 17px;
}

.spectra-input-wrapper input::placeholder {
    font-family: helvetica-neue-regular;
    font-weight: 500;
    color: var(--spectra-white);
    font-size: 17px;
}

.spectra-spam-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.spectra-spam-box input {
    background: none;
    outline: none;
    border: none;
    border-bottom: 1px solid #E2E2E2;
    text-align: center;
    width: 26px;
    font-family: helvetica-neue-regular;
    font-weight: 500;
    color: var(--spectra-white);
    font-size: 15px;
}

.spectra-spam-box span {
    font-family: helvetica-neue-regular;
    font-weight: 500;
    color: var(--spectra-white);
    font-size: 17px;
}

.spectra-spam-box .spam-text {
    color: var(--spectra-white);
    font-size: 13px;
    font-family: helvetica-neue-light;
    font-weight: 400;
    text-transform: capitalize;
}

.spectra-agree-box {
    margin: 40px 0;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.spectra-checkbox-wrapper {
    position: relative;
    display: flex;
    align-items: flex-end;
}

.spectra-checkbox-wrapper input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid var(--spectra-white);
    width: 16px;
    height: 16px;
    cursor: pointer;
    border-radius: 2px;
    position: relative;
}

.spectra-checkbox-wrapper input[type="checkbox"]::after {
    content: '';
    position: absolute;
    left: 4px;
    top: -1px;
    width: 12px;
    height: 12px;
    opacity: 0;
    background-color: var(--spectra-theme-blue);
    background-image: url(../images/check-box-icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 22;
    transition: opacity 0.2s ease;
    display: inline-block;
}

.spectra-checkbox-wrapper input[type="checkbox"]:checked::after {
    opacity: 1;
}

.spectra-agree-box label {
    color: var(--spectra-white);
    font-size: 14px;
    font-family: helvetica-neue-thin;
    font-weight: 400;
}

.contact-verify-box {
    width: 100%;
}

.submit-contact {
    width: 25%;
}

.spectra-down-section {
    width: 100%;
    position: relative;
    background-color: var(--spectra-bg-gray);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.spectra-down-card-box {
    width: 100%;
    padding-left: 50px;
    padding-right: 25px;
    position: relative;
}

.card-slide-box {
    width: 100%;
    overflow: hidden;
    min-height: 155px;
}

.heading-half-font {
    font-family: spectra-regular;
    font-weight: 700;
}

.down-slide-btn-box {
    position: absolute;
    bottom: 0;
    left: 50%;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    transform: translateX(-50%);
    display: none;
}

.card-slide-box .swiper-wrapper {
    justify-content: center;
    align-items: center;
}

.spectra-down-card {
    width: 100%;
    height: 100%;
    background-color: var(--spectra-white);
    color: var(--spectra-black);
    padding: 50px 30px;
    font-family: helvetica-neue-light;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.4;
    text-align: start;
    position: relative;
    border: 1px solid #4AA7BD;
}

.spectra-down-card::after {
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    top: 8px;
    left: 10px;
    right: -8px;
    bottom: 0;
    background: #4AA7BD33;
    z-index: -1;
}


.why-spectra-card .spectra-down-card::after {
    right: -8px;
    left: auto;
    padding: 0 8px;
}

.why-spectra-card.card-slide-box .swiper-slide {
    /* width: 320px !important; */
    height: 120px;
}

.banner-state-section {
    width: 100%;
    background-color: var(--spectra-white);
}

.why-spectra-card .spectra-down-card {
    padding: 10px 20px;
    font-family: helvetica-neue-regular;
}

.why-spectra-card .spectra-down-card {
    display: flex;
    justify-content: center;
    align-items: center;
}

.spectra-down-card:hover {
    background-color: var(--spectra-theme-blue);
    color: var(--spectra-white);
    font-family: helvetica-neue-regular;
}

.benefits-section {
    width: 100%;
    position: relative;
    background-color: var(--spectra-medium-purple);
}

.benefits-list-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 70px;
    margin-top: 50px;
    align-items: flex-start;
    justify-content: space-between;
}

.benefits-list-box {
    width: 100%;
    display: flex;
    flex-direction: row;
}


.benefits-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
    padding: 40px;
    border-right: 1px solid var(--spectra-bg-gray);
    background-color: var(--spectra-white);
    flex: 1;
}

.benefits-list:last-child {
    border-right: none;
}

.benefits-list svg {
    width: 80px;
}

.benefits-list-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.benefits-list-info h4 {
    color: #2E0303;
    font-family: helvetica-neue-bold;
    font-size: 16px;
}

.benefits-list-info p {
    color: #2E0303;
    font-family: helvetica-neue-light;
    font-size: 14px;
    line-height: 1.4;
}

/* office choose section  */
.office-choose-section {
    width: 100%;
    position: relative;
    background-color: var(--spectra-medium-purple);
}

.office-choose-section .common-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.office-top-box {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 150px;
    align-items: flex-start;
}

.office-top-box .section-paragraph {
    padding-top: 5px;
}

.office-top-box .section-paragraph span {
    display: block;
}

.office-bottom-box {
    width: 100%;
    background-color: var(--spectra-white);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.office-bottom-heading {
    font-family: helvetica-neue-medium;
    color: var(--spectra-black);
    font-size: 17px;
    text-align: center;
    width: 100%;
}

.choose-section-mask {
    width: 45%;
    object-fit: cover;
}
.choose-section-mask2 {
    width: 100%;
    object-fit: cover;
}

.choose-section-mask.dx {
    display: block;
}

.choose-section-mask.mb {
    display: none;
}

.choose-section-left {
    width: 55%;
    display: flex;
    flex-direction: column;
   
    padding-left: 60px;
}

.card-number {
    background: linear-gradient(185.68deg, #FFFFFF 4.52%, #4AA7BD 195.12%);
    font-family: helvetica-neue-regular;
    font-size: 17px;
    letter-spacing: 2px;
    color: #656565;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;

}

.office-card-box {
    width: 100%;
    border-top: 1px solid #EDEDED;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
}

.office-choose-card {
    width: 100%;
    height: 100%;
}

.office-card-wrapper {
    width: 100%;
    height: 100%;
    border-bottom: 1px solid #EDEDED;
    border-right: 1px solid #EDEDED;
    padding: 50px 35px 40px 35px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.office-card-wrapper svg {
    width: 45px;
    height: 45px;
}

.office-card-wrapper h4 {
    padding-top: 30px;
    padding-bottom: 20px;
    font-family: helvetica-neue-medium;
    font-size: 18px;
    line-height: 1.3;
}

.office-card-wrapper p {
    color: #2E0303;
    font-family: helvetica-neue-light;
    font-size: 14px;
    line-height: 1.6;
}

/* package section */

.package-section {
    width: 100%;
    background-color: var(--spectra-white);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.package-price-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-direction: column;
}

.package-tab-container {
    display: flex;
    justify-content: center;
    padding: 0 10px;
}

.package-tab-wrapper {
    background-color: #4AA7BD33;
    border-radius: 50px;
    display: flex;
    position: relative;
    overflow: hidden;
}

.package-tab {
    padding: 20px 30px;
    background-color: transparent;
    border: none;
    color: #454545;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 44px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    font-family: helvetica-neue-regular;
}

.package-tab-indicator {
    position: absolute;
    height: 100%;
    background-color: #4AA7BD;
    border-radius: 44px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    box-shadow: 0 2px 8px rgba(144, 119, 182, 0.3);
}

.package-tab.active {
    color: var(--spectra-white);
    background-color: transparent;
}

.package-pricing-grid {
    display: none;
    width: 100%;
    position: relative;
    padding-left: 60px;
}

.package-pricing-grid.active {
    display: block;
}

.package-pricing-content {
    width: 100%;
}

.package-slide-btn-box {
    position: absolute;
    bottom: -30px;
    left: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    transform: translateX(-50%);
}

.package-slide-box {
    width: 100%;
    overflow: hidden;
}

.talk-button .spectra-btn-dark {
    display: inline-block;
}


.talk-button .spectra-btn-dark:hover {
    outline: 1px solid var(--spectra-theme-blue);
}


.package-slide-box .swiper-wrapper {
    justify-content: flex-start;
    align-items: center;
}

.package-slide-box .swiper-slide {
    background-color: #E9FBFF;
    display: flex;
    flex-direction: column;
    height: 400px;
}

.package-slide-box .swiper-slide:hover .pk-progress {
    background: linear-gradient(180deg, #065970 0%, #9EEAFF 100%);

}

.package-slide-box .swiper-slide:hover {
    box-shadow: 0px 4px 64px 0px #3EB6D73D;

}

.package-slide-box .swiper-slide:hover .pk-progress h5,
.package-slide-box .swiper-slide:hover .pk-progress span,
.package-slide-box .swiper-slide:hover .pk-progress p {
    color: var(--spectra-white);
}

.package-slide-box .swiper-slide:hover .pk-progress span,
.package-slide-box .swiper-slide:hover .pk-progress p {
    font-size: 18px;
}

.package-slide-box .swiper-slide:hover .pk-bar {
    border: 6px solid #D0E9EE;
    border-bottom-color: #FFFFFF;
    border-right-color: #FFFFFF;
    width: 100px;
    height: 100px;

}

.package-slide-box .swiper-slide:hover .pk-barOverflow {
    width: 100px;
    height: 70px;
    margin-bottom: -42px;
}


.pk-progress {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    float: left;
    text-align: center;
    padding: 30px 10px;
}

.pk-barOverflow {
    position: relative;
    overflow: hidden;
    width: 80px;
    height: 55px;
    margin-bottom: -32px;
}

.pk-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-sizing: border-box;
    border: 6px solid #C7E2E9;
    border-bottom-color: #4AA7BD;
    border-right-color: #4AA7BD;
}


.pk-progress h5 {
    margin-bottom: 12px;
    font-size: 17px;
    color: #4AA7BD;
    font-family: helvetica-neue-regular;
}

.pk-progress span {
    color: #454545;
    font-family: helvetica-neue-medium;
    font-size: 16px;
}

.pk-progress p {
    color: #454545;
    font-family: helvetica-neue-regular;
    font-size: 12px;
}

.package-info-box {
    padding: 10px 25px 20px 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.package-info {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #DAEBEF;
}

.package-info:last-child {
    border-bottom: none;
}

.package-info svg {
    width: 20px;
    height: 20px;
}

.package-info span {
    color: #454545;
    font-family: helvetica-neue-regular;
    font-size: 13px;
}

.package-card-price {
    margin-top: 20px;
    color: #454545;
    font-family: helvetica-neue-medium;
    font-size: 26px;
}

.package-card-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: flex-start;
    padding-top: 20px;
}

.package-card-info span {
    color: #454545;
    font-size: 13px;
    font-family: helvetica-neue-regular;
}

.package-card-info ul {
    padding-left: 15px;
}



.package-card-info ul li {
    list-style-type: disc;
}

.stats-section {
    width: 100%;
    background-color: var(--spectra-white);
    position: relative;
}

.stats-section.stats-office {
    background-color: var(--spectra-button-blue);
}

.stats-office-box {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 2px solid #ffffffb6;
    border-radius: 10px;
}

.office-stat {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 30px 25px;
}



.office-stat svg {
    width: 60px;
    height: 60px;
}

.office-stat p {
    font-family: helvetica-neue-light;
    color: var(--spectra-white);
    font-size: 17px;
    line-height: 1.4;
}

.office-stat h5 {
    font-family: helvetica-neue-bold;
    font-size: 22px;
    color: var(--spectra-white);
}

.stats-section .get-more-banner {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 100px;
    align-items: center;
    justify-content: center;
}


.stats-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stats-heading {
    color: var(--spectra-white);
    font-weight: 700;
    font-family: helvetica-neue-medium;
    font-size: 40px;
}

.stats-para {
    font-size: 24px;
    font-weight: 400;
    font-family: helvetica-neue-regular;
    color: var(--spectra-white);
    border-top: 2px solid #ededed7d;
    padding-top: 10px;
}

.we-work-section {
    width: 100%;
    background-color: var(--spectra-white);
    position: relative;
    display: flex;
    flex-direction: column;
}

.we-work-slide-container {
    width: 100%;
    padding-left: 60px;
    padding-right: 60px;
    position: relative;
    margin-top: 50px;
}

.we-work-slide-box {
    width: 100%;
    overflow: hidden;
}

.we-work-slide-box .swiper-slide {
    padding: 50px 3px;
    border-right: 1px solid #E4E4E4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 330px;
    background-color: var(--spectra-white);
}

.we-work-slide-box .swiper-slide:first-child {
    border-left: 1px solid #E4E4E4;
}

.we-work-half-box {
    width: 100%;
    height: 220px;
    border-top: 2px dotted #9077B6;
    border-radius: 300px 300px 0 0;
    border-bottom: none;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: var(--spectra-white);
    position: relative;
}


.we-work-slide-box .swiper-slide {
    display: flex;
    flex-direction: column;
    gap: 100px;
    align-items: center;
    justify-content: center;
}

.we-work-heading {
    font-size: 18px;
    font-family: helvetica-neue-bold;
    color: var(--spectra-black);


}

.we-work-text {
    width: 100%;
    padding: 0px 30px 0px 30px;
    text-align: start;
    font-size: 16px;
    font-family: helvetica-neue-regular;
    line-height: 1.4;
    color: var(--spectra-black);
}

.we-work-number {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    background: linear-gradient(224.86deg, #DAD6E8 -36.61%, #FFFFFF 45.45%);
    border: 1px solid #DFDFDF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 400;
    font-size: 16px;
    font-family: helvetica-neue-regular;
    color: var(--spectra-black);
}

.form-submit-popup-container {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 111111111111111111111111 !important;
    background-color: #00000021;
    justify-content: center;
    align-items: center;
}

.submit-popup-wrapper {
    background-color: var(--spectra-white);
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 45%;
    height: 350px;
    border-radius: 30px;
}

.submit-popup-wrapper svg {
    width: 70px;
}

.submit-popup-wrapper h5 {
    color: #000000;
    font-weight: 400;
    font-family: helvetica-neue-medium;
    font-size: 32px;
}

.submit-popup-wrapper p {
    font-family: "Titillium Web", sans-serif;
    font-weight: 400;
    color: #000000;
    font-size: 16px;
}

.close-submit-popup {
    position: absolute;
    top: 20px;
    right: 0;
    cursor: pointer;
}


@media screen and (max-width: 1444px) {
    .get-more-slide-container {
        padding-right: 0;
    }

    .we-work-slide-container {
        padding-right: 0;
    }

    .hero-half-mask {
        width: 450px;
    }

    .down-slide-btn-box {
        display: flex;
    }

    .spectra-down-card-box {
        padding-bottom: 50px;
        padding-right: 0;
    }

    .card-slide-box .swiper-wrapper {
        justify-content: flex-start;
    }

    .stats-heading {
        font-size: 35px;
    }

    .stats-para {
        font-size: 20px;
    }

    .stats-section .get-more-banner {
        gap: 50px;
    }

    .we-work-slide-container {
        padding-left: 50px;
    }
}

@media screen and (max-width:1600px) {
    .bad-connection-slider-box .swiper-slide p {
        font-size: 14px;
        line-height: 1.5;
    }

    .section-heading {
        font-size: 32px;
        line-height: 1.4;
		
    }

    .office-card-wrapper h4 {
        font-size: 15px;
        line-height: 1.5;
        color: #2E0303;
    }
}

@media screen and (max-width: 1340px){
    .choose-slider-box {
        width: 840px;
    }
}

@media screen and (min-width: 1340px) {
    .choose-slider-box {
        /* width: 80%; */
    }
}


/* @media screen and (max-width:1341px) and (min-width: 1280px) {
    .choose-slider-box {
        width: 66%;
    }
} */




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

    .choose-slider-box {
        width: 65%;
    }

    .submit-popup-wrapper {
        width: 80%;
    }

    .submit-popup-wrapper h5 {
        font-size: 28px;
    }

    .choose-section-left {
        padding-left: 40px;
    }

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


    .choose-section-mask {
        width: 100%;
    }

    .choose-section-left {
        width: 100%;
    }

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

    .benefits-list-box {
        flex-direction: column;
    }

    .benefits-list {
        border-right: 0;
        border-bottom: 1px solid var(--spectra-bg-gray);
        padding: 20px;
    }

    .benefits-list:last-child {
        border-bottom: 0;
    }


    .section-heading {
        font-size: 28px;
    }

    .section-paragraph {
        font-size: 16px;
    }

    .section-padding {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .spectra-heading-light {
        font-size: 40px;
    }

    .spectra-choose-section .common-container {
        flex-direction: column;
        gap: 50px;
    }

    .spectra-choose-section.office-page {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .video-player {
        width: 520px;
    }

    .hero-half-mask {
        width: 400px;
    }


    .stats-heading {
        font-size: 28px;
    }

    .stats-para {
        font-size: 16px;
    }

    .package-slide-btn-box {
        bottom: -35px;
    }

    .getMore-slide-btn-box .work-slide-btn-box {
        top: -87px;
    }


    .we-work-slide-container {
        padding-left: 40px;
    }

    .choose-slider-box {
        padding-left: 40px;
        width: 100%;
    }

}

@media screen and (max-width: 768px) {
    .spectra-choose-section.office-page {
        gap: 40px;
    }

    .choose-section-left,
    .choose-section-mask {
        padding-left: 20px;
    }

    .choose-slider-box {
        padding-left: 20px;
    }

    .common-container {
        max-width: 95%;
    }

    .section-heading {
        font-size: 24px;
        text-wrap: wrap;
    }

    .section-paragraph {
        font-size: 15px;
    }

    .section-padding {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .spectra-heading-light {
        font-size: 30px;
    }

    .spectra-faq-container {
        flex-direction: column;
        gap: 0;
        padding-right: 0;
        height: auto;
    }

    .get-more-section .common-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .get-more-slide-container {
        margin-top: 30px;
    }

    .we-work-slide-container {
        margin-top: 30px;
    }

    .get-more-section .section-heading.txt-center {
        text-align: start;
    }

    .office-card-wrapper {
        padding: 40px 20px;
    }

    .knowledge-slide-container,
    .get-more-slide-container,
    .hear-us-slide-container {
        padding-left: 10px;

    }

    .we-work-slide-container {
        padding-left: 20px;
    }

    .knowledge-slide-container {
        padding-right: 10px;
    }

    .spectra-down-card-box {
        padding-left: 10px;
    }

    .package-pricing-grid {
        padding-left: 10px;
    }

    .package-slide-box {
        padding-left: 10px;
    }

    .spectra-contact-section .common-container {
        padding: 0 30px;
    }

    .submit-contact {
        width: 50%;
    }

    .video-player {
        width: 480px;
    }

    .close-video-popup {
        top: -40px;
        right: -20px;
    }

    .hero-half-mask {
        width: 350px;
    }

    .office-card-box {
        grid-template-columns: repeat(1, 1fr);
        border-top: none;
    }

    .office-top-box {
        flex-direction: column;
        gap: 20px;
    }

    .office-choose-section .common-container {
        gap: 25px;
    }

    .office-top-box .section-paragraph span {
        padding-top: 15px;
    }

    .office-bottom-heading {
        display: none;
    }

    .stats-section .get-more-banner {
        gap: 0;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 50px 20px;
    }

    .stats-box {
        width: 100%;
        flex-direction: row;
        padding: 20px 0;
        border-bottom: 1px solid #ededed9c;
        gap: 20px;
    }

    .stats-box:first-child {
        border-top: 1px solid #ededed9c;
    }

    .stats-para {
        border-top: none;
    }

    .spectra-faq-section .common-container {
        flex-direction: column;
    }

    .faq-heading-section svg {
        display: none;
    }

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

    .getMore-slide-btn-box,
    .work-slide-btn-box {
        top: -67px;
    }

    .office-stat p br {
        display: none;
    }
}

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

    .submit-popup-wrapper {
        width: 90%;
    }

    .submit-popup-wrapper h5 {
        font-size: 26px;
    }

    .choose-section-mask.dx {
        display: none;
    }

    .choose-section-mask.mb {
        display: block;
    }

    .spectra-choose-section.office-page {
        gap: 20px;
    }

    .choose-section-left,
    .choose-section-mask {
        padding-left: 10px;
    }

    .choose-slider-box {
        padding-left: 10px;
    }

    .choose-slider-box {
        left: 2.4%;
        width: 97.6%;
        bottom: 5%;
    }

    .stats-office-box {
        grid-template-columns: repeat(1, 1fr);
    }

    .office-stat {
        justify-content: center;
        align-items: center;
    }

    .office-stat p {
        text-align: center;
    }


    .we-work-slide-container {
        padding-left: 10px;
    }

    .section-heading {
        font-size: 20px;
    }

    .section-paragraph {
        font-size: 14px;
    }

    .section-padding {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .spectra-heading-light {
        font-size: 24px;
    }

    .spectra-contact-input-box {
        flex-direction: column;
        gap: 0;
    }

    .spectra-contact-section .common-container {
        padding: 0 30px;
    }

    .submit-contact {
        width: 100%;
    }

    .spectra-contact-section .common-container {
        padding: 0;
    }

    .get-more-heading {
        font-size: 25px;
        text-align: center;
    }

    .get-more-para {
        font-size: 20px;
    }

    .swiper-wrapper {
        padding-bottom: 50px;
    }

    .package-price-box .swiper-wrapper {
        padding-bottom: 0;
    }

    .package-slide-btn-box {
        bottom: 100px;
    }

    .getMore-slide-btn-box,
    .hearUs-slide-btn-box,
    .knowledge-slide-btn-box,
    .work-slide-btn-box {
        bottom: -15px;
        top: auto;
        right: 35%;
        transform: translateX(-50%);
    }

    .spectra-hero-mask {
        width: 100%;
        bottom: -60%;
        right: auto;
        background-size: contain;
        left: 0;
    }


    .hero-maks-office-mobile {
        display: block;
    }

    .hero-maks-office-desktop {
        display: none;
    }

    .spectra-hero-half {
        width: 100%;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
    }
.spectra-hero-section {
    
    height: 710px;
    
}

   

    .spectra-hero-section .spectra-heading-light.txt-start,
    .spectra-hero-section .spectra-para-light.txt-start {
        text-align: center;
    }

    .spectra-hero-section .spectra-para-light {
        width: 70%;
    }

    .spectra-hero-section .spectra-para-light br {
        display: none;
    }

    .spectra-hero-section .spectra-heading-light {
        width: 80%;
    }

    .hero-half-mask {
        width: 30%;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-half-mask.mob {
        display: block;
    }

    .hero-half-mask.desk {
        display: none;
    }

    .file-button {
        width: 40px;
        height: 40px;
    }

    .file-button img {
        width: 18px;
        height: 18px;
    }

    .video-player {
        width: 380px;
        height: 240px;
    }

    .close-video-popup {
        top: -36px;
        right: -10px;
    }

    .package-tab {
        font-size: 12px;
        padding: 20px;
    }

    .bad-connection-slider-box .swiper-slide p {
        font-size: 18px;
		text-align: center;
    }
	 .bad-connection-slider-box .swiper-slide {
        align-items: center;
    }
}

@media screen and (max-width:400px) {
    .choose-slider-box {
        left: 2.6%;
        width: 97.4%;
    }

    .bad-connection-slider-box .swiper-slide p {
        font-size: 16px;
		text-align: center;
    }
.bad-connection-slider-box .swiper-slide {
  
    align-items: center;
   
}
    .submit-popup-wrapper {
        width: 95%;
    }

}

@media screen and (max-width: 380px) {
    .video-player {
        width: 290px;
        height: 220px;
    }
}


@media screen and (min-width: 1919px) {
    .common-container {
        max-width: 1699px;
    }
}

@media screen and (min-width: 768px) {
    .bad-connection-slider-box .swiper-slide {
        width: auto !important;
    }
}

  /* Container */
    .profi-section{width:100%;margin:48px auto; background:#fff;border-radius:12px;box-shadow:0 6px 20px rgba(16,42,67,0.08);
	display:grid;
	
	gap:28px;align-items:center}

    /* Responsive layout */
    @media (max-width:900px){
      .profi-section{grid-template-columns:1fr;padding:22px}
    }

    /* Left column */
    .profi-head{margin:0 0 8px 0;font-size:22px;line-height:1.15}
    .profi-sub{margin:0 0 18px 0;color:#425466}
    .profi-features{display:flex;flex-direction:column;gap:12px;margin:0;padding:0;list-style:none}
    .feat{display:flex;gap:12px;align-items:flex-start}
    .feat .icon{width:44px;height:44px;border-radius:10px;flex:0 0 44px;background:linear-gradient(135deg,#eef6ff,#e7f3ff);display:inline-grid;place-items:center}
    .feat h4{margin:0;font-size:15px}
    .feat p{margin:4px 0 0 0;color:#5b6b7a;font-size:14px}

    /* Right column: lifecycle flow */
    .lifecycle{background:#fbfdff;padding:16px;border-radius:10px;border:1px solid #eef4fb}
    .lifecycle-title{font-size:14px;margin:0 0 12px 0;color:#17324d}
    .flow{display:flex;gap:55px;align-items:center;justify-content:space-between}
    .step{flex:1;min-width:0;text-align:center}
    .step .circle{width:68px;height:68px;border-radius:999px;display:inline-grid;place-items:center;background:#fff;border:2px solid #dbeefc;margin:0 auto 8px auto;box-shadow:0 6px 18px rgba(16,42,67,0.04)}
    .step .label{font-size:13px;color:#fff;}
    .connector{height:4px;background:linear-gradient(90deg,#bfe1ff,transparent);flex:0 0 18px;border-radius:4px}

    /* Small screens: stacked flow */
    @media (max-width:520px){
      .flow{flex-direction:column;gap:14px}
      .connector{width:48px;height:2px}
      .step .circle{width:56px;height:56px}
    }

    /* Accent styles */
    .accent{color:#0b66ff}

    /* Utility */
    .muted{color:#5b6b7a}
 .profi-section2{max-width:var(--max-width);margin:0 auto; background:#fff; color:#fff;}

    .profi-header{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap}
    .profi-title{font-size:1.5rem;font-weight:700;letter-spacing:-0.01em}
    .profi-sub{color:var(--muted);font-size:0.95rem}

    .profi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--gap);margin-top:20px;  background:#fff; color:#000;}

    /* Card */
    .profi-card{background:#fff; color:#000;box-shadow:0 6px 20px rgba(2,6,23,0.06);padding:18px;display:flex;gap:16px;align-items:flex-start;transition:transform .18s ease,box-shadow .18s ease;overflow:hidden;border:1px solid rgba(15,23,42,0.04)}
    .profi-card:hover{transform:translateY(-6px);box-shadow:0 18px 40px rgba(2,6,23,0.08)}
    .profi-card .kicker{flex:0 0 56px;height:56px;border-radius:10px;background:var(--glass);display:grid;place-items:center}
    .profi-card svg{width:28px;height:28px}
    .profi-card h4{margin:0;font-size:1rem; padding-top: 10px;}
    .profi-card p{margin:6px 0 0;color:var(--muted);font-size:0.92rem}
    .profi-card .link{margin-left:auto;align-self:center}
    .profi-card a.cta{display:block;align-items:center;gap:8px;padding:8px 12px;border-radius:8px;text-decoration:none;border:1px solid rgba(14,165,164,0.12);background:#47a8c5;font-weight:600;color:#fff;font-size:0.7rem}

    /* Responsive */
    @media (max-width:1000px){.profi-grid{grid-template-columns:repeat(2,1fr)}}
    @media (max-width:640px){.profi-grid{grid-template-columns:1fr}.profi-section2{padding:18px}}

    /* Optional small list under cards */
    .profi-features{margin:22px 0 0;padding:0;list-style:none;display:flex;flex-wrap:wrap;gap:12px}
    .profi-features li{background:transparent;padding:8px 12px;border-radius:999px;border:1px dashed rgba(15,23,42,0.05);color:var(--muted);font-size:0.88rem}	
@media (max-width: 520px) {	
	.lifecycle .flow {
    display: none;
}
}
@media (max-width: 640px) {	
	.lifecycle .flow {
    display: none;
}
}

p.headingist {
    font-size: 15px;
    margin-top: 10px;
}

p.headingkst {
    font-size: 15px;
   
}

.btn-row-tu {
    display: flex;
    gap: 12px;           /* spacing between buttons */
    align-items: center; /* vertical alignment */
}

.btn-row-tu a {
    display: inline-block;
}

  /* Section wrapper */
    .profi-section{max-width:1200px;margin:48px auto;padding:32px;border-radius:16px;background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));box-shadow:0 8px 30px rgba(2,6,23,0.6);display:grid;grid-template-columns:1fr 420px;gap:28px;align-items:center}

    /* Text column */
    .profi-eyebrow{display:inline-block;padding:6px 12px;border-radius:999px;background:rgba(110,231,183,0.08);color:var(--accent);font-weight:600;font-size:13px;margin-bottom:12px}
    .profi-head{font-size:28px;color:#fff;margin:0 0 12px}
    .profi-sub{font-size:16px;color:rgba(255,255,255,0.86);margin:0 0 20px}

    .profi-ctas{display:flex;gap:12px;align-items:center}
    .btn-primary{background:linear-gradient(90deg,var(--accent),#34d399);color:#042022;padding:12px 18px;border-radius:10px;border:none;font-weight:700;cursor:pointer;box-shadow:0 6px 18px rgba(52,211,153,0.12);transition:transform .12s ease,box-shadow .12s ease}
    .btn-primary:hover{transform:translateY(-3px);box-shadow:0 12px 30px rgba(52,211,153,0.16)}
    .btn-ghost{background:transparent;border:1px solid rgba(255,255,255,0.06);color:var(--muted);padding:10px 14px;border-radius:10px}

    /* Visual/card */
    .visual-card{background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));border-radius:14px;padding:22px;display:flex;flex-direction:column;gap:14px;align-items:stretch}
    .appliance{display:flex;gap:14px;align-items:center}
    .device{flex:0 0 74px;height:54px;background:linear-gradient(180deg,#061426,#082034);border-radius:10px;display:flex;align-items:center;justify-content:center;border:1px solid rgba(255,255,255,0.03)}
    .device svg{width:40px;height:28px;opacity:0.9}
    .appliance .meta{flex:1}
    .meta h4{margin:0;font-size:14px;color:#e6fff5}
    .meta p{margin:4px 0 0;font-size:13px;color:rgba(255,255,255,0.6)}

    .stats{display:flex;gap:12px;justify-content:space-between;margin-top:6px}
    .stat{flex:1;background:linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.005));padding:10px;border-radius:10px;text-align:center}
    .stat strong{display:block;font-size:18px;color:#fff}
    .stat span{font-size:12px;color:rgba(255,255,255,0.6)}

    /* Responsive */
    @media (max-width:980px){
      .profi-section{grid-template-columns:1fr;padding:22px}
      .visual-card{order: -1}
    }
	
	 /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #47a8c5, #47a8c5, #47a8c5);
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: bottom;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 600px;
        }
        
        .hero-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
			padding-top: 30px;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .cta-button {
            display: inline-block;
            background-color: #000;
            color: white;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }
        
        .cta-button:hover {
            background-color: #000;
            transform: translateY(-3px);
			text-decoration: none;
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }
        
        /* Features Section */
        .features-section {
            padding: 100px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            color: #1a2a6c;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .feature-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: #1a2a6c;
            margin-bottom: 20px;
        }
        
        .feature-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #1a2a6c;
        }
        
        /* Testimonials Section */
        .testimonials-section {
            padding: 100px 0;
            background-color: #f8f9fa;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: #1a2a6c;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #1a2a6c, #2a3a7c);
            color: white;
            text-align: center;
        }
        
        .cta-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-subtitle {
            font-size: 1.2rem;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .hero-section, .features-section, .testimonials-section, .cta-section {
                padding: 60px 0;
            }
        }
		
		