﻿/* header */

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box;
    scroll-behavior: smooth;
}


img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

.container {
    width: 90%;
    margin: auto;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 18px 0;
    transition: .3s ease;
    max-height: 80px;
}

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

.logo img {
    max-width: 106px;
}


.headers-button {
    display: flex;
    align-items: center;
    gap: 16px;
}

.audit-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(123, 97, 255, 0.2);
    backdrop-filter: blur(16px);
    color: #fff;
    transition: .3s;
    max-width: 191px;
    box-shadow: 0 6px 16px -6px rgba(0, 0, 0, .1);
}

.audit-btn img {
    max-width: 24px;
    max-height: 24px;
}

p {
    font-family: Inter;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Space Grotesk;
}

.hero .content {
    position: absolute;
    margin-top: 190px;
    max-width: 641px;
}

h1 {
    font-size: 55px;
    color: #F5F6FF;
    margin: 0;
}

p.sub-title {
    font-size: 20px;
    color: #F5F6FF;
}

.hero p {
    color: #F5F6FF;
    font-size: 20px;
    line-height: 30px;
}


.hero-icons {
    margin: 40px 0;
}

.hero-feature-list {
    display: flex;
    justify-content: left;
    align-items: flex-start;
    gap: 28px;
    flex-wrap: wrap;
}

.hero-feature {
    text-align: center;
    min-width: 70px;
}

.hero-feature-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
    transition: .3s ease;
}

.hero i {
    color: #5046D4;
}

.hero-feature:hover .hero-feature-icon {
    transform: translateY(-4px);
}

.hero-feature-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.hero-feature span {
    display: block;
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    line-height: 1.3;
    font-family: Inter;
}

a.hero-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #5046D4;
    font-size: 20px;
    color: #FFFFFF;
    border-radius: 15px;
    width: 350px;
    height: 60px;
    margin-top: 40px;
    font-family: Inter;
}

@media (max-width: 768px) {
    .hero-feature-list {
        gap: 18px;
    }

    .hero-feature {
        min-width: 60px;
    }

    .hero-feature-icon {
        width: 36px;
        height: 36px;
    }

    .hero-feature span {
        font-size: 11px;
    }
}

.audit-btn span {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 32px;
    color: #fff;
}

.calls-btns {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 5px;
    border-radius: 8px;
    max-width: 194px;
}

.calls-btns img {
    max-width: 24px;
    max-height: 24px;
}

.call-content {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    align-items: flex-end;
}

.call-content small {
    color: #5046D4;
    font-family: Inter, sans-serif;
    font-size: 12px;
    margin-bottom: 4px;
}

.call-content strong {
    color: #5046D4;
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
}

.hamburger {
    display: none;
    width: 32px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 10001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 50px;
    transition: .35s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #05053E;
    padding: 100px 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: .4s ease;
    z-index: 9998;
}

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

.mobile-menu .audit-btn,
.mobile-menu .calls-btns {
    width: 100%;
    justify-content: center;
    max-width: 100%;
}

.mobile-menu .call-content {
    align-items: center;
}

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

    .site-header {
        padding: 15px 0;
    }

    .logo img {
        max-width: 80px;
    }

    .headers-button {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        width: 260px;
    }

    .mobile-menu .audit-btn,
    .mobile-menu .calls-btns {
        justify-content: center;
    }

    .call-btn {
        display: flex;
        align-items: center;
        gap: 12px;
        background: #fff;
        padding: 10px;
        border-radius: 8px;
        width: 100%;
    }

    .call-btn img {
        width: 24px;
        height: 24px;
    }

    .call-btn .call-content {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
        align-items: flex-end;
    }

    .call-btn .call-content small {
        color: #5046D4;
        font-size: 12px;
        margin-bottom: 4px;
    }

    .call-btn .call-content strong {
        color: #5046D4;
        font-size: 16px;
        font-weight: 600;
    }

    .mobile-menu .call-btn {
        justify-content: center;
    }
}

/* hero */
.hero {
    background: url(images/heroimg.png);
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ends here */


/* why brittany */
.brittany-section {
    padding: 50px 0;
    background: #fff;
    overflow: hidden;
}

.brittany-container {
    width: 80%;
    margin: auto;
}

.brittany-heading {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 70px;
}

.brittany-heading h2 {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 700;
    color: rgba(5, 5, 62, 1);
    margin-bottom: 20px;
    font-style: Bold;
    font-family: Space Grotesk;
}

.brittany-heading span {
    color: rgba(80, 70, 212, 1);
}

.brittany-heading p {
    max-width: 800px;
    margin: auto;
    line-height: 1.8;
    color: rgba(71, 70, 80, 1);
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
}

.brittany-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0px;
    justify-content: center;
}

.brittany-left {
    max-width: 700px;
}

.brittany-content .brittany-left h3 {
    font-size: 32px;
    line-height: 1.25;
    color: rgba(5, 5, 62, 1);
    margin-bottom: 10px;
    font-weight: 700;
    font-style: Bold;
    font-family: Space Grotesk;
}

.brittany-left p {
    font-size: 20px;
    font-weight: 400;
    font-style: Regular;
    color: rgba(95, 93, 104, 1);
    font-family: Inter;
    line-height: 1.7;
    margin-bottom: 10px;
    max-width: 607px;
}

.brittany-left .bluep {
    color: rgba(80, 70, 212, 1);
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
    margin-bottom: 18px;
}

.brittany-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 38px;
    border-radius: 12px;
    background: rgba(80, 70, 212, 1);
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    font-family: Inter;
    font-style: Semi Bold;
    transition: .35s ease;
    max-width: 250px;
}

.brittany-btn img {
    width: 20px;
    height: 20px;
}

.brittany-btn:hover {
    background: #4537d8;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(91, 76, 244, .30);
}

.brittany-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brittany-right img {
    width: 100%;
    max-width: 620px;
    display: block;
    transition: .4s ease;
}

.brittany-right img:hover {
    transform: scale(1.02);
}

@media(max-width:1600px) {

    .brittany-heading h2 {
        font-size: 48px;
    }

    .brittany-left h3 {
        font-size: 38px;
    }

}

@media(max-width:1400px) {

    .brittany-content {
        gap: 50px;
    }

    .brittany-heading h2 {
        font-size: 44px;
    }

    .brittany-left h3 {
        font-size: 34px;
    }

}

@media(max-width:1200px) {

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

    .brittany-heading {
        margin-bottom: 60px;
    }

    .brittany-heading h2 {
        font-size: 40px;
    }

    .brittany-left h3 {
        font-size: 30px;
    }

    .brittany-left p,
    .brittany-heading p {
        font-size: 16px;
    }

    .brittany-content {
        gap: 40px;
    }

}

@media(max-width:1024px) {

    .brittany-content {
        gap: 35px;
    }

    .brittany-left h3 {
        font-size: 28px;
    }

}

@media(max-width:992px) {

    .brittany-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .brittany-left {
        max-width: 100%;
        order: 2;
    }

    .brittany-right {
        order: 1;
    }

    .brittany-right img {
        max-width: 550px;
    }

    .brittany-btn {
        margin: auto;
    }

}

@media(max-width:768px) {

    .brittany-section {
        padding: 5cqmax 0;
    }

    .brittany-heading {
        margin-bottom: 45px;
    }

    .brittany-heading h2 {
        font-size: 34px;
    }

    .brittany-content .brittany-left h3 {
        font-size: 22px;
    }

    .brittany-heading p,
    .brittany-left p,
    .brittany-left .bluep {
        font-size: 15px;
        line-height: 1.7;
    }

    .brittany-btn {
        padding: 16px 30px;
    }

}

@media(max-width:576px) {

    .brittany-container {
        width: 90%;
    }

    .brittany-section {
        padding: 50px 0;
    }

    .brittany-heading h2 {
        font-size: 28px;
    }

    .brittany-content .brittany-left h3 {
        font-size: 22px;
    }

    .brittany-btn {
        width: 100%;
        max-width: 230px;
        padding: 15px 25px;
        font-size: 15px;
    }

    .brittany-right img {
        max-width: 100%;
    }

}

@media(max-width:400px) {

    .brittany-heading h2 {
        font-size: 24px;
    }

    .brittany-content .brittany-left h3 {
        font-size: 20px;
    }

    .brittany-heading p,
    .brittany-left p,
    .brittany-left .bluep {
        font-size: 14px;
    }

    .brittany-btn {
        font-size: 14px;
        gap: 8px;
    }

    .brittany-btn img {
        width: 15px;
        height: 15px;
    }

}

/* ends here */



/* works around */
.Britt-works {
    padding: 50px 0;
    background: #ffffff;
}

.britt-containers {
    width: 90%;
    margin: auto;
}

.mainbrit {
    text-align: center;
    margin-bottom: 30px;
}

.mainbrit h2 {
    font-size: 24px;
    font-weight: 700;
    font-style: Bold;
    line-height: 1.3;
    color: rgba(5, 5, 62, 1);
    font-family: Space Grotesk;
}

.wholeimagediv {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.imagesdiv {
    flex: 1;
    transition: .35s ease;
    text-align: center;
}


.imagesdiv {
    overflow: hidden;
}

.imagesdiv img {
    width: 100%;
    aspect-ratio: 17/9;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    display: block;
    transition: .45s ease;
}

.imagesdiv:hover img {
    transform: scale(1.04);
}

.imagesdiv p {
    margin-top: 10px;
    font-family: Inter;
    font-style: Regular;
    font-size: 14px;
    color: rgba(95, 93, 104, 1);
    font-weight: 400;
}

.imagesdiv .lastr {
    margin-top: 5px;
    font-family: Inter !important;
    font-size: 14px;
    color: rgba(26, 26, 77, 1);
    font-weight: 600;
    font-style: Semi Bold;
    line-height: 1.4;
}

@media (min-width:1600px) {

    .mainbrit h2 {
        font-size: 46px;
    }

    .imagesdiv .lastr {
        font-size: 22px;
    }

}

@media (max-width:1200px) {

    .Britt-works {
        padding: 70px 0;
    }

    .mainbrit h2 {
        font-size: 34px;
    }

    .wholeimagediv {
        gap: 20px;
    }

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

    .imagesdiv .lastr {
        font-size: 18px;
    }

}

@media (max-width:992px) {

    .wholeimagediv {
        flex-wrap: wrap;
        justify-content: center;
    }

    .imagesdiv {
        flex: 0 0 calc(50% - 12px);
    }

    .mainbrit h2 {
        font-size: 30px;
    }

}

@media (max-width:768px) {

    .Britt-works {
        padding: 60px 0;
    }

    .wholeimagediv {
        gap: 30px;
    }

    .imagesdiv {
        flex: 0 0 100%;
        max-width: 550px;
    }

    .mainbrit {
        margin-bottom: 35px;
    }

    .mainbrit h2 {
        font-size: 28px;
    }

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

    .imagesdiv .lastr {
        font-size: 18px;
    }

}

@media (max-width:576px) {

    .Britt-works {
        padding: 50px 0;
    }

    .britt-containers {
        width: 92%;
    }

    .mainbrit h2 {
        font-size: 23px;
    }

    .imagesdiv img {
        border-radius: 12px;
    }

    .imagesdiv p {
        margin-top: 15px;
        font-size: 14px;
    }

    .imagesdiv .lastr {
        font-size: 17px;
    }

}

@media (max-width:400px) {

    .mainbrit h2 {
        font-size: 20px;
    }

    .imagesdiv p {
        font-size: 13px;
    }

    .imagesdiv .lastr {
        font-size: 16px;
    }

}

/* .ends here */


/* calendly */
.strategys-bookings-sections {
    width: 100%;
    padding: 50px 0;
    background: linear-gradient(180deg, #05063E 0%, #9D7BFF 107.85%, #D8D8FF 151.98%);
    overflow: hidden;
}

.strategys-calendars-cards {
    display: flex;
    justify-content: center;
}

.strategys-bookings-sections h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
    font-size: 44px;
    font-family: Space Grotesk;
    margin-bottom: 0px;
    margin: 0 0;
}

.calendly-inline-widget {
    width: 100%;
    height: 800px;
}


@media (max-width:1200px) {

    .calendly-inline-widget {
        min-width: 100% !important;
        height: 900px;
    }

}

@media (max-width:992px) {

    .strategys-bookings-sections {
        padding: 45px 20px;
    }

    .calendly-inline-widget {
        min-width: 100% !important;
        height: 850px;
    }

}

@media (max-width:768px) {

    .strategys-bookings-sections {
        padding: 40px 15px;
    }

    .strategys-bookings-sections h2 {
        font-size: 32px;
        margin-bottom: 18px;
    }

    .calendly-inline-widget {
        min-width: 100% !important;
        height: 800px;
    }

}

@media (max-width:576px) {

    .strategys-bookings-sections {
        padding: 35px 5px;
    }

    .strategys-bookings-sections h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .calendly-inline-widget {
        min-width: 100% !important;
        height: 760px;
    }

}

@media (max-width:480px) {

    .strategys-bookings-sections h2 {
        font-size: 24px;
    }

    .calendly-inline-widget {
        min-width: 100% !important;
        height: 720px;
    }

}

@media (max-width:360px) {

    .strategys-bookings-sections {
        padding: 30px 5px;
        padding-right: 15px;
    }

    .strategys-bookings-sections h2 {
        font-size: 22px;
    }

    .calendly-inline-widget {
        min-width: 100% !important;
        height: 680px;
    }

}



/* ends here */



/* clients section */
.results-section {
    padding: 50px 0;
    background: #fff;
    overflow: hidden;
}

.container-client {
    width: 90%;
    margin: auto;
}

.results-section h2 {
    font-family: Space Grotesk;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.1;
    color: rgba(5, 5, 62, 1);
    font-style: Bold;
    margin-bottom: 20px;
    text-align: left;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.review-card {
    background: #fff;
    border: 1px solid rgba(168, 174, 208, 1);
    border-radius: 22px;
    padding: 22px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 295px;
    transition: .3s;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(28, 57, 180, .12);
}

.stars {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.stars i {
    color: #F5AE18;
    font-size: 22px;
}

.review-text {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(119, 118, 129, 1);
    margin-bottom: 10px;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    flex: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-info .namos {
    color: rgba(5, 5, 62, 1);
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 12px;
    font-weight: 400;
    font-family: Inter;
    font-style: Regular;
    color: rgba(95, 93, 104, 1);
}

@media(max-width:1400px) {



    .results-section h2 {
        font-size: 50px;
    }

    .results-subtitle {
        font-size: 19px;
    }

    .review-card {
        min-height: 285px;
    }

    .review-text {
        font-size: 18px;
        line-height: 1.7;
    }

}

@media(max-width:1199px) {

    .results-grid {
        gap: 20px;
    }

    .results-section h2 {
        font-size: 44px;
    }

    .results-subtitle {
        margin-bottom: 40px;
    }

    .review-card {
        padding: 20px;
        min-height: 275px;
    }

    .review-text {
        font-size: 17px;
    }

    .stars i {
        font-size: 20px;
    }

}

@media(max-width:991px) {

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .results-section h2 {
        font-size: 40px;
    }

    .review-card {
        min-height: 260px;
    }

}

@media(max-width:767px) {


    .results-grid {
        grid-template-columns: 1fr;
    }

    .results-section h2 {
        font-size: 34px;
        text-align: center;
    }

    .results-subtitle {
        text-align: center;
        font-size: 17px;
        margin-bottom: 35px;
    }

    .review-card {
        min-height: auto;
    }

    .review-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .stars i {
        font-size: 18px;
    }

    .review-author img {
        width: 50px;
        height: 50px;
    }

    .author-info .namos {
        font-size: 17px;
    }

    .author-info p {
        font-size: 14px;
    }

}

@media(max-width:576px) {

    .results-section h2 {
        font-size: 30px;
    }

    .results-subtitle {
        font-size: 16px;
    }

    .review-card {
        padding: 18px;
        border-radius: 18px;
    }

    .review-text {
        font-size: 15px;
    }

}

@media(max-width:400px) {

    .results-section h2 {
        font-size: 28px;
    }

    .review-card {
        padding: 16px;
    }

    .stars {
        gap: 6px;
    }

    .stars i {
        font-size: 16px;
    }

    .review-text {
        font-size: 14px;
    }

    .author-info .namos {
        font-size: 16px;
    }

    .author-info p {
        font-size: 13px;
    }

}

/* ends here */



/* from click to case section */
.container {
    max-width: 90%;
    margin: auto;
}

.workflow-section {
    padding: 50px 0;
    background: rgba(245, 246, 255, 1);
}

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

.section-heading h2 {
    font-weight: 700;
    font-style: Bold;
    font-size: 44px;
    line-height: 52.8px;
    letter-spacing: -0.44px;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 10px;
    color: rgba(5, 5, 62, 1);
    font-family: Space Grotesk;
}

.section-heading p {
    color: rgba(71, 70, 80, 1);
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: -0.4%;
}

.section-heading p span {
    color: rgba(123, 97, 255, 1);
}

.workflow-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
    flex-wrap: nowrap;
}

.workflow-card {
    flex: 1;
    position: relative;
    text-align: center;
}

.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #6c63ff;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 8px;
    border-radius: 30px;
}

.icon-box {
    width: 95px;
    height: 95px;
    border: 1px solid rgba(217, 217, 217, 1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 1);
    transition: all 0.35s ease;
    cursor: pointer;
    box-shadow: 0px 0px 12px 1px rgba(53, 37, 205, 0.1) inset;

}

.icon-box:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: #7550ff;
    box-shadow: 0 15px 35px rgba(117, 80, 255, 0.2);
}

.icon-box img {
    max-width: 40px;
}

.arrow-box {
    padding-top: 45px;
}

.arrow-box img {
    width: 35px;
}

.step-label {
    position: relative;
    width: 100px;
    margin: 0 auto 20px;
    background: #6c63ff;
    color: #fff;
    padding: 10px;
    font-weight: 700;
    clip-path: polygon(10% 0,
            100% 0,
            90% 100%,
            0 100%);
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 15px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: -0.4%;
    text-align: center;
    vertical-align: middle;

}

.card-desc {
    color: rgba(71, 70, 80, 1);
    margin-bottom: 20px;
    min-height: 50px;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 14px;
    font-size: 14px;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    line-height: 20px;
    letter-spacing: 0%;
    color: rgba(95, 93, 104, 1);
}

.feature-list img {
    width: 18px;
    flex-shrink: 0;
}

.bottom-cta {
    margin-top: 70px;
    border: 1px solid #e4e7f2;
    border-radius: 24px;
    background: #fff;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-icon {
    width: 80px;
    height: 80px;
    border: 1px solid #d8d8e8;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-content h3 {
    margin-bottom: 10px;
    color: rgba(71, 70, 80, 1);
    font-family: Space Grotesk;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
}

.cta-content span {
    color: rgba(123, 97, 255, 1);
}

.cta-content p {
    color: rgba(95, 93, 104, 1);
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
}

.cta-right {
    width: 90px;
    height: 90px;
    border: 1px solid #d8d8e8;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-right img {
    width: 35px;
}

@media(max-width:768px) {

    .workflow-section {
        padding: 70px 0;
    }

    .phone-btn {
        display: none;
    }

    .workflow-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .arrow-box {
        display: none;
    }

    .bottom-cta {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        padding: 24px;
        text-align: left;
    }

    .cta-left {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 16px;
        flex: 1;
    }

    .cta-icon {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }

    .cta-icon img {
        width: 28px;
        height: auto;
    }

    .cta-content {
        flex: 1;
    }



    .bottom-cta {
        padding: 20px 14px;
    }

    .cta-content h3 {
        font-size: 18px;
        line-height: 1.4;
    }

    .cta-content p {
        font-size: 13px;
        line-height: 1.6;
    }

    .cta-icon,
    .cta-right {
        width: 60px;
        height: 60px;
    }

    .cta-icon img,
    .cta-right img {
        width: 26px;
    }
}

@media(max-width:500px) {

    .bottom-cta {
        flex-direction: column;
        text-align: center;
        padding: 24px 18px;
        gap: 18px;
    }

    .cta-left {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

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

    .cta-content h3 {
        font-size: 22px;
        line-height: 1.35;
    }

    .cta-content p {
        font-size: 15px;
        line-height: 1.6;
    }

    .cta-icon {
        width: 72px;
        height: 72px;
    }

    .cta-icon img {
        width: 32px;
    }

    .cta-right {
        width: 72px;
        height: 72px;
    }

    .cta-right img {
        width: 32px;
    }
}

@media(max-width:425px) {

    .container {
        max-width: 94%;
    }

    .workflow-wrapper {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 30px;
        line-height: 1.25;
    }

    .section-heading p {
        font-size: 16px;
        line-height: 1.6;
    }

    .workflow-card {
        padding: 0;
    }

    .icon-box {
        width: 85px;
        height: 85px;
        margin-bottom: 18px;
    }

    .step-label {
        width: 95px;
        font-size: 14px;
        padding: 10px 8px;
    }

    .card-desc {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 18px;
    }

    .feature-list li {
        font-size: 14px;
        line-height: 22px;
    }

    .bottom-cta {
        padding: 22px 16px;
        border-radius: 18px;
    }

    .cta-content h3 {
        font-size: 20px;
    }

    .cta-content p {
        font-size: 14px;
    }

    .cta-icon,
    .cta-right {
        width: 65px;
        height: 65px;
    }

    .cta-icon img,
    .cta-right img {
        width: 28px;
    }
}

@media(max-width:375px) {

    .workflow-section {
        padding: 60px 0;
    }

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

    .section-heading p {
        font-size: 15px;
    }

    .icon-box {
        width: 78px;
        height: 78px;
    }

    .icon-box img {
        max-width: 34px;
    }

    .step-label {
        width: 90px;
        font-size: 13px;
    }

    .card-desc {
        font-size: 14px;
    }

    .feature-list li {
        font-size: 13px;
        gap: 8px;
    }

    .feature-list img {
        width: 16px;
    }

    .bottom-cta {
        padding: 20px 14px;
    }

    .cta-content h3 {
        font-size: 18px;
        line-height: 1.4;
    }

    .cta-content p {
        font-size: 13px;
        line-height: 1.6;
    }

    .cta-icon,
    .cta-right {
        width: 60px;
        height: 60px;
    }

    .cta-icon img,
    .cta-right img {
        width: 26px;
    }
}

@media(max-width:320px) {

    .container {
        max-width: 95%;
    }

    .section-heading h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .section-heading p {
        font-size: 14px;
    }

    .icon-box {
        width: 70px;
        height: 70px;
    }

    .icon-box img {
        max-width: 30px;
    }

    .step-number {
        font-size: 11px;
        padding: 4px 7px;
    }

    .step-label {
        width: 85px;
        font-size: 12px;
        padding: 8px;
    }

    .card-desc {
        font-size: 13px;
        line-height: 21px;
    }

    .feature-list li {
        font-size: 12px;
        line-height: 20px;
    }
}

/* ends here */


/* banner section */
.hero-image-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;

}

.hero-image-section img {
    display: block;
    width: 100%;
    height: auto;
}

.map {
    padding: 0 0 50px 0;
}

.map img {
    padding: 0 0;
}

/* ends here */


/* Everthing section */
img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    margin: 0 auto;
}

.growth-engine {
    padding: 50px 0;
    background: #ffffff;
}

.section-heading {
    text-align: center;
    max-width: 957px;
    margin: 0 auto 60px;
}

.section-heading h2 {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 700;
    font-style: Bold;
    color: rgba(5, 5, 62, 1);
    letter-spacing: -1px;
    margin-bottom: 18px;
    font-family: Space Grotesk;
}

.section-heading p {
    max-width: 878px;
    margin: auto;
    color: rgba(71, 70, 80, 1);
    font-size: 18px;
    line-height: 1.8;
    font-weight: 400;
    font-family: Inter;
    font-style: Regular;
}

.growth-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.growth-card {
    background: #fff;
    border: 1px solid #D8DDF6;
    border-radius: 18px;
    overflow: hidden;
    transition: .35s ease;
    box-shadow: 0 8px 22px rgba(8, 18, 68, .04);
}

.growth-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(8, 18, 68, .12);
}

.card-image {
    padding: 14px;
    padding-bottom: 0;
}

.card-image img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 12px;
}

.card-content {
    padding: 18px 18px;

}

.card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: rgba(17, 17, 51, 1);
    font-style: Bold;
    font-family: Space Grotesk;
    max-width: 365.3px;
}

.card-content ul {
    list-style: none;
    padding: 0;
}

.card-content li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 12px;
    color: rgba(17, 17, 51, 1);
    font-family: Inter;
    font-style: Regular;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
}

.card-content li:last-child {
    margin-bottom: 0;
}

.card-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #2D2F5E;
    font-size: 18px;
}

.growth-card {
    display: flex;
    flex-direction: column;
}

.card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

@media (min-width:1920px) {

    .container {
        max-width: 1700px;
    }

    .growth-engine {
        padding: 100px 0;
    }

    .section-heading {
        max-width: 1100px;
        margin-bottom: 70px;
    }

    .section-heading h2 {
        font-size: 64px;
    }

    .section-heading p {
        max-width: 900px;
        font-size: 20px;
    }

    .growth-grid {
        gap: 35px;
    }

    .card-image img {
        height: 220px;
    }

    .growth-card {
        border-radius: 22px;
    }

    .card-content {
        padding: 26px;
    }

    .card-content h3 {
        font-size: 26px;
    }

    .card-content li {
        font-size: 17px;
        line-height: 1.9;
    }

}

@media (max-width:1440px) {

    .container {
        width: 92%;
    }

    .section-heading h2 {
        font-size: 46px;
    }

    .card-image img {
        height: 165px;
    }

    .card-content h3 {
        font-size: 20px;
    }

}

@media (max-width:1200px) {

    .section-heading {
        max-width: 800px;
    }

    .section-heading h2 {
        font-size: 40px;
    }

    .section-heading p {
        font-size: 16px;
    }

    .growth-grid {
        gap: 20px;
    }

    .card-image img {
        height: 150px;
    }

    .card-content {
        padding: 18px;
    }

    .card-content h3 {
        font-size: 18px;
    }

    .card-content li {
        font-size: 14px;
    }

}

@media (max-width:1024px) {

    .container {
        width: 94%;
    }

    .growth-engine {
        padding: 70px 0;
    }

    .section-heading {
        margin-bottom: 45px;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .section-heading p {
        font-size: 15px;
    }

    .growth-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .card-image {
        padding: 12px;
        padding-bottom: 0;
    }

    .card-image img {
        height: 135px;
    }

    .card-content {
        padding: 16px;
    }

    .card-content h3 {
        font-size: 17px;
    }

    .card-content li {
        font-size: 13px;
        line-height: 1.6;
    }

}

@media (max-width:768px) {



    .container {
        width: 92%;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .section-heading p {
        font-size: 15px;
    }

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

    .card-image img {
        height: 170px;
    }


    .card-content h3 {
        font-size: 18px;
    }

    .card-content li {
        font-size: 14px;
        text-align: left;
    }

}

@media (max-width:576px) {


    .container {
        width: 90%;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .section-heading h2 span {
        display: inline;
    }

    .section-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .growth-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .card-image img {
        height: 220px;
    }

    .card-content {
        padding: 18px;
    }

    .card-content h3 {
        font-size: 19px;
    }

    .card-content li {
        font-size: 14px;
    }

}

@media (max-width:400px) {

    .container {
        width: 92%;
    }

    .section-heading h2 {
        font-size: 22px;
    }

    .section-heading p {
        font-size: 13px;
    }

    .card-image {
        padding: 10px;
        padding-bottom: 0;
    }

    .card-image img {
        height: 180px;
        border-radius: 10px;
    }

    .card-content {
        padding: 15px;
    }

    .card-content h3 {
        font-size: 17px;
    }

    .card-content li {
        font-size: 13px;
        line-height: 1.5;
    }

}

/* ends here */

/* Contact us form */
.contact-section {
    background: rgba(216, 216, 255, 1);
    padding: 50px 0px;
}

.contact-container {
    width: 90%;
    margin: 0 auto;
}

.contact-heading {
    margin-bottom: 28px;
}

.contact-heading h2 {
    margin: 0 0 10px;
    font-size: 36px;
    font-weight: 700;
    font-style: Bold;
    color: rgba(5, 5, 62, 1);
    font-family: Inter;
}

.contact-heading p {
    margin: 0;
    color: rgba(71, 70, 80, 1);
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
}

.contact-form-box {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 15px 45px rgba(65, 50, 150, .10),
        0 2px 8px rgba(0, 0, 0, .04);
    padding: 0;
    line-height: 0;
}

.contact-form-box iframe {
    width: 100%;
    height: 580px;
    border: 0;
    display: block;
    margin: 0;
    padding: 0;
}

@media (max-width:1024px) {

    .contact-heading h2 {
        font-size: 42px;
    }

    .contact-heading p {
        font-size: 15px;
    }

    .contact-form-box iframe {
        height: 580px;
        margin: 0;
        padding: 0;
        border: 0;

    }

}

@media (max-width:768px) {



    .contact-heading {
        text-align: center;
        margin-bottom: 22px;
    }

    .contact-heading h2 {
        font-size: 36px;
    }

    .contact-heading p {
        font-size: 15px;
        max-width: 600px;
        margin: auto;
    }

    .contact-form-box {
        border-radius: 18px;
    }

    .contact-form-box iframe {
        height: 590px;
        margin: 0;
        padding: 0;
        border: 0;

    }

}

@media (max-width:576px) {

    .contact-heading {
        text-align: left;
    }

    .contact-heading h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .contact-heading p {
        font-size: 14px;
        line-height: 1.6;
    }

    .contact-form-box {
        border-radius: 16px;
    }

    .contact-form-box iframe {
        width: 100%;
        height: 600px;
    }

}

@media (max-width:400px) {

    .contact-heading h2 {
        font-size: 28px;
    }

    .contact-heading p {
        font-size: 13px;
    }

    .contact-form-box {
        border-radius: 14px;
    }

    .contact-form-box iframe {
        height: 1020px;
    }

}

/* ends here */

/* faq section */
.container {
    max-width: 90%;
    margin: auto;
}

.faq-section {

    background: #ffffff;
}


.faq-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: space-between;
}

.faq-image {
    flex: 0 0 500px;
}

.faq-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;

}

.faq-content {
    flex: 1;
}

.faq-content h2 {
    color: rgba(0, 0, 0, 1);
    margin-bottom: 10px;
    font-family: Space Grotesk;
    font-weight: 700;
    font-style: Bold;
    font-size: 44px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: -1%;
    margin-bottom: 20px;
}

.faq-subtitle {
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 25px;
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: -0.4%;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    color: rgba(0, 0, 0, 1);
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary img {
    width: 14px;
    transition: .3s;
    flex-shrink: 0;
}

.faq-item[open] summary img {
    transform: rotate(180deg);
}

.faq-body {
    padding: 0 18px 18px;
    border-top: 1px solid #eee;
}

.faq-body p {
    color: rgba(71, 70, 80, 1);
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 29px;
    letter-spacing: 0%;
}

@media (max-width:1200px) {

    .faq-image {
        flex: 0 0 450px;
    }

    .faq-content h2 {
        font-size: 40px;
    }
}

@media (max-width:992px) {

    .faq-image {
        flex: 0 0 400px;
    }

    .faq-content h2 {
        font-size: 36px;
    }
}

@media (max-width:768px) {

    .faq-section {
        padding: 60px 0;
    }

    .faq-wrapper {
        flex-direction: column;
        gap: 35px;
    }

    .faq-image,
    .faq-content {
        width: 100%;
    }

    .faq-image {
        flex: none;
        width: 100%;
        text-align: center;
    }


    .faq-image img {
        width: 100%;
        max-width: 500px;
        height: auto;
        margin: 0 auto;
    }

    .faq-content h2 {
        font-size: 34px;
        text-align: center;
    }

    .faq-subtitle {
        text-align: center;
        margin-bottom: 20px;
    }

    .faq-item summary {
        font-size: 15px;
        padding: 15px;
    }

    .faq-content {
        width: 100%;
    }
}

@media (max-width:500px) {

    .faq-image img {
        max-width: 420px;
    }
}

@media (max-width:425px) {

    .container {
        max-width: 95%;
    }

    .faq-section {
        padding: 50px 0;
    }

    .faq-wrapper {
        gap: 25px;
    }

    .faq-content h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .faq-subtitle {
        font-size: 14px;
        line-height: 1.6;
    }

    .faq-item summary {
        font-size: 14px;
        line-height: 1.5;
        padding: 14px;
        gap: 12px;
    }

    .faq-body {
        padding: 0 14px 14px;
    }

    .faq-body p {
        font-size: 14px;
        line-height: 1.7;
    }

    .faq-item summary img {
        width: 12px;
    }


    .faq-image img {
        max-width: 360px;
    }
}

@media (max-width:375px) {

    .faq-content h2 {
        font-size: 24px;
    }

    .faq-subtitle {
        font-size: 15px;
    }

    .faq-item summary {
        font-size: 13px;
        padding: 12px;
    }

    .faq-body p {
        font-size: 13px;
    }
}

@media (max-width:320px) {

    .container {
        max-width: 96%;
    }

    .faq-section {
        padding: 40px 0;
    }

    .faq-content h2 {
        font-size: 21px;
        line-height: 1.4;
    }

    .faq-subtitle {
        font-size: 15px;
    }

    .faq-item summary {
        font-size: 12px;
        padding: 10px;
        gap: 8px;
    }

    .faq-item summary img {
        width: 10px;
    }

    .faq-body {
        padding: 0 10px 10px;
    }

    .faq-body p {
        font-size: 12px;
        line-height: 1.6;
    }
}

/* ends here */


/* footer */
.ub-footer {
    background: rgba(5, 5, 62, 1);
    color: #f5f5f7;
    padding: 50px 0 0;
    overflow: hidden;
}

.ub-footer-container {
    width: 90%;
    margin: 0 auto;
    padding: 0 50px 62px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 130px;
}

.ub-footer-left {
    max-width: 540px;
}

.ub-footer-logo {
    margin-bottom: 34px;
}

.ub-footer h2 {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: clamp(44px, 11vw, 100px);
    line-height: 1.5;
    letter-spacing: -.04em;
    background: linear-gradient(180deg, rgba(245, 245, 247, .96) 0%, rgba(245, 245, 247, .25) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
    margin: 0;
}

.ub-footer-logo a {
    color: #fff;
    text-decoration: none;
    font-family: 'Fraunces', serif;
}

.ub-footer-desc {
    max-width: 456px;
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(221, 225, 247, 1);
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-style: Regular;
}

.ub-footer-desc strong {
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    font-style: Semi Bold;
    font-family: Inter, sans-serif;
}

.ub-footer-right {
    max-width: 456px;
    padding-top: 6px;
}

.ub-footer-right a {
    color: rgba(255, 255, 255, 1);
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
}

.ub-footer-right .footer-text {
    max-width: 456px;
    color: rgba(221, 225, 247, 1);
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f5f5f7;
    text-decoration: none;
    font-size: 24px;
    margin-bottom: 14px;
    transition: .3s;
}

.footer-link:hover {
    opacity: .8;
}

.footer-link i {
    max-width: 24px;
    max-height: 24px;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 18px;
}

.footer-social a {
    color: #fff;
    font-size: 24px;
    transition: .3s;
}

.footer-social a:hover {
    transform: translateY(-2px);
}

.ub-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    width: 90%;
    margin: 0 auto;
    padding: 26px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ub-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 1);
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
}

.ub-footer-bottom a {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
}

.ub-footer-bottom a:hover {
    color: #fff;
}

@media (max-width:991px) {

    .ub-footer-container {
        flex-direction: column;
        gap: 60px;
    }

    .ub-footer-right {
        width: 100%;
    }

}

@media (max-width:768px) {

    .ub-footer {
        padding-top: 40px;
    }

    .ub-footer-container {
        padding: 0 24px 50px;
    }

    .ub-footer h2 {
        font-size: 72px;
    }

    .ub-footer-desc {
        max-width: 100%;
    }

    .footer-text {
        max-width: 100%;
    }

    .ub-footer-bottom {
        padding: 22px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .hero .content {
        position: absolute;
        margin-top: 90px;
        max-width: 100%;
    }
    .hero p{font-size: 14px;}
    h1{font-size: 30px;}

}

@media (max-width:480px) {

    .ub-footer h2 {
        font-size: 58px;
    }

    .footer-social {
        gap: 16px;
        flex-wrap: wrap;
    }

}

/* ends here */