:root {
    --navy: #271c86;
    --navy2: #181151;
    --cyan: #0aa6d7;
    --cyan2: #1bb9df;
    --magenta: #cf0a6b;
    --magenta2: #e52983;
    --ink: #14182a;
    --muted: #626a7d;
    --line: #e5e8f2;
    --soft: #f7f8fc;
    --white: #fff;
    --shadow: 0 24px 70px rgba(32, 26, 92, .12);
    --shadow-sm: 0 12px 34px rgba(32, 26, 92, .09);
    --radius: 24px;
    --font: Inter, "Noto Sans Devanagari", system-ui, -apple-system, "Segoe UI", Arial, sans-serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 108px
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: var(--font);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased
}

body.modal-open {
    overflow: hidden
}

a {
    text-decoration: none;
    color: inherit
}

button,
input,
textarea,
select {
    font: inherit
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto
}

.icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    flex: none
}

.page-noise {
    pointer-events: none;
    position: fixed;
    inset: 0;
    opacity: .025;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E")
}

.topbar {
    background: linear-gradient(100deg, var(--navy2), var(--navy) 55%, #3a1c89);
    color: #fff;
    font-size: 13px
}

.topbar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px
}

.topbar-contact,
.topbar-actions {
    display: flex;
    align-items: center;
    gap: 18px
}

.topbar-contact>a,
.topbar-contact>span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #fff
}

.topbar .icon {
    width: 15px;
    height: 15px
}

.mini-socials {
    display: flex;
    gap: 7px
}

.mini-socials a {
    width: 25px;
    height: 25px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 9px;
    background: rgba(255, 255, 255, .07)
}

.language-pill {
    border: 1px solid rgba(255, 255, 255, .25);
    background: #fff;
    color: var(--navy);
    border-radius: 999px;
    padding: 5px 11px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    cursor: pointer
}

.language-pill .icon {
    width: 16px;
    height: 16px
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(229, 232, 242, .9);
    transition: .25s
}

.site-header.scrolled {
    box-shadow: 0 10px 30px rgba(25, 16, 81, .07)
}

.nav-wrap {
    height: 91px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 235px
}

.brand-logo-wrap {
    width: 74px;
    height: 74px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #e7e8f1;
    padding: 4px;
    box-shadow: 0 8px 22px rgba(45, 33, 137, .11);
    display: grid;
    place-items: center;
    overflow: hidden
}

.brand-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.25
}

.brand-copy strong {
    font-size: 17px;
    letter-spacing: -.2px;
    color: var(--navy2)
}

.brand-copy small {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--magenta);
    font-weight: 700;
    margin-top: 4px
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto
}

.desktop-nav a {
    font-weight: 600;
    font-size: 14px;
    color: #30354b;
    position: relative
}

.desktop-nav a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--magenta));
    transition: .2s
}

.desktop-nav a:hover {
    color: var(--navy)
}

.desktop-nav a:hover:after {
    right: 0
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px
}

.btn {
    border: 0;
    border-radius: 12px;
    min-height: 46px;
    padding: 0 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
    white-space: nowrap
}

.btn:hover {
    transform: translateY(-2px)
}

.btn-primary {
    color: #fff;
    background: linear-gradient(105deg, var(--navy) 0%, #3524a7 47%, var(--magenta) 140%);
    box-shadow: 0 12px 25px rgba(45, 33, 137, .22)
}

.btn-primary:hover {
    box-shadow: 0 15px 30px rgba(45, 33, 137, .3)
}

.btn-secondary {
    background: #fff;
    color: var(--navy);
    border: 1px solid #dfe2ee;
    box-shadow: 0 8px 22px rgba(34, 28, 85, .06)
}

.btn-light {
    background: #fff;
    color: var(--navy);
    box-shadow: 0 12px 28px rgba(7, 6, 40, .16)
}

.btn-lg {
    min-height: 54px;
    padding: 0 24px;
    border-radius: 14px
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 12px;
    color: var(--navy);
    place-items: center
}

.mobile-menu {
    display: none
}

.section-pad {
    padding: 94px 0
}

.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, #fbfaff 55%, #f7fbfd 100%)
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(45, 33, 137, .09) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: linear-gradient(90deg, #000, transparent 55%);
    opacity: .3
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px)
}

.orb-one {
    width: 280px;
    height: 280px;
    background: rgba(10, 166, 215, .09);
    right: 3%;
    top: 8%
}

.orb-two {
    width: 220px;
    height: 220px;
    background: rgba(207, 10, 107, .07);
    right: 28%;
    bottom: -80px
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    gap: 70px;
    align-items: center
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 11px;
    border-radius: 999px;
    background: #f1f0ff;
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    box-shadow: 0 0 0 5px rgba(10, 166, 215, .1)
}

.hero h1 {
    font-size: clamp(44px, 5.2vw, 70px);
    line-height: 1.03;
    letter-spacing: -3px;
    margin: 24px 0 22px;
    max-width: 760px
}

.gradient-text {
    background: linear-gradient(90deg, var(--navy) 0%, var(--cyan) 48%, var(--magenta) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.lead {
    font-size: 18px;
    color: var(--muted);
    max-width: 690px;
    margin: 0 0 28px
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
    margin-top: 30px;
    color: #434a60;
    font-size: 13px;
    font-weight: 600
}

.hero-trust>span {
    display: flex;
    align-items: center;
    gap: 7px
}

.hero-trust .icon {
    color: var(--cyan);
    width: 18px;
    height: 18px
}

.hero-visual {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center
}

.hero-image-card {
    width: 100%;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 35px 100px rgba(35, 27, 112, .15);
    border: 1px solid #ecebfa;
    transform: rotate(1.5deg);
    background: #fff
}

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

.hero-float {
    position: absolute;
    background: #fff;
    border: 1px solid #e7e8f2;
    box-shadow: var(--shadow-sm);
    border-radius: 18px;
    padding: 13px 15px;
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 190px
}

.hero-float strong,
.hero-float small {
    display: block
}

.hero-float strong {
    font-size: 13px
}

.hero-float small {
    font-size: 11px;
    color: var(--muted);
    margin-top: 1px
}

.float-one {
    left: -22px;
    top: 18%
}

.float-two {
    right: -18px;
    bottom: 13%
}

.float-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center
}

.float-icon.cyan {
    color: #057fa6;
    background: #e9faff
}

.float-icon.magenta {
    color: #b70560;
    background: #fff0f7
}

.brand-strip {
    background: linear-gradient(100deg, var(--navy2), var(--navy) 60%, #3a1e91);
    color: #fff
}

.strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.strip-grid>div {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 0 23px;
    border-right: 1px solid rgba(255, 255, 255, .13)
}

.strip-grid>div:first-child {
    padding-left: 0
}

.strip-grid>div:last-child {
    border: 0
}

.strip-grid strong {
    font-size: 28px;
    color: #79ddf2;
    opacity: .92
}

.strip-grid span {
    font-size: 13px;
    line-height: 1.35;
    font-weight: 600
}

.split-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 82px
}

.align-center {
    align-items: center
}

.section-image-wrap {
    position: relative
}

.section-image-wrap img {
    display: block;
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2
}

.accent-frame {
    position: absolute;
    left: -22px;
    bottom: -22px;
    width: 60%;
    height: 60%;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    z-index: 1;
    opacity: .12
}

.section-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--magenta);
    margin-bottom: 12px
}

.section-kicker:before {
    content: "";
    display: inline-block;
    width: 25px;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--magenta));
    vertical-align: middle;
    margin-right: 9px
}

.section-kicker.light {
    color: #8fe5f6
}

.section-kicker.light:before {
    background: #fff
}

.section-copy h2,
.section-head h2,
.director-copy h2,
.why-copy h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.13;
    letter-spacing: -1.5px;
    margin: 0 0 18px
}

.section-copy p,
.section-head p,
.director-copy blockquote,
.why-copy p {
    color: var(--muted);
    font-size: 16px;
    margin: 0 0 23px
}

.feature-list {
    display: grid;
    gap: 12px;
    margin: 25px 0
}

.feature-list>span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #34394f
}

.feature-list .icon {
    width: 22px;
    height: 22px;
    color: #fff;
    background: var(--cyan);
    padding: 4px;
    border-radius: 50%
}

.text-cta,
.service-link {
    border: 0;
    background: none;
    color: var(--navy);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    cursor: pointer
}

.text-cta .icon,
.service-link .icon {
    transition: .2s
}

.text-cta:hover .icon,
.service-link:hover .icon {
    transform: translateX(4px)
}

.section-soft {
    background: linear-gradient(180deg, #f8f9fd, #fbfcff)
}

.section-head {
    max-width: 770px;
    margin-bottom: 42px
}

.section-head.centered {
    text-align: center;
    margin-inline: auto
}

.section-head.centered p {
    max-width: 660px;
    margin-inline: auto
}

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

.service-card {
    background: #fff;
    border: 1px solid #e7e9f2;
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 10px 25px rgba(39, 28, 134, .045);
    transition: .25s;
    position: relative;
    overflow: hidden
}

.service-card:after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: -38px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(10, 166, 215, .8), rgba(207, 10, 107, .8));
    /* background: linear-gradient(135deg, rgba(44, 31, 141), rgb(177, 15, 112)); */
    transition: .25s
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: #d8d9ec;
    box-shadow: 0 20px 48px rgba(39, 28, 134, .1)
}

.service-card:hover:after {
    transform: scale(1.4)
}

.service-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(145deg, #eeefff, #ebfaff);
    display: grid;
    place-items: center;
    color: var(--navy);
    margin-bottom: 19px
}

.service-icon .icon {
    width: 27px;
    height: 27px
}

.service-card:nth-child(3n+2) .service-icon {
    background: #eafaff;
    color: #078db8
}

.service-card:nth-child(3n) .service-icon {
    background: #fff0f7;
    color: #bd075f
}

.service-card h3 {
    font-size: 19px;
    margin: 0 0 9px
}

.service-card p {
    color: var(--muted);
    font-size: 14px;
    min-height: 52px;
    margin: 0 0 18px
}

.service-link {
    font-size: 13px;
    position: relative;
    z-index: 2
}

.center-cta {
    margin-top: 26px;
    border: 1px solid #e2e4ef;
    background: #fff;
    border-radius: 20px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: var(--shadow-sm)
}

.center-cta strong,
.center-cta span {
    display: block
}

.center-cta strong {
    font-size: 16px
}

.center-cta span {
    font-size: 13px;
    margin-top: 2px
}

.process-section {
    position: relative
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    position: relative
}

.process-grid:before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 45px;
    border-top: 1px dashed #cfd2e2;
    z-index: 0
}

.process-card {
    position: relative;
    z-index: 1;
    background: #fff;
    border: 1px solid #e5e7f0;
    border-radius: 22px;
    padding: 25px 21px
}

.process-card>span {
    position: absolute;
    right: 17px;
    top: 13px;
    font-weight: 800;
    font-size: 34px;
    color: #eff0f7
}

.process-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: linear-gradient(145deg, var(--navy), #493bb2);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 22px rgba(45, 33, 137, .2);
    margin-bottom: 20px
}

.process-card:nth-child(2) .process-icon {
    background: linear-gradient(145deg, #078db8, var(--cyan2))
}

.process-card:nth-child(3) .process-icon {
    background: linear-gradient(145deg, #a60759, var(--magenta2))
}

.process-card:nth-child(4) .process-icon {
    background: linear-gradient(145deg, #1f195e, #38299c)
}

.process-icon .icon {
    width: 27px;
    height: 27px
}

.process-card h3 {
    font-size: 17px;
    margin: 0 0 7px
}

.process-card p {
    font-size: 13px;
    color: var(--muted);
    margin: 0
}

.why-section {
    background: linear-gradient(110deg, #181151, #281d86 60%, #3b1d8f);
    color: #fff;
    position: relative;
    overflow: hidden
}

.why-section:after {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    border: 90px solid rgba(10, 166, 215, .08);
    border-radius: 50%;
    right: -170px;
    top: -170px
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 2;
    align-items: center
}

.why-copy p {
    color: #c8c8df
}

.why-points {
    display: grid;
    gap: 16px
}

.why-points>div {
    display: flex;
    gap: 16px;
    padding: 19px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px)
}

.why-points>.icon {
    width: 25px;
    height: 25px;
    color: #77dff4;
    margin-top: 2px
}

.why-points strong,
.why-points span {
    display: block
}

.why-points strong {
    font-size: 15px
}

.why-points span {
    font-size: 12px;
    color: #c8c9df;
    margin-top: 4px
}

.director-grid {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 75px;
    align-items: center
}

.director-photo {
    position: relative;
    max-width: 500px
}

.photo-frame {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #f2f4f8
}

.photo-frame img {
    width: 100%;
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover
}

.director-name-card {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 10px;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 16px;
    padding: 5px 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(22, 15, 78, .14)
}

.director-name-card img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #e4e5ee
}

.director-name-card strong,
.director-name-card span {
    display: block
}

.director-name-card strong {
    font-size: 14px
}

.director-name-card span {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px
}

.director-copy blockquote {
    font-size: 16px;
    line-height: 1.45;
    border-left: 3px solid var(--cyan);
    padding-left: 20px;
    margin: 20px 0
}

.signature-block {
    margin: 26px 0
}

.signature-block strong,
.signature-block span {
    display: block
}

.signature-block strong {
    font-size: 18px;
    color: var(--navy)
}

.signature-block span {
    font-size: 12px;
    color: var(--muted);
    margin-top: 3px
}

.faq-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 70px
}

.accordion {
    display: grid;
    gap: 10px
}

.accordion details {
    background: #fff;
    border: 1px solid #e4e6ef;
    border-radius: 15px;
    padding: 0 18px;
    box-shadow: 0 8px 20px rgba(36, 27, 111, .035)
}

.accordion summary {
    cursor: pointer;
    list-style: none;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    font-weight: 700;
    font-size: 14px
}

.accordion summary::-webkit-details-marker {
    display: none
}

.accordion summary b {
    font-size: 24px;
    font-weight: 400;
    color: var(--navy)
}

.accordion p {
    font-size: 13px;
    color: var(--muted);
    padding: 0 0 17px;
    margin: 0
}

.contact-section {
    background: #fff
}

.contact-grid {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 24px
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.contact-card {
    border: 1px solid #e4e6ef;
    border-radius: 18px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    transition: .2s
}

.contact-card:hover {
    border-color: #cccfea;
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px)
}

.contact-card.main-contact {
    grid-column: 1/-1
}

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: #f0efff;
    color: var(--navy);
    display: grid;
    place-items: center;
    flex: none
}

.contact-card:nth-child(3n) .contact-icon {
    background: #eafaff;
    color: #068bb5
}

.contact-card:nth-child(4n) .contact-icon {
    background: #fff0f7;
    color: #b70760
}

.contact-card .label,
.contact-card strong {
    display: block
}

.contact-card .label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 3px
}

.contact-card strong {
    font-size: 13px;
    line-height: 1.5
}

.main-contact strong {
    font-weight: 600
}

.main-contact a {
    font-size: 12px;
    color: var(--navy);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 6px
}

.main-contact a .icon {
    width: 15px;
    height: 15px
}

.contact-map {
    position: relative;
    border: 1px solid #e3e5ef;
    border-radius: 24px;
    padding: 9px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    min-height: 420px
}

.contact-map iframe {
    border: 0;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 18px
}

.map-overlay-card {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 17px;
    padding: 5px 11px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 35px rgba(31, 23, 99, .13)
}

.map-overlay-card img {
    width: 43px;
    height: 43px;
    object-fit: cover;
    border-radius: 12px
}

.map-overlay-card>div {
    margin-right: auto
}

.map-overlay-card strong,
.map-overlay-card span {
    display: block
}

.map-overlay-card strong {
    font-size: 13px
}

.map-overlay-card span {
    font-size: 11px;
}

.map-overlay-card .btn {
    min-height: 40px;
    padding: 0 14px
}

.final-cta {
    padding: 32px 0;
    background: linear-gradient(110deg, var(--cyan), #137cae 35%, var(--navy) 75%, #4a218f);
    color: #fff
}

.final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px
}

.final-cta-inner>div {
    display: flex;
    align-items: center;
    gap: 14px
}

.final-cta img {
    width: 58px;
    height: 58px;
    border-radius: 17px;
    background: #fff;
    padding: 2px
}

.final-cta span,
.final-cta strong {
    display: block
}

.final-cta span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: .84
}

.final-cta strong {
    font-size: 22px;
    margin-top: 2px
}

.site-footer {
    background: #11102c;
    color: #c8c9da;
    padding: 68px 0 20px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .7fr .95fr 1fr;
    gap: 45px
}

.footer-brand-link {
    min-width: 0;
    margin-bottom: 18px
}

.footer-brand-link .brand-logo-wrap {
    width: 68px;
    height: 68px;
    border-radius: 18px
}

.footer-brand-link .brand-copy strong {
    color: #fff
}

.footer-brand p {
    font-size: 12px;
    max-width: 320px;
    color: #9c9db6
}

.site-footer h4 {
    color: #fff;
    font-size: 13px;
    margin: 0 0 18px
}

.site-footer .footer-grid>div:not(.footer-brand)>a,
.site-footer .footer-grid>div:not(.footer-brand)>span {
    display: block;
    font-size: 12px;
    margin: 0 0 10px;
    color: #aeb0c4
}

.site-footer a:hover {
    color: #fff
}

.footer-socials {
    display: flex;
    gap: 8px
}

.footer-socials a {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    border: 1px solid #2c2a51;
    background: #1a193b;
    color: #fff;
    font-size: 10px;
    font-weight: 800
}

.footer-bottom {
    border-top: 1px solid #27264b;
    margin-top: 45px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 10px;
    color: #81839c
}

.floating-actions {
    position: fixed;
    right: 17px;
    bottom: 22px;
    z-index: 180;
    display: grid;
    gap: 9px
}

.float-btn {
    height: 46px;
    min-width: 46px;
    border: 0;
    border-radius: 14px;
    padding: 0 13px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(30, 20, 92, .17);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 11px;
    color: var(--navy);
    cursor: pointer
}

.float-btn .icon {
    width: 18px;
    height: 18px
}

.float-btn.wa {
    color: #0a8e52
}

.float-btn.enquiry {
    background: linear-gradient(135deg, var(--navy), var(--magenta));
    color: #fff
}

.mobile-actions {
    display: none
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(17, 11, 58, .6);
    backdrop-filter: blur(7px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.modal-backdrop.show {
    display: flex
}

.enquiry-modal {
    width: min(700px, 100%);
    max-height: calc(100vh - 30px);
    overflow: auto;
    background: #fff;
    border-radius: 26px;
    box-shadow: 0 40px 100px rgba(10, 6, 45, .28);
    padding: 25px
}

.modal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 21px
}

.modal-head>div {
    display: flex;
    align-items: center;
    gap: 12px
}

.modal-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: linear-gradient(145deg, var(--navy), #4835b1);
    color: #fff;
    display: grid;
    place-items: center
}

.modal-head h2 {
    margin: 0;
    font-size: 24px;
    letter-spacing: -.6px
}

.mini-title {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--magenta);
    font-weight: 800
}

.modal-close {
    border: 1px solid #e5e6ef;
    background: #fff;
    color: #555b70;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    cursor: pointer
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.form-grid label {
    display: grid;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #3a4055
}

.form-grid label.full {
    grid-column: 1/-1
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    width: 100%;
    border: 1px solid #dfe2ec;
    background: #fbfcfe;
    border-radius: 11px;
    outline: none;
    padding: 11px 12px;
    font-size: 13px;
    color: #202438;
    transition: .2s
}

.form-grid input,
.form-grid select {
    height: 47px
}

.form-grid textarea {
    resize: vertical;
    min-height: 105px
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
    border-color: #8c83cc;
    box-shadow: 0 0 0 4px rgba(45, 33, 137, .08);
    background: #fff
}

.form-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #72788a;
    font-size: 10px;
    margin: 14px 0
}

.form-note .icon {
    width: 16px;
    height: 16px;
    color: var(--cyan)
}

.btn-submit {
    width: 100%;
    min-height: 52px
}

.spinner {
    display: none;
    width: 17px;
    height: 17px;
    border: 2px solid rgba(255, 255, 255, .35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .7s linear infinite
}

.is-loading .spinner {
    display: block
}

.is-loading .btn-submit>.icon {
    display: none
}

.form-status {
    display: none;
    border-radius: 11px;
    padding: 10px 12px;
    font-size: 12px;
    margin-bottom: 12px
}

.form-status.show {
    display: block
}

.form-status.success {
    background: #eaf9f1;
    color: #176a43;
    border: 1px solid #bfe9d3
}

.form-status.error {
    background: #fff0f3;
    color: #9f1749;
    border: 1px solid #f3c8d6
}

.hp-field {
    position: absolute !important;
    left: -99999px !important;
    opacity: 0 !important
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: .65s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

.delay-1 {
    transition-delay: .1s
}

.service-card.reveal {
    transition-delay: calc(var(--delay)*.08s)
}

@media(max-width:1060px) {
    .desktop-nav {
        display: none
    }

    .menu-toggle {
        display: grid
    }

    .nav-cta>.btn {
        display: none
    }

    .hero-grid {
        gap: 36px
    }

    .hero h1 {
        font-size: 52px
    }

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

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

    .process-grid:before {
        display: none
    }

    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr
    }

    .footer-grid>div:nth-child(3) {
        display: none
    }

    .mobile-menu {
        position: absolute;
        top: 91px;
        left: 20px;
        right: 20px;
        background: #fff;
        border: 1px solid #e5e7ef;
        border-radius: 18px;
        padding: 13px;
        box-shadow: 0 20px 50px rgba(28, 19, 93, .15)
    }

    .mobile-menu.show {
        display: grid
    }

    .mobile-menu a {
        padding: 10px 8px;
        border-bottom: 1px solid #eff0f5;
        font-size: 13px;
        font-weight: 700
    }

    .mobile-menu .btn {
        margin-top: 9px
    }

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

    .strip-grid>div:nth-child(2) {
        border-right: 0
    }

    .strip-grid>div:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, .13)
    }

    .strip-grid>div:first-child {
        padding-left: 23px
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .contact-map {
        min-height: 380px
    }
}

@media(max-width:780px) {
    html {
        scroll-padding-top: 86px
    }

    .container {
        width: min(100% - 28px, 1180px)
    }

    .topbar-contact .hide-sm,
    .hide-md {
        display: none
    }

    .topbar-inner {
        min-height: 38px
    }

    .mini-socials {
        display: none
    }

    .nav-wrap {
        height: 76px
    }

    .mobile-menu {
        top: 76px
    }

    .brand {
        min-width: 0;
        gap: 8px
    }

    .brand-logo-wrap {
        width: 58px;
        height: 58px;
        border-radius: 16px
    }

    .brand-copy strong {
        font-size: 14px
    }

    .brand-copy small {
        font-size: 9px;
        letter-spacing: 1px
    }

    .section-pad {
        padding: 70px 0
    }

    .hero {
        padding-top: 56px
    }

    .hero-grid,
    .split-grid,
    .why-grid,
    .director-grid,
    .faq-grid {
        grid-template-columns: 1fr
    }

    .hero-grid {
        gap: 40px
    }

    .hero h1 {
        font-size: 44px;
        letter-spacing: -2px
    }

    .lead {
        font-size: 16px
    }

    .hero-visual {
        min-height: auto
    }

    .hero-float {
        min-width: 165px;
        padding: 10px 11px
    }

    .float-one {
        left: -5px;
        top: 9%
    }

    .float-two {
        right: -5px;
        bottom: 8%
    }

    .strip-grid>div {
        padding: 0 14px;
        min-height: 74px
    }

    .strip-grid>div:first-child {
        padding-left: 14px
    }

    .strip-grid strong {
        font-size: 22px
    }

    .strip-grid span {
        font-size: 11px
    }

    .split-grid,
    .director-grid,
    .faq-grid {
        gap: 42px
    }

    .services-grid {
        grid-template-columns: 1fr
    }

    .service-card p {
        min-height: auto
    }

    .process-grid {
        grid-template-columns: 1fr 1fr
    }

    .why-grid {
        gap: 40px
    }

    .director-photo {
        margin-inline: auto;
        width: min(100%, 470px)
    }

    .contact-cards {
        grid-template-columns: 1fr
    }

    .contact-card.main-contact {
        grid-column: auto
    }

    .center-cta {
        align-items: flex-start;
        flex-direction: column
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer-brand {
        grid-column: 1/-1
    }

    .footer-bottom {
        flex-direction: column
    }

    .floating-actions {
        display: none
    }

    .mobile-actions {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: 10px;
        z-index: 500;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        background: #fff;
        border: 1px solid #e3e5ee;
        border-radius: 17px;
        box-shadow: 0 15px 40px rgba(25, 17, 80, .2);
        padding: 5px
    }

    .mobile-actions>* {
        border: 0;
        background: transparent;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        min-height: 48px;
        color: var(--navy);
        font-size: 9px;
        font-weight: 800
    }

    .mobile-actions .icon {
        width: 18px;
        height: 18px
    }

    .mobile-actions button {
        background: linear-gradient(135deg, var(--navy), var(--magenta));
        color: #fff;
        border-radius: 12px
    }

    .site-footer {
        padding-bottom: 90px
    }

    .form-grid {
        grid-template-columns: 1fr
    }

    .form-grid label.full {
        grid-column: auto
    }

    .enquiry-modal {
        padding: 18px;
        border-radius: 20px
    }

    .modal-head h2 {
        font-size: 20px
    }

    .final-cta-inner {
        align-items: flex-start;
        flex-direction: column
    }

    .final-cta strong {
        font-size: 18px
    }
}

@media(max-width:540px) {
    .topbar-contact {
        gap: 8px
    }

    .topbar-contact>a {
        font-size: 11px
    }

    .hero h1 {
        font-size: 39px
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr
    }

    .hero-actions .btn {
        width: 100%
    }

    .hero-trust {
        display: grid;
        gap: 10px
    }

    .hero-visual {
        padding-top: 20px
    }

    .hero-float {
        position: relative;
        inset: auto !important;
        display: inline-flex;
        margin-top: 10px;
        margin-right: 5px
    }

    .hero-image-card {
        transform: none
    }

    .services-grid {
        gap: 13px
    }

    .process-grid {
        grid-template-columns: 1fr
    }

    .strip-grid {
        grid-template-columns: 1fr
    }

    .strip-grid>div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .13) !important;
        min-height: 63px
    }

    .strip-grid>div:last-child {
        border-bottom: 0 !important
    }

    .contact-map iframe {
        min-height: 330px
    }

    .map-overlay-card {
        left: 15px;
        right: 15px;
        bottom: 15px
    }

    .map-overlay-card .btn {
        display: none
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-grid>div:nth-child(3) {
        display: block
    }

    .brand-copy {
        display: none
    }

    .brand-logo-wrap {
        width: 62px;
        height: 62px
    }

    .brand {
        min-width: 62px
    }

    .nav-wrap {
        gap: 10px
    }
}

.social-svg {
    width: 16px;
    height: 16px;
    display: block
}

.mini-socials .social-svg {
    width: 13px;
    height: 13px
}

.footer-socials .social-svg {
    width: 16px;
    height: 16px
}


/* ==================================================
   PROPERTY SOCIAL HUB
================================================== */

.property-social-hub {
    position: relative;
    padding: 95px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 15%, rgba(21, 164, 211, .11), transparent 30%),
        radial-gradient(circle at 92% 85%, rgba(205, 10, 104, .09), transparent 30%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 52%, #fff8fc 100%);
}

.property-social-hub::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(31, 38, 139, .07);
    left: -220px;
    top: -170px;
}

.property-social-hub::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 1px solid rgba(205, 10, 104, .08);
    right: -190px;
    bottom: -180px;
}

.property-social-hub .container {
    position: relative;
    z-index: 2;
}

.social-hub-heading {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}

.social-hub-heading h2 {
    margin: 10px 0 14px;
    font-size: clamp(30px, 4vw, 44px);
    color: #17215c;
}

.social-hub-heading p {
    margin: 0;
    color: #65708a;
    font-size: 16px;
    line-height: 1.75;
}


.property-social-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}


.property-social-card {
    position: relative;
    padding: 34px;
    border-radius: 26px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(23, 33, 92, .08);
    box-shadow: 0 18px 55px rgba(25, 45, 100, .09);
    transition: .35s ease;
    overflow: hidden;
}

.property-social-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 70px rgba(25, 45, 100, .14);
}

.property-social-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 5px;
}

.sale-social-card::before {
    background: linear-gradient(90deg, #242a91, #0da8d3);
}

.rent-social-card::before {
    background: linear-gradient(90deg, #9a197c, #d10968);
}


.social-card-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.social-card-icon {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 27px;
}

.sale-icon {
    color: #fff;
    background: linear-gradient(135deg, #242a91, #0ca8d3);
    box-shadow: 0 12px 24px rgba(12, 168, 211, .22);
}

.rent-icon {
    color: #fff;
    background: linear-gradient(135deg, #8e227f, #d10968);
    box-shadow: 0 12px 24px rgba(209, 9, 104, .20);
}

.social-card-label {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #7d879b;
}

.property-social-card h3 {
    margin: 0;
    font-size: 24px;
    color: #17215c;
}

.property-social-card>p {
    color: #65708a;
    line-height: 1.75;
    margin: 0 0 25px;
}


.department-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 10px;
    background: #f7f8fc;
    border: 1px solid #e6e9f2;
    /* color: #3f4964; */
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: .25s ease;
}

.social-btn i {
    font-size: 17px;
}

.social-btn {
    transform: translateY(-2px);
    background: #fff;
}

.social-btn.facebook {
    color: #1877f2;
    border-color: rgba(24, 119, 242, .3);
}

.social-btn.instagram {
    color: #c13584;
    border-color: rgba(193, 53, 132, .3);
}

.social-btn.youtube {
    color: #ff0000;
    border-color: rgba(255, 0, 0, .3);
}

.social-btn.linkedin {
    color: #0a66c2;
    border-color: rgba(10, 102, 194, .3);
}

.social-btn.twitter {
    color: #111;
    border-color: #bbb;
}

.social-btn.whatsapp {
    color: #12a85a;
    border-color: rgba(18, 168, 90, .3);
}

.social-btn.telegram {
    color: #229ed9;
    border-color: rgba(34, 158, 217, .3);
}


.department-enquiry-btn {
    width: 100%;
    border: 0;
    padding: 15px 20px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: .3s ease;
}

.department-enquiry-btn:hover {
    transform: translateY(-2px);
}

.sale-enquiry {
    background: linear-gradient(135deg, #242a91, #0ca8d3);
}

.rent-enquiry {
    background: linear-gradient(135deg, #90217f, #d10968);
}


/* ==================================================
   SHARE WEBSITE
================================================== */

.website-share-box {
    margin-top: 30px;
    padding: 28px 30px;
    border-radius: 22px;
    background: #17215c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 22px 60px rgba(23, 33, 92, .18);
}

.share-copy {
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 560px;
}

.share-main-icon {
    width: 55px;
    height: 55px;
    flex: 0 0 55px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #09a8d2, #d10968);
    color: #fff;
    font-size: 22px;
}

.share-copy h3 {
    color: #fff;
    margin: 0 0 5px;
    font-size: 20px;
}

.share-copy p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1.6;
}


.website-share-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 9px;
}

.share-action {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 10px;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    transition: .25s ease;
}

.share-action:hover {
    background: #fff;
    color: #17215c;
    transform: translateY(-2px);
}

.share-action i {
    font-size: 16px;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 991px) {

    .property-social-grid {
        grid-template-columns: 1fr;
    }

    .website-share-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .website-share-actions {
        justify-content: flex-start;
    }

}


@media (max-width: 575px) {

    .property-social-hub {
        padding: 70px 0;
    }

    .property-social-card {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .social-card-icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
        border-radius: 14px;
        font-size: 22px;
    }

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

    .department-social-links {
        gap: 8px;
    }

    .social-btn span {
        display: none;
    }

    .social-btn {
        width: 43px;
        height: 43px;
        padding: 0;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .social-btn i {
        font-size: 19px;
    }

    .website-share-box {
        padding: 24px 20px;
    }

    .share-copy {
        align-items: flex-start;
    }

    .share-action span {
        display: none;
    }

    .share-action {
        width: 43px;
        height: 43px;
        justify-content: center;
        padding: 0;
        border-radius: 50%;
    }
}

/* =====================================================
   GOOGLE TESTIMONIALS
===================================================== */

.google-testimonials {
    position: relative;
    padding: 95px 0;
    overflow: hidden;

    background:
        radial-gradient(circle at 10% 10%, rgba(11, 166, 211, .08), transparent 32%),
        radial-gradient(circle at 90% 90%, rgba(209, 9, 104, .07), transparent 32%),
        #ffffff;
}

.google-testimonials::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    top: -210px;
    right: -150px;
    border: 1px solid rgba(35, 32, 135, .07);
}

.google-testimonials .container {
    position: relative;
    z-index: 2;
}


/* HEADING */

.testimonial-heading {
    max-width: 760px;
    margin: 0 auto 35px;
    text-align: center;
}

.testimonial-heading h2 {
    margin: 10px 0 14px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    color: #1f2167;
}

.testimonial-heading p {
    margin: 0;
    color: #6b7287;
    line-height: 1.7;
}


/* GOOGLE SUMMARY */

.google-review-summary {
    width: fit-content;
    margin: 0 auto 38px;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 12px 20px 12px 12px;

    border-radius: 18px;

    background: #ffffff;

    border: 1px solid #e8eaf1;

    box-shadow:
        0 12px 40px rgba(34, 38, 90, .07);
}

.google-brand-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background:
        linear-gradient(135deg,
            #4285f4,
            #34a853,
            #fbbc05,
            #ea4335);

    color: #fff;

    font-size: 27px;
    font-weight: 800;

    box-shadow:
        0 8px 20px rgba(66, 133, 244, .18);
}

.google-summary-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.google-summary-content strong {
    color: #1c2352;
}

.google-summary-content>span {
    color: #7a8092;
    font-size: 13px;
}

.google-summary-stars {
    display: flex;
    gap: 2px;
    color: #fbbc04;
    font-size: 14px;
}


/* SLIDER */

.testimonial-slider-wrapper {
    position: relative;
}

.testimonial-track {
    display: grid;

    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 48px) / 3);

    gap: 24px;

    overflow-x: auto;

    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    padding: 8px 4px 22px;

    scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}


/* CARD */

.google-review-card {
    position: relative;

    min-width: 0;

    padding: 27px;

    border-radius: 22px;

    background:
        linear-gradient(145deg,
            #ffffff,
            #fbfcff);

    border: 1px solid #e8eaf2;

    box-shadow:
        0 16px 45px rgba(32, 36, 85, .07);

    scroll-snap-align: start;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.google-review-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(21, 165, 211, .25);

    box-shadow:
        0 22px 55px rgba(32, 36, 85, .12);
}


/* USER */

.review-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 15px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 0;
}

.review-avatar {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    object-fit: cover;

    flex-shrink: 0;
}

.review-avatar-letter {
    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(135deg,
            #24258c,
            #0ba8d4);

    color: #fff;

    font-size: 18px;
    font-weight: 800;
}

.review-user-info {
    min-width: 0;
}

.review-user-info strong {
    display: block;

    color: #1b214e;

    font-size: 15px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-user-info span {
    display: block;
    margin-top: 3px;

    color: #9195a4;

    font-size: 12px;
}


/* GOOGLE ICON */

.google-small-icon {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff;

    border: 1px solid #e8e8ec;

    color: #4285f4;

    font-weight: 900;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, .05);
}


/* STARS */

.review-stars {
    display: flex;
    gap: 3px;

    margin-top: 18px;

    color: #fbbc04;

    font-size: 16px;
}


/* REVIEW TEXT */

.review-text {
    position: relative;

    margin-top: 18px;

    min-height: 130px;
}

.quote-icon {
    position: absolute;

    top: -8px;
    right: 0;

    color: rgba(35, 37, 140, .07);

    font-size: 50px;
}

.review-text p {
    position: relative;

    margin: 0;

    color: #5e6476;

    font-size: 14px;
    line-height: 1.8;

    z-index: 2;
}


/* FOOTER */

.review-card-footer {
    margin-top: 22px;
    padding-top: 17px;

    border-top:
        1px solid #eceef3;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 12px;
}

.verified-google-review {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: #727789;

    font-size: 12px;
}

.verified-google-review i {
    color: #4285f4;
}

.review-google-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: #202584;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;
}

.review-google-link:hover {
    color: #d10968;
}


/* ARROWS */

.testimonial-nav {
    position: absolute;

    top: 50%;

    width: 44px;
    height: 44px;

    border: 0;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;

    color: #222784;

    box-shadow:
        0 10px 30px rgba(23, 31, 80, .15);

    cursor: pointer;

    z-index: 5;

    transition: .25s ease;
}

.testimonial-nav:hover {
    color: #fff;

    background:
        linear-gradient(135deg,
            #24258c,
            #0aa7d3);
}

.testimonial-prev {
    left: -22px;
}

.testimonial-next {
    right: -22px;
}


/* MOBILE NOTE */

.testimonial-mobile-note {
    display: none;

    margin-top: 8px;

    text-align: center;

    color: #8d91a1;

    font-size: 12px;
}


/* TABLET */

@media (max-width: 991px) {

    .testimonial-track {
        grid-auto-columns:
            calc((100% - 20px) / 2);

        gap: 20px;
    }

    .testimonial-prev {
        left: -8px;
    }

    .testimonial-next {
        right: -8px;
    }
}


/* MOBILE */

@media (max-width: 640px) {

    .google-testimonials {
        padding: 70px 0;
    }

    .google-review-summary {
        max-width: 100%;

        padding: 10px 15px 10px 10px;
    }

    .google-summary-content {
        gap: 6px;
    }

    .google-summary-content>span {
        width: 100%;
    }

    .testimonial-track {
        grid-auto-columns: 88%;

        gap: 14px;

        padding-left: 2px;
        padding-right: 2px;
    }

    .google-review-card {
        padding: 22px;

        border-radius: 18px;
    }

    .testimonial-nav {
        display: none;
    }

    .testimonial-mobile-note {
        display: block;
    }

}