* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: MazzardH;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

@font-face {
    font-family: MazzardH;
    src: url(../fonts/MazzardH/MazzardH-Bold.ttf);
    font-weight: 700;
}

@font-face {
    font-family: MazzardH;
    src: url(../fonts/MazzardH/MazzardH-SemiBold.ttf);
    font-weight: 600;
}

@font-face {
    font-family: MazzardH;
    src: url(../fonts/MazzardH/MazzardH-Medium.ttf);
    font-weight: 500;
}

@font-face {
    font-family: MazzardH;
    src: url(../fonts/MazzardH/MazzardH-Regular.ttf);
    font-weight: 400;
}

@font-face {
    font-family: MazzardH;
    src: url(../fonts/MazzardH/MazzardH-Light.ttf);
    font-weight: 300;
}

:root {
    --blue-clr: #00aaff;
    --text-grey: #4c4c4c;
}

.blue {
    color: #00aaff;
}

.grey {
    color: #4c4c4c;
    ;
}

.white {
    color: white;
}

p {
    margin: 0;
}

span {
    color: #00aaff;
}

.heading-primary {
    font-size: 36px;
    line-height: 50px;
    font-weight: 400;
}

.heading-box .heading-primary {
    margin-bottom: 30px;
}

.heading-secondary {
    font-size: 27px;
    font-weight: 400;
}

.heading-box .heading-secondary {
    margin-bottom: 36px;
}

.heading-tertiary {
    font-size: 22px;
    font-weight: 400;
    line-height: normal;
}

.heading-box .heading-tertiary {
    margin-bottom: 34px;
}

.para {
    font-size: 18px;
    line-height: 28px;
}

.mx-width-100 {
    max-width: 100%;
}

.btn {
    font-size: 16px;
    font-weight: 600;
    line-height: 32px;
    border-radius: 30px;
    padding: 7px 32px;
    border: 2px solid transparent;
}

.btn.white {
    background-color: #fff;
    color: var(--blue-clr);
    border-color: #fff;
}

.btn.white:hover {
    background-color: transparent;
    color: #fff;
}





.btn.blue {
    color: #fff;
    background-color: var(--blue-clr);
    border-color: var(--blue-clr);
}

.btn.blue:hover {
    color: var(--blue-clr);
    background-color: transparent;
}

.btn.white-outline {
    color: #fff;
    border-color: #fff;
    background-color: transparent;
}

.btn.white-outline:hover {
    background-color: #fff;
    color: var(--blue-clr);
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;

}

.site-main {
    padding-top: 112px;
}

/* ---------- Popup ---------- */


#calendlyModal .btn-close{
position: absolute;
top: -10px;
right: -10px;
background-color: var(--blue-clr);
padding: 4px;
opacity: 1;
height: 30px;
width: 30px;
border-radius: 50%;
z-index: 2;
--bs-btn-close-bg: none;
font-size: 22px;
color: white;
border: 2px solid transparent;
}
#calendlyModal .btn-close:hover{
background-color: white;
color: var(--blue-clr);
border: 2px solid var(--blue-clr);
}

#calendlyModal .modal-content {
border-radius: 30px;
}

.calendly-inline-widget{
    height: 600px;
    min-width: 320px;
}

/* ---------- he ---------- */

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 17px 0;
    background-color: white;
    transition: all 0.4s ease-in-out;
}

.site-header.sticky {
    padding: 2px 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px;
}

.site-header .navbar-brand {
    transition: all 0.4s ease;
}

.site-header .navbar-brand:hover {
    scale: 0.94;
}

#navbarSupportedContent {
    transition: all 0.6s ease-in-out;
}

.site-header .navbar-collapse {
    flex-grow: initial;
}

.site-header #menu-main-menu {
    gap: 30px;
}


.site-header .menu-item a {
    font-size: 16px;
    text-decoration: none;
    color: var(--text-grey);
}

.site-header .menu-item.current-menu-item a,
.site-header .menu-item a:hover {
    color: var(--blue-clr);
}

.site-header .nav-cta {
    align-items: center;
    gap: 18px;
}

.site-header .icon-box {
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-grey);
}

.site-header .icon-box:hover .icon {
    outline: 1px solid var(--blue-clr);
    background-color: transparent;
}

.site-header .icon-box:hover .icon i,
.site-header .icon-box:hover p {
    color: var(--blue-clr);
}

.site-header .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--blue-clr);
    color: white;
    border-radius: 50%;
}

.site-header .btn {
    color: white;
    background-color: var(--blue-clr);
    padding: 10px 30px;
}

.site-header .btn:hover {
    color: var(--blue-clr);
    background-color: transparent;
    outline: 1px solid var(--blue-clr);
}

/* ---------- Footer ---------- */

footer .footer-content {
    padding: 110px 0;
}

footer .logo img {
    transition: all 0.4s ease-in;
}

footer .logo a:hover img {
    scale: 0.94;
}

footer a {
    color: var(--text-grey);
}

footer a:hover {
    color: var(--blue-clr);
}

footer .footer-tagline {
    max-width: 396px;
    color: var(--text-grey);
    margin-top: 60px;
}

footer .heading {
    color: var(--blue-clr);
    margin-bottom: 34px;
    font-size: 22px;
    font-weight: 600;
}

footer #menu-main-menu-1 {
    gap: 24px;
}

footer .contact-box {
    margin-bottom: 36px;
    padding-right: 32px;
}

footer .icon {
    display: flex;
    gap: 10px;
    word-break: break-all;
}

footer .contact-box i,
footer .address i {
    color: var(--blue-clr);
    margin-top: 4px;
    font-size: 18px;
}

footer .phone {
    margin-bottom: 24px;
    color: var(--text-grey);
    word-break: break-all;
}

footer .phone i {
    rotate: 12deg;
}

footer .social-icons {
    display: flex;
    gap: 6px;
}

footer .social-icons i {
    width: 30px;
    height: 30px;
    background-color: var(--text-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

footer .social-icons i:hover {
    background-color: var(--blue-clr);
    cursor: pointer;
}

.footer-bottom {
    background-color: #f2f2f2;
    padding: 14px;
    color: var(--text-grey);
}

footer .awards {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

footer .awards img {
    max-width: 100px;
}

/*  Back To Top Button  */
#backToTop {
    position: fixed;
    bottom: 40px;
    right: 30px;
    z-index: 999;
    display: none;
    background-color: #333;
    color: white;
    border: 1px solid var(--blue-clr);
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    background-color: var(--blue-clr);
    height: 40px;
    width: 40px;
    transition: opacity 0.3s ease;
}

#backToTop:hover {
    background-color: transparent;
    color: var(--blue-clr)
}

/* ---------- Hero Section ---------- */

.hero {
    background-image: url(../../../../uploads/2025/07/header-shape.webp), url(../../../../uploads/2025/07/Header-BG.webp);
    background-position: left top, center center;
    background-repeat: no-repeat, no-repeat;
    background-size: auto, cover;
    padding: 120px 0;
    text-align: center;
}

.hero .heading-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero .heading-tertiary {
    max-width: 530px;
}

.hero .heading-main {
    font-size: 48px;
    line-height: normal;
    max-width: 816px;
    margin-bottom: 46px;
    font-weight: 400;
}

.hero .para {
    max-width: 560px;
    margin-bottom: 50px;
}

.hero .bullet-points {
    margin-bottom: 50px;
    text-align: left;
    list-style: none;
    padding: 0;
}

.hero .bullet-points li {
    position: relative;
    padding-left: 42px;
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 31px;
}

.hero .bullet-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 26px;
    height: 26px;
    background: url(../../../../uploads/2025/07/check.png) center center/contain no-repeat;
}

/* ---------- FINANCIAL SECTION ---------- */

section.financial-success {
    padding: 100px 0;
    background: url(../../../../uploads/2025/07/financial-success-shape-R.webp) right 0 top 100px/auto no-repeat;

}

section.financial-success .container {
    display: flex;
    align-items: flex-end;
    gap: 0px;
}

.financial-success .image {
    width: 40%;
}

.financial-success .info {
    width: 60%;
}

.financial-success .shape {
    position: absolute;
    left: -18%;
    bottom: 0;
}

section.financial-success .bullet-points {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 30px auto 0;
}

section.financial-success .bullet-points li {
    position: relative;
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    column-gap: 15px;
}

section.financial-success .bullet-points li::before {
    content: url(../../../../uploads/2025/07/trainagle.png);
    margin-top: 3px;
}

/* ---------- TAX ANALYSIS SECTION ---------- */

section.tax-analysis {
    background: url(../../../../uploads/2025/07/Tax-Strategy-bg.webp) center center/cover no-repeat;
    padding: 110px 0;
    position: relative;
}

section.tax-analysis .container {
    display: flex;
    z-index: 2;
    position: relative;
}

section.tax-analysis .heading-box {
    width: 50%;
    color: white;
}

section.tax-analysis .para {
    max-width: 440px;
}

section.tax-analysis .btn {
    background-color: white;
    color: var(--blue-clr);
    margin-top: 48px;
    border: 2px solid transparent;
}

section.tax-analysis .btn:hover {
    border: 2px solid white;
    color: white;
    background-color: transparent;
}

/* ---------- SAVING SECTION ---------- */

section.saving {
    background-image: url(../../../../uploads/2025/07/Saving-shape.webp), url(../../../../uploads/2025/07/Saving-bg.webp);
    background-size: auto, cover;
    background-position: left calc(100% - 100px), center center;
    background-repeat: no-repeat, no-repeat;
    padding: 120px 0;
}


section.saving .container {
    display: flex;
    gap: 40px;
    align-items: center;
}

section.saving .tax,
section.saving .images {
    flex: 1;
}

section.saving .heading-secondary {
    max-width: 386px;
}

section.saving .para {
    max-width: 502px
}

/* ---------- CARD GRID SECTION ---------- */

section.card-grid {
    padding: 120px 0;
    background-color: #ebf2f5;
}

section.card-grid .cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
}

section.card-grid .card {
    flex: 1;
    color: white;
    border: none;
    border-radius: 36px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 100px 38px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

section.card-grid .card-content {
    max-width: 284px;
}

section.card-grid .card.left {
    background-image: url(../../../../uploads/2025/07/card-left.webp);
}

section.card-grid .card.center {
    background-image: url(../../../../uploads/2025/07/card-center.webp);
}

section.card-grid .card.right {
    background-image: url(../../../../uploads/2025/07/card-right.webp);
}

.card-grid .heading-tertiary {
    margin-bottom: 30px;
}

/* ---------- STOP OVERPAYING SECTION ---------- */ 

section.stop-overpaying {
    background-image: url(../../../../uploads/2025/07/Stop-Overpaying-shape-Left.webp), url(../../../../uploads/2025/07/Stop-Overpaying-shape-right.webp);
    background-size: auto, 100px;
    background-position: left 20px top 80px, right calc(100% - 80px);
    background-repeat: no-repeat, no-repeat;
    padding: 120px 0;
    color: black;
    background-color: #f9f9f9;

}

section.stop-overpaying .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;

}

section.stop-overpaying .text,
section.stop-overpaying .images {
    width: 50%;
}

section.stop-overpaying .images img {
    transform: scale(1.3);
}

section.stop-overpaying .heading-tertiary {
    max-width: 328px;
    text-transform: none;
}

section.stop-overpaying .heading-secondary {
    max-width: 328px;
}

section.stop-overpaying .para {
    max-width: 442px
}

/* ---------- EXPERT ACCOUNTING SECTION ---------- */

section.expert-accounting {
    padding: 110px 0;
    background-image: url(../../../../uploads/2025/07/Expert-Accounting-Shape.webp);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto calc(100% - 80px);
}

section.expert-accounting .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

section.expert-accounting .images,
section.expert-accounting .text {
    flex: 1;
    overflow: hidden;
}

section.expert-accounting .heading-primary,
section.expert-accounting .heading-secondary {
    max-width: 540px;
    text-transform: none;
}

section.expert-accounting.para {
    max-width: 574px;
}

/* ---------- SERVICES SECTION ---------- */

section.services {
    padding: 100px 0;
    background-color: #f9f9f9;
}

section.services .text {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

section.services .heading-box {
    max-width: 580px;
}

section.services .service-cards {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

section.services .service-card {
    width: 33%;
    padding: 40px;
    background-color: #f9f9f9;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    padding: 20px;
}

section.services .service-card:nth-child(2),
section.services .service-card:nth-child(5) {
    border-width: 0 1px;
    border-style: solid;
    border-color: #c7e9fa;
}

section.services .service-card:nth-child(1),
section.services .service-card:nth-child(2),
section.services .service-card:nth-child(3) {
    padding-top: 0;
}

section.services .service-card:nth-child(4),
section.services .service-card:nth-child(5),
section.services .service-card:nth-child(6) {
    padding-bottom: 0;
}

section.services .service-card:nth-child(1)::before,
section.services .service-card:nth-child(2)::before,
section.services .service-card:nth-child(5)::before,
section.services .service-card:nth-child(6)::before {
    content: "";
    height: 80px;
    width: 80px;
    border-width: 0 2px 2px 0;
    border-style: solid;
    border-color: var(--blue-clr);
    position: absolute;
    bottom: -1px;
    right: -2px;
    z-index: 1;
    pointer-events: none;
}

section.services .service-card:nth-child(1)::before,
section.services .service-card:nth-child(2)::before {
    border-width: 0 2px 2px 0;
    bottom: -1px;
    right: -2px;
}

section.services .service-card:nth-child(5)::before,
section.services .service-card:nth-child(6)::before {
    border-width: 2px 0 0 2px;
    top: -1px;
    left: -1px;
}

section.services .service-card-wrapper {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 28px;
    padding: 22px 0;
}

section.services .service-card-wrapper:hover {
    background-color: var(--blue-clr);
}

section.services .service-card-wrapper:hover .info,
section.services .service-card-wrapper:hover .info .heading-tertiary,
section.services .service-card-wrapper:hover .info p {
    color: white;
}

section.services .service-card-wrapper:hover .arrow img {
    filter: invert(1);
}

section.services .service-card-wrapper:hover .icon {
    background-color: white;
    border-color: white;
}

section.services .service-card-wrapper:hover .icon img {
    filter: none;
}

section.services .icon {
    border: 2px solid black;
    padding: 16px;
    border-radius: 16px;
}

section.services .icon img {
    filter: grayscale(100%) brightness(0.2);
}

.service-card .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-card .info .heading-tertiary {
    color: black;
    font-weight: 600;
    margin: 26px 0;
    max-width: 256px;
    text-transform: capitalize;

}

.service-card .info p {
    text-transform: capitalize;
    max-width: 168px;
    color: black
}

.service-card .arrow {
    margin-top: 30px;

}

/* ---------- STRATEGIES SECTION ---------- */

section.strategies {
    padding: 110px 0;
    background-image: url(../../../../uploads/2025/07/strategies-left-shape.webp);
    background-position: left top -20px;
    background-repeat: no-repeat;
    overflow: hidden;

}

section.strategies .shape-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -100px;
}

section.strategies .container {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
}

section.strategies .text,
section.strategies .images {
    flex: 1;
}

section.strategies .images .shape {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-50%, -50%);
}

/* ---------- ACCOUNTING SECTION ---------- */

.accounting {
    padding: 110px 0;
    background-color: #f9f9f9;
    background-image: url(../../../../uploads/2025/07/Robust-Accounting-Shape-right.webp);
    background-position: right top;
    background-repeat: no-repeat;
    text-align: center;
}

.accounting .heading-box {
    max-width: 812px;
    margin: auto;
}

.accounting .heading-box .para {
    max-width: 780px
}

.accounting .para .shape {
    position: absolute;
    top: 12px;
    left: -340px;
}

.accounting .card-boxes {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.accounting .icon {
    margin-bottom: 40px;
}

.accounting .card-box-para {
    max-width: 328px;
}

.accounting .card-box-para span {
    font-weight: 500;
    color: black;
}

/* ---------- ROADMAP SECTION ---------- */

.roadmap {
    padding: 120px 0;
    background-image: url(../../../../uploads/2025/07/Roadmap-shape-right.webp);
    background-position: right center;
    background-repeat: no-repeat;
    text-align: center;
    background-attachment: fixed;
}

.roadmap .heading-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.roadmap .heading-secondary {
    max-width: 364px;
}

.roadmap .heading-primary {
    max-width: 642px;
}

.roadmap-cards {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    text-align: center;
}

.roadmap-cards .shape-left {
    position: absolute;
    left: -131px;
    top: -126px;
}

.card-design {
    flex: 1;
    padding: 70px 20px;
    box-shadow: 12px 40px 81px rgba(135, 135, 135, 0.25);
    border-radius: 23px;
    position: relative;
    background: url(../../../../uploads/2025/07/box_border.webp) top right no-repeat;
    background-color: white;
}

.card-design .counter {
    font-size: 98px;
    line-height: 0.8;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--blue-clr);
}

.card-design .para span {
    font-weight: 600;
}

.footer-cta {
    padding: 100px 0;
}

.home-cta,
.services-cta {
    background: url(../../../../uploads/2025/07/services-cta-bg.webp) center center/cover no-repeat;
}

.footer-cta .row {
    align-items: center;
}

.footer-cta .content-box {
    width: 100%;
    max-width: 560px;
}

.footer-cta .image-box {
    width: 100%;
    max-width: max-content;
    margin-left: auto;
    filter: drop-shadow(25px 25px 15px rgba(0, 0, 0, 0.4));
}

.footer-cta .para {
    margin-bottom: 35px;
}


@media only screen and (min-width: 1200px) {
    .container {
        width: 100%;
        max-width: 1170px;
        padding: 0 15px;
    }
}

/* ---------- PROFESSIONAL AFFILIATION SECTION ---------- */

section.affiliation {
    padding: 100px 0;
    background-color: #f2f2f2;
    text-align: center;
}

section.affiliation .swiper {
    margin-top: 60px;
}

section.affiliation .swiper-slide {
    height: 100px;
}

section.affiliation .swiper-slide img {
    height: 100%;
    object-fit: contain;
}

section.affiliation .nav-wrapper {
    margin-top: 60px;
}

section.affiliation .custom-swiper-pagination {
    margin: auto;
}

/* ---------- ABOUT PAGE ---------- */

/* ---------- HERO ---------- */

.hero.about-banner {
    background: url(../../../../uploads/2025/07/about-hero.webp) center center/cover no-repeat;
    padding: 100px 0;
    color: black;
}

.hero.about-banner .heading-tertiary {
    max-width: 524px;
}

.hero.about-banner .para {
    max-width: 760px;
    margin-bottom: 0;
    line-height: 24px;
}

.hero.about-banner .shape {
    position: absolute;
    left: -6%;
    top: 0;
    height: 146px;
    width: 146px;
}

/* ---------- TAX ADVANTAGE ---------- */

.tax-advantage {
    background: url(../../../../uploads/2025/07/circle-shape-blue.webp), url(../../../../uploads/2025/07/logo-shape-blue.webp);
    background-position: left center, right center;
    background-repeat: no-repeat, no-repeat;
    padding: 56px 0;
    overflow: hidden;
    color: black;
    background-attachment: fixed;
}

.tax-advantage .shape {
    position: absolute;
    top: 50%;
    right: -226px;
    transform: translateY(-50%);

}

.tax-advantage .image-box {
    max-width: max-content;
    margin-left: auto;
}

.tax-advantage .image-box img {
    box-shadow: 0 12px 81px rgba(96, 96, 96, 0.25);
    border-radius: 30px;
}

.tax-advantage .heading-tertiary {
    max-width: 360px;
}

/* ---------- ABOUT CARDS SECTION ---------- */

.about-cards {
    background: url(../../../../uploads/2025/07/Stop-Overpaying-shape-right.webp) right -48px bottom 60px no-repeat;
    background-color: #efefef;
    padding: 110px 0;
}

.about-cards .shape {
    position: absolute;
    left: -10%;
    top: -80px;
}

.about-cards .card-design {
    padding: 88px 20px;
}

.about-card-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    text-align: center;
}

.about-cards .heading-tertiary {
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 40px;
}

.about-cards .para {
    color: black;
}

/* ---------- DEDICATED PARTNER SECTION ---------- */

.dedicated-partner {
    background: url(../../../../uploads/2025/07/logo-shape-blue.webp) left center no-repeat;
    padding: 62px 0;
    color: black;
    overflow: hidden;

}

.dedicated-partner .row {
    align-items: center;
}

.dedicated-partner .shape-left {
    position: absolute;
    left: -154px;
    top: 0%;
}

.dedicated-partner .shape-right {
    position: absolute;
    right: -14%;
    top: 0%;
}

.dedicated-partner .image-box {
    margin-right: 0;
}

.dedicated-partner .heading-tertiary {
    max-width: 276px;
}

/* ---------- TESTIMONIAL SECTION ---------- */

.testimonial {
    padding: 140px 0;
    max-width: 2000px;
    margin: auto;
    width: 100%;
}

.testimonial-wrapper {
    background-color: #efefef;
    padding: 148px 0 140px 100px;
    border-radius: 46px;
    max-width: 1200px;
    width: 100%;
    margin: auto;

}

.testimonial-wrapper .quote-shape {
    position: absolute;
    top: -98px;
    left: 100px;
}

.testimonial-wrapper .heading-box {
    width: 50%;
}

.testimonial-carousal {
    position: absolute;
    top: 10px;
    right: 0;
    max-width: 720px;
}

.testimonial-carousal .swiper-slide {
    display: flex;
    width: 100%;
    height: auto;
    padding: 10px;

}

.testimonial-carousal .card {

    border: none;
    overflow: hidden;
    width: 100%;
    border-radius: 48px;
    box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;

}

.testimonial-carousal .card img{
    width: 100%;
}

.testimonial-carousal .card .content {
    padding: 32px 32px;
    display: flex;
    flex-direction: column;
    flex: 1
}

.testimonial-carousal .card .content .para {
    text-align: center;
    font-size: 16px;
    line-height: 20px;
}

.testimonial-carousal .card .meta {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    align-items: flex-end;
    flex: 1;
}

.testimonial-carousal .card .client {
    flex: 1;
}

.testimonial-carousal .client-name {
    font-weight: 500;
    font-size: 16px;
}

.testimonial-carousal .client-role {
    font-size: 12px;
}

.testimonial-carousal .rating i {
    color: #f4c914;
    font-size: 12px;
}

.testimonial .nav-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 80px;
    justify-content: flex-start;
    z-index: 999;

}

.custom-swiper-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}


.swiper-prev,
.swiper-next {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: none;
    background-color: var(--blue-clr);
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.swiper-button-disabled {
    background-color: #9b9b9b;
    cursor: default;
}

.custom-swiper-pagination {
    text-align: center;
    margin-top: 10px;
    width: max-content !important;
    margin: 0;
    display: flex;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background-color: #9b9b9b;
}

.swiper-pagination-bullet-active {
    width: 14px;
    height: 14px;
    background-color: var(--blue-clr);
}

/* ---------- CTA ---------- */

.footer-cta.about-cta {
    background-color: var(--blue-clr);
    background: linear-gradient(350deg, #005c8f, #00aaff);
    padding-top: 74px;
}

.about-cta .heading-primary {
    word-spacing: -3px;
    letter-spacing: -1px;
}

/* ---------- TYPE WRITER ---------- */

.typewriter-text {
    display: inline;
    border-right: 2px solid var(--text-grey);
    overflow: hidden;
    animation: blinkCursor 0.7s infinite;
}

@keyframes blinkCursor {
    0% {
        border-color: transparent;
    }

    50% {
        border-color: #1e90ff;
    }

    100% {
        border-color: transparent;
    }
}

.calendly-inline-widget iframe ._cUP1np9gMvFQrcPftuf.OGcBAyJGBej5Gnyi9hGA.xahN8AEzyAvQtVj17TPv._Y8HCTxgNkwxXcG_DCXx{
    margin: 0 auto;
    width: 500px;
}