* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary-color: #FF3063;
    --secondary-color: #121410;
    --tertiary-color: #161616;
    --quaternary-color: #FFFFFF;
    --quinary-color: #21C712;
    --senary-color: #000000;
    --font-primary: 'Fraunces', sans-serif;
    --font-secondary:'Figtree', sans-serif;
    --font-tertiary: 'Montserrat', sans-serif;
}
@font-face {
    font-family: 'Moralana';
    src: url('../fonts/Moralana.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Michigan Signature';
    src: url('../fonts/Michigan-Signature.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
ul {
    list-style-type: none !important;
}
body {
    background: #fff;
    overflow: hidden;
}
html{
    overflow-x: hidden;
}
/* HERO SECTION */

.hero-section {
    height: 1050px;
    position: relative;
    overflow: hidden;
    background-image: url(../images/banner-home.png);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;

}


/* HEADER */


.site-header {
    padding-top: 18px;
    padding-bottom: 18px;
    position: relative;
    z-index: 9999;
    background: transparent;
    transition: all .3s ease;
}

.site-header.scrolled {
    background: #fff;
    backdrop-filter: blur(60px);

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    padding-top: 15px;
    padding-bottom: 15px;

    box-shadow: 0 2px 30px rgba(0, 0, 0, .15);
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            #FFFFFF 15.89%,
            rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.site-header.scrolled::before {
    display: none;
}

.header-inner {
    width: 1280px;
    max-width: calc(100% - 40px);
    margin: auto;

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

    position: relative;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 52px;
    display: block;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 52px;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 55px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--tertiary-color);

    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
}

/* BUTTON */

.quote-btn {
    width: 180px;
    height: 62px;

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

    padding: 20px 24px;

    border-radius: 60px;
    background: var(--primary-color);

    text-decoration: none;
    color: var(--quaternary-color) !important;

    font-family: var(--font-tertiary) !important;
    font-weight: 900 !important;
    font-size: 18px;
    line-height: 100%;
    text-transform: uppercase;

    position: relative;
    overflow: hidden;

    transition: all 0.35s ease;
}

.quote-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 50%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );

    transform: skewX(-25deg);
    transition: left 0.7s ease;
}

.quote-btn:hover {
    background: #000;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.quote-btn:hover::before {
    left: 150%;
}
/* HAMBURGER */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    background: transparent;
    border: none;

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    border-radius: 30px;
    background: var(--senary-color);
    display: block;
}

.site-header.scrolled .menu-toggle span {
    background: #fff;
}

/* MOBILE MENU */

.mobile-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, .55);

    opacity: 0;
    visibility: hidden;

    transition: .3s;

    z-index: 99998;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;

    top: 0;
    right: -100%;

    width: 100%;
    max-width: 100%;

    height: 100vh;
overflow-y:scroll;
    background: #fff;

    padding: 90px 30px 40px;

    transition: .4s ease;

    z-index: 99999;

    display: flex;
    flex-direction: column;
}

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

.menu-close {
    position: absolute;

    top: 20px;
    right: 20px;

    border: none;
    background: transparent;

    font-size: 42px;
    line-height: 1;

    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.mobile-nav li {
    margin-top: 25px;
}
.mobile-nav a {
    text-decoration: none;

    color: #121410;

    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 500;
}

.mobile-quote-btn {
    width: 100%;
    margin-top: 35px;
}


/* HERO CONTENT */

.hero-container {
    width: 1260px;
    max-width: calc(100% - 40px);
    margin: auto;
    position: relative;
}

.hero-content {
    max-width: 620px;
    padding-top: 250px;
}

.hero-content h1 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 62px;
    line-height: 121%;
    color: var(--secondary-color);
    margin-bottom: 28px;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    max-width: 600px;
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 18px;
    padding-right: 30px;
    line-height: 160%;
    color: var(--secondary-color);
    opacity: 80%;
    margin-bottom: 40px;
}

/* CTA AREA */

.hero-bottom {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* FREE QUOTE BUTTON */

.free-quote-btn {
    width: 280px;
    height: 62px;

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

    padding: 10px 24px 10px 10px;

    background: var(--primary-color);
    border-radius: 60px;

    text-decoration: none;
    transition: all 0.4s ease;
}
.free-quote-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 70%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
    transform: skewX(-25deg);
    transition: left 0.7s ease;
}

.free-quote-btn:hover::before {
    left: 100%;
}

.free-quote-btn:hover {
    transform: translateY(-4px);
}
    a.free-quote-btn:hover {
        background-color: #000000;
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.btn-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    position: relative;
    border: 1.9px solid var(--quaternary-color);
    box-shadow:
        20.25px 20.25px 20.25px rgba(101, 150, 226, 0.04);
    flex-shrink: 0;
}

.btn-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    object-fit: cover;
}

.btn-avatar-dot {
    background: var(--quinary-color);
    width: 14px;
    height: 14px;
    border: 2px solid var(--quaternary-color);
    border-radius: 100%;
    position: absolute;
    bottom: -1px;
    right: 0;
    z-index: 999;
}

.free-quote-btn span {
    color: var(--quaternary-color);

    font-family: var(--font-tertiary);
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
}

.trust-info img {
    max-width: 300px;
}

/* GUARANTEE BADGE */

.guarantee-badge {
    width: 120px;
    height: 120px;
/*     animation: spin 5s linear infinite; */
    position: absolute;
    right: 80px;
    bottom: 50px;

    transform: rotate(5.02deg);
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* LOGOS SECTION */
section.logos-container {
    max-width: 1116px;
    margin: 0 auto;
    padding: 60px 20px;
}

.logos-heading h2 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 36px;
    margin-bottom: 50px;
    line-height: 113.99999999999999%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
}

.logos-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 37px;
}
.logos-slider {
    display: none;
}
.logo-item img {
    transition: transform 0.4s ease !important;
	width:90px;
	height:90px;
}
.logo-item:hover img {
    transform: translateY(-8px) scale(1.2) !important;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15)) !important;
}

/* BEFORE AFTER SECTION */
.before-after-section {
    padding: 100px 0;
    overflow: hidden;
}

.before-after-section .container {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
}

.section-tag {
    display: block;
    text-align: center;
    font-family: var(--font-tertiary);
    font-size: 18px;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.section-title {
    max-width: 1000px;
    margin: auto;
    text-align: center;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 48px;
    line-height: 130%;
}

.pink {
    color: #FF3063;
}

.ampersand {
    font-family: "Times New Roman", serif;
    font-weight: 400;
}

.beforeAfterSlider {
    margin-top: 80px;
    overflow: hidden;
}

.swiper-slide {
    height: auto;
}

.ba-card-wrapper {
    display: flex;
    gap: 0;
    overflow: hidden;
    border-radius: 18px;
}

.ba-card {
    position: relative;
    width: 50%;
}

.ba-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 10px 16px;
    border-radius: 10px;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 700;
}

.before {
    background: var(--senary-color);
    color: #fff;
}

.after {
    background: #FF7EA0;
    color: #fff;
}

.custom-pagination-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
/*     margin-top: 50px; */
}

.slider-prev,
.slider-next {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 28px;
    color: #817674;
}

.pagination-line {
    width: 260px;
    height: 1px;
    background: #ddd;
    position: relative;
}

.active-line {
    position: absolute;
    top: -1px;
    left: 0;

    width: 80px;
    height: 4px;
    background: var(--senary-color);

    transition: all .4s ease;
}

.pagination-counter {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
}

#currentPage {
    color: var(--senary-color);
    font-family: var(--font-secondary);
}

#totalPages {
    color: #817674;
    font-family: var(--font-secondary);
}

.cta-wrap {
    text-align: center;
    /* margin: 0 auto; */
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

/* .quote-btn {
    display: inline-flex;

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

    min-width: 320px;
    height: 70px;

    background: #FF3063;
    color: #fff;

    border-radius: 60px;
    text-decoration: none;

    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
} */

/* States section */

.stats-section {
    padding: 40px 20px 100px;
    background: #fff;
}

.stats-container {
    max-width: 1070px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.stat-item {
    flex: 1;
}

.stat-number {
    margin: 0 0 18px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 63.41px;
    line-height: 1;
    color: var(--senary-color);
}

.stat-text {
    margin: 0;
max-width:200px;
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: var(--tertiary-color);
}

.star {
    font-family: "Times New Roman", serif;
    font-weight: 700;
    font-size: 44px;
    color: #FF7BA2;
    position: relative;
    top: -23px;
    margin-left: 4px;
}

.plus {
    color: #FF7BA2;
    /* margin-top: -15px; */
    position: relative;
    top: -18px;
    margin-left: 4px;
}

.stat-divider {
    width: 1px;
    height: 140px;

    background: linear-gradient(180deg,
            rgba(255, 123, 162, 0) 0%,
            #FF7BA2 52.4%,
            rgba(255, 123, 162, 0) 100%);

    flex-shrink: 0;
}

.trust-section {
    position: relative;
    background: #FEFCE6;
    padding: 50px 0 97px;
    margin-top: 103px;
}
#primary .wave-top{
top:-200px !important;
}
.wave-top {
    position: absolute;
    top: -130px;
    left: 0;
    width: 100%;
    line-height: 0;
    height: 300px;
}

.wave-top img {
    width: 100%;
    display: block;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    position: relative;
}

.trust-image-wrap {
    position: relative;
    flex: 0 0 48%;
}

.main-image {
    width: 100%;
    display: block;
}

.trust-content {
/*     flex: 0 0 45%; */
}

.trust-content h2 {
    margin: 0 0 32px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 48px;
    line-height: 130%;
    color: var(--senary-color);
}

.intro-text {
    margin: 0 0 32px;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 20px;
    line-height: 165%;
    color: var(--senary-color)001;
}

.body-text {
    margin: 0 0 45px;

    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 18px;
    line-height: 170%;
    color: var(--senary-color)001;
    opacity: 80%;
}

/* .quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 10px 26px 10px 10px;

    background: #FF3063;
    color: #fff;

    border-radius: 999px;
    text-decoration: none;

    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 18px;

    transition: .3s;
} */

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

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    display: block;
    flex-shrink: 0;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sparkle-left {
    position: absolute;
    left: 30px;
    bottom: 0;
    width: 26%;
    /* width: 60px; */
/*     animation: sparkleBlink 1.8s ease-in-out infinite; */
}

@keyframes sparkleBlink {
    0%, 100% {
        opacity: 0.4;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* .sparkle{
    position:absolute;
}

.sparkle-left{
    left:-40px;
    bottom:-20px;
    width:180px;
}

.sparkle-right{
    right:40px;
    top:40px;
    width:100px;
} */

.services-section {
    padding: 100px 0;
    background: #fff;
}

.services-section .container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Heading */

.services-heading {
    margin: 0;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 48px;
    line-height: 114%;
    text-align: center;
    color: #121410;
}

.services-heading span {
    color: #FF3063;
}

.services-subtitle {
    margin: 38px 0 66px;
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 18px;
    line-height: 148%;
    text-align: center;
    color: var(--senary-color)001;
}

/* Cards */

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 950px;
    margin: 0 auto;
}

/* Row 1 — 3 cards, each spans 2 of 6 columns */
.services-grid .service-card:nth-child(1) { grid-column: 1 / 3; }
.services-grid .service-card:nth-child(2) { grid-column: 3 / 5; }
.services-grid .service-card:nth-child(3) { grid-column: 5 / 7; }

/* Row 2 — 2 cards, centered under row 1 */
.services-grid .service-card:nth-child(4) { grid-column: 2 / 4; }
.services-grid .service-card:nth-child(5) { grid-column: 4 / 6; }

.service-card {
    position: relative;
    overflow: hidden;

    width: 100%;
    height: 351.93px;

    border-radius: 16px;
    border: 0.77px solid #E0E0E0;

    box-shadow: 0px 3.06px 30.6px rgba(0, 0, 0, .10);

    text-decoration: none;
  transition: all 0.4s ease !important;
}
.service-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0px 7px 30px #ff2f631a;
}
.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
	object-position:top;
}

/* Bottom Gradient */

.service-card .service-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
width:100%;
    min-height: 120px;

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

    padding: 24px 22px;

    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0) 0%,
            #FFFFFF 40.16%,
            #FFFFFF 100%);
}

.service-card .service-content h3 {
    margin: 0;

    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 24px;
    line-height: 126%;
    color: var(--senary-color);
}

/* Hover Arrow */

.service-card .service-arrow {
    opacity: 0;
    transform: translateY(10px);
    transition: all .3s ease;
    flex-shrink: 0;
    background-color: #FF7BA2;
    width: 35px;
    height: 35px;
    padding: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0px;
    border-radius: 9999px;
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateY(0);
}

/* CTA */

.services-cta {
   display: flex;
   align-items: center;
   justify-content: center;
    margin-top: 55px;
}

.quote-btn-service {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 10px 24px 10px 10px;

    background: var(--senary-color);
    color: var(--quaternary-color);

    border-radius: 999px;
    text-decoration: none;
    font-family: var(--font-tertiary);
    font-weight: 900;
    font-size: 18px;
    line-height: 100%;
    text-transform: uppercase;
}

.quote-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.quote-avatar::after {
    content: '';

    position: absolute;
    right: 0;
    bottom: 0;

    width: 10px;
    height: 10px;

    background: #46D34D;
    border: 2px solid #fff;
    border-radius: 50%;
}

.quote-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* spotless home */
.spotless-home {
    position: relative;
    overflow: hidden;
    padding: 0;
    background-image: url('../images/cancer-final/spotless-img.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.spotless-home .container {
    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    align-items: end;
    justify-content: end;
    gap: 20px;

    position: relative;
    z-index: 5;
}

/* ==========================
   Background Ellipses
========================== */

.ellipse {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}



/* Pink Right */

.ellipse-pink {
    width: 860px;
    height: 860px;

    right: -180px;
    top: 180px;

    opacity: .48;

    background:
        radial-gradient(50% 50% at 50% 50%,
            #FF7BA2 0%,
            rgba(255, 255, 255, 0) 100%);

    filter: blur(300px);
}

/* ==========================
   Left Image
========================== */

.spotless-image {
    position: relative;
    flex: 0 0 48%;
    min-height: 700px;
}
.mobile-spotless-home{
    display: none;
}

.image-glow {
    position: absolute;

    width: 680px;
    height: 680px;

    left: 0;
    top: 50%;

    transform: translateY(-50%);
    border-radius: 50%;

    opacity: .4;

    background:
        radial-gradient(50% 50% at 50% 50%,
            #FF7BA2 0%,
            rgba(255, 255, 255, 0) 100%);

    filter: blur(300px);
}

.spotless-image img {
    position: absolute;
    z-index: 2;
    max-width: 100%;
    display: block;
}

.spotless-image .spotless-mobile {
    display: none;
}

/* ==========================
   Decorative dots
========================== */

.sparkles img {
    position: absolute;
    width: 86px;
    top: 13%;
    left: 23%;
    object-fit: cover;
    height: 145px;
}

.stars-sparkle img {
    position: absolute;
    bottom: 0px;
    right: 20%;
}

/* ==========================
   Content
========================== */

.spotless-content {
    /* flex: 0 0 50%; */
    padding-right: 155px;
    padding-bottom: 76px;
    padding-top: 76px;
}

.spotless-content h2 {
    font-family: "Fraunces", serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 121%;
    margin-bottom: 32px;
    color: var(--senary-color)001;
}

.spotless-content h2 span {
    color: #FF7BA2;
}

.subtitle {
    font-family: "Figtree", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 148%;
    color: var(--senary-color);
    margin-bottom: 40px;
}

/* ==========================
   Cards
========================== */

.steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 32px;
    ;
}

.step-card {
    position: relative;
    min-height: 148px;
    background: var(--quaternary-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    padding: 32px 40px 32px 36px;
    overflow: hidden;
    max-width: 571px;
}

/* Icon */

.icon-box {
    width: 84px;
    height: 84px;
    min-width: 84px;

    border-radius: 56px;
    background: #AFE1DE;

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

    box-shadow: 13.09px 13.09px 28.06px 0px var(--senary-color)0000A;
}

.icon-box img {
    width: 48px;
}

/* Text */

.step-content {
    margin-left: 24px;
    max-width: 277px;
}

.step-content h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 600;
    line-height: 126%;
    margin-bottom: 8px;
    color: var(--tertiary-color);
}

.step-content p {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 300;
    line-height: 140%;
    opacity: 80%;
    color: var(--tertiary-color);
}

/* Number */

.step-number {
    position: absolute;

    right: 30px;
    top: 50%;

    transform: translateY(-50%);

    font-family: "Fraunces", serif;
    font-size: 136.47px;
    font-weight: 700;
    line-height: 114%;

    background:
        linear-gradient(188.55deg,
            #FF7BA2 -14.06%,
            rgba(255, 123, 162, 0) 97.22%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    opacity: .25;
}

/* ===========================
   WHY CHOOSE US
=========================== */

.why-choose-us {
    background: #FEFCE6;
    padding: 110px 20px 120px;
}

.why-choose-us .container {
    max-width: 1220px;
    margin: 0 auto;
}


/* ===========================
   Header
=========================== */

.section-header {
    max-width: 650px;
    margin: 0 auto 60px;
    text-align: center;
}
.section-header h2 span{
    color: #FF3063;
}
.section-header h2 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 48px;
    line-height: 114%;
    color: var(--senary-color);
    margin-bottom: 18px;
}

.section-header p {
    font-family:var(--font-secondary);
    font-weight: 500;
    font-size: 18px;
    line-height: 148%;
    color: var(--senary-color)001;
    opacity: 80%;
}

/* ===========================
   Cards Grid
=========================== */

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 8px;
}

.why-card {
    min-height: 360px;

    background: var(--quaternary-color);

    border-radius: 17.3px;

    box-shadow: 0px 4px 31.2px rgba(0, 0, 0, 0.05);

    padding: 16px;

    text-align: center;
    transition: all 0.4s ease !important;
}
.why-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0px 4px 31.2px rgb(0 0 0 / 19%);
}
.why-card img {
    width: 100%;
    height: 220px;

    border-radius: 16px;

    object-fit: cover;
    display: block;

    margin: 0 auto 20px;
}

.why-card h3 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 22px;
    line-height: 126%;
    color: var(--tertiary-color);
    margin-bottom: 8px;
}

.why-card p {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--tertiary-color);
    opacity: 80%;
    max-width: 290px;
    margin: 0 auto;
}

/* ===========================
   Rating
=========================== */

.rating-wrapper {
    margin-top: 48px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

    flex-wrap: wrap;
}

.rating {
    display: flex;
    align-items: flex-end;
    gap: 2px;
}

.rating-number {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 37.69px;
    line-height: 114%;
    color: #FF7BA2;
}

.rating-total {
    font-family:var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--senary-color);
}

.rating-text {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 14px;
    line-height: 134%;
    color: var(--senary-color);
    max-width: 270px;
}

.rating-text strong {
    color: #FF7BA2;
    font-weight: 700;
}


.story-section {
    padding: 120px 20px;
    background: var(--quaternary-color);
}

.story-container {
    max-width: 1147px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* ==========================
   LEFT CONTENT
========================== */

.story-content {
    width: 100%;
}

.story-content h2 {
    font-family:var(--font-primary);
    font-weight: 700;
    font-size: 48px;
    line-height: 114%;
    color: var(--senary-color);
    margin-bottom: 34px;
}

.story-text p {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 18px;
    line-height: 157%;
    color: var(--senary-color);
    margin-bottom: 24px;
    opacity: 80%;
}

.story-text p:last-child {
    margin-bottom: 0;
}

/* ==========================
   SIGNATURES
========================== */

.signature-wrapper {
    display: flex;
    gap: 70px;
    margin-top: 35px;
}

.signature-box h4 {
/*     font-family: 'Moralana'; */
    font-family: "Michigan Signature";
	
    font-weight: 600;
    font-size: 40px;
    margin-top: 10px;
    line-height: 126%;
    letter-spacing: 0%;
    color: var(--tertiary-color);
}


/* ==========================
   RIGHT IMAGE
========================== */

.story-image {
    position: relative;
    width: 100%;
}

.circle-image {
    position: relative;
}
.story-image-circle{
    width: 100%;
}
.circle-image img {
    /* width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; */
}


section.service-area-upper img {
    width: 100%;
}

.service-area-upper .service-area-upper-mobile {
    display: none;
}

/* ==========================
   SERVICE AREAS
========================== */

.service-areas {
    position: relative;
    overflow: hidden;
    padding: 50px 0 0px;
}

.service-areas .container {
    max-width: 1140px;
    margin: auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 40px;
}

.service-search {
    width: 708px;
    max-width: 100%;
    margin: 0 auto 60px;
    height: 68px;
    border: 1px solid #ddd;
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 0 12px 0 30px;
    position: relative;
}

.service-search input {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font-secondary);
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0%;
    color: var(--tertiary-color);
}

.service-search button {
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background: #ff7ba2;
}

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

.area-card {
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    background: var(--quaternary-color);
    transition: all 0.4s ease;
}
.area-card:hover {
    background: #ff2f6352;
    box-shadow: 0px 0px 10px #ff2f6352;
    transform: translateY(-10px) !important;
}
.area-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.area-content h3 {
    margin: 0 0 5px;
    color: var(--tertiary-color);
    font-size: 18px;
    font-family: var(--font-primary);
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 113.99999999999999%;
    letter-spacing: 0%;
    vertical-align: middle;

}

.area-content span {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    color: var(--tertiary-color);
    line-height: 140%;
    letter-spacing: 0%;

}

/* .city-bg{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    height:300px;
    opacity:.2;
}

.city-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:300px;
    background:linear-gradient(
        180deg,
        #fff 10%,
        rgba(255,255,255,0) 100%
    );
} */
.service-building {
    position: absolute;
    width: 100%;
    bottom: 0px;
    height: 473px;
    opacity: 60%;
}

.service-building::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 301px;
    background: linear-gradient(180deg, #FFFFFF 15.89%, #ffffffb0 70%, rgb(255 255 255 / 50%) 100%);
    z-index: 1;
}

.service-building img {
    width: 100%;
    display: block;
}

.service-building .building-mobile {
    display: none;
}

.areas-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 50px;

}

.areas-pagination .service-arrow-new {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 28px;
}

.pagination-track-new {
    width: 350px;
    height: 4px;
    background: #eee4db;
}

.pagination-track-new .pagination-active {
    width: 25%;
    height: 100%;
    background: var(--senary-color);
    transition: .3s;
}

.pagination-count-new {
    font-size: 20px;
    font-family: Figtree;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 20px;
    line-height: 136%;
    letter-spacing: 0%;
    vertical-align: middle;

}

.blog-section {
    position: relative;
    background: #FEFCE6;
    border-radius: 80px;
    padding: 110px 20px 0;
/*     margin-top: 100px; */
    margin-bottom: 100px;
    z-index: 4;
}

.blog-container {
    max-width: 1270px;
    margin: 0 auto;
    z-index: 5;
    position: relative;
}

.blog-label {
    display: block;
    text-align: center;
    margin-bottom: 24px;

    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    text-transform: uppercase;
    color:#000000;
}

.blog-heading {
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center;

    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 48px;
    line-height: 114%;
    color: #000000;
}

.blog-heading span {
    color: #FF7BA2;
}

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

.blog-card {
    background: var(--quaternary-color);
    border-radius: 26px;
    overflow: hidden;
    height: 420px;

    box-shadow:
        0px 2.51px 19.57px rgba(0, 0, 0, 0.05);

    display: flex;
    flex-direction: column;
    transition: all 0.4s ease !important;
}

.blog-image {
    display: block;
    height: 206px;
	border-bottom-left-radius:20px;
	border-bottom-right-radius:20px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
		border-bottom-left-radius:12px;
	border-bottom-right-radius:12px;
}

.blog-content {
    padding: 27px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-content h3 {
    margin: 0 0 10px;

    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 18px;
    line-height: 126%;
    color: var(--senary-color)000;
	 display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-content p {
    margin: 0;

    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: var(--senary-color);
    opacity: 80%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-footer {
    margin-top: 18px;

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

    border-top: 0.63px solid #D9D9D9;

    padding-top: 14px;
    position: absolute;
    bottom: 20px;
    /* width: 100%; */
    left: 20px;
    right: 20px;
}

.blog-card:hover {
    transform: translateY(-10px) !important;
}
.blog-date {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 12px;
    line-height: 140%;
    color: var(--senary-color)000;
}

.blog-arrow {
    width: 28.85px;
    height: 28.85px;

    border-radius: 37.63px;

    background: #FF7BA2;

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

    text-decoration: none;
    color: var(--quaternary-color);
    font-size: 14px;

    transition: .3s ease;
}

.blog-arrow:hover {
    transform: translateY(-2px);
}

.blog-btn-wrap {
    text-align: center;
    margin-top: 49px;
}

.blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    border: 1px solid #FF7BA2;
    border-radius: 999px;

    padding: 16px 30px;

    text-decoration: none;

    font-family: var(--font-primary);
    font-size: 18px;
    color: #000000;

    transition: .3s ease;
}

.blog-btn:hover {
    background: #FF7BA2;
	color: #fff;
}


.blog-wave img {
    width: 100%;
    display: block;
}

.blog-wave img {
    /* margin-top: 80px; */
    position: absolute;
    line-height: 0;
    bottom: -165px;
    width: 100%;
    left: 0;
    right: 0;
    height: 300px;
    z-index: 3;
}

.reviews-section {
    padding: 170px 20px 100px;
    background: #fff;
}

.reviews-section .container {
    max-width: 1180px;
    margin: 0 auto;
}

.reviews-heading {
    margin: 0;

    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 48px;
    line-height: 114%;
    text-align: center;
    color: var(--senary-color)000;
}

.reviews-heading span {
    color: #ff3366;
}

.reviews-subtitle {
    max-width: 700px;
    margin: 24px auto 70px;

    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 18px;
    line-height: 148%;
    text-align: center;
    color: var(--senary-color);
    opacity: 80%;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.reviews-slider {
    overflow: hidden;
    width: 100%;
}
.reviews-slider-wrapper .swiper-pagination{
	margin-top:0px !important;
}
.reviews-slider-wrapper .swiper-button-next,
.reviews-slider-wrapper .swiper-button-prev{
	display:none !important;
}

.mobile-reviews-marquee .reviews-bottom {
    margin-top: 30px;
}
.reviews-slider .swiper-slide {
    height: auto;
}

.reviews-slider .review-card {
    height: 100%;
}

.reviews-slider .swiper-button-prev,
.reviews-slider .swiper-button-next {
    color: #000;
}

.reviews-slider .swiper-pagination {
    position: relative;
    margin-top: 24px;
}

.review-card {
    width: 100%;
    min-height: 385px;

    background: #fff;
    border: 1px solid #E2E2E2;
    border-radius: 18px;

    box-shadow: 0 4px 18px rgba(0, 0, 0, .10);

    padding: 36px 32px;

    display: flex;
    flex-direction: column;
}
.review-card:hover {
    background: #ff2f631c;
}

.quote-icon {
    margin-bottom: 22px;
}

.quote-icon img {
    width: 48px;
    display: block;
}

.review-card h3 {
    margin: 0;

    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 24px;
    line-height: 138%;
    color: var(--senary-color);
}

.review-footer {
    margin-top: auto;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.review-author {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 20px;
    line-height: 136%;
    color: var(--senary-color);
}

.review-location {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: #333;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 6px;

    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 136%;
}

.reviewstar {
    color: #ff8a00;
}

.reviews-bottom {
    margin-top: 48px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.reviews-section .cta-wrap {
    margin-top: 32px;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rating-score {
    display: flex;
    align-items: flex-end;
}

.score {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 37.69px;
    line-height: 114%;
    color: #ff7ba2;
}

.outof {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #222;
    margin-left: 4px;
}

.review-rating-text {
    max-width: 258px;

    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 14px;
    line-height: 134%;
    color: var(--tertiary-color);
}

.review-rating-text strong {
    color: #ff7ba2;
}

/* .desktop-reviews{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
} */

.mobile-reviews-marquee {
/*     display: none; */
}

.faq-section {
    padding: 70px 20px 140px;
}

.faq-section .container {
    max-width: 775px;
    margin: 0 auto;
}

.faq-heading {
    max-width: 770px;
    margin: 0 auto 100px;

    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 48px;
    line-height: 114%;
    text-align: center;
    color: var(--tertiary-color);
}

.faq-heading span {
    color: #FF7BA2;
}

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

.faq-item {
    background: #FBFBFB;
    border: 1px solid #E9E9E9;
    border-radius: 24px;
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    min-height: 84px;

    padding: 26px;

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

       background-color: #fbfbfb;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    flex-shrink: 0;

    width: 28px;
    height: 28px;

    border-radius: 53px;

    background: #FF7BA2;

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

    color: #fff;

    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.faq-title {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 20px;
    line-height: 128%;
    color: var(--tertiary-color);
}

/* .faq-content {
    display: none;
    padding: 0 26px 26px 76px;
} */

.faq-content {
    margin: 0;
    display: none;
    padding: 0 26px 26px 76px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    color: var(--tertiary-color);
    opacity: 80%;
}

.faq-item.active {
    background: #FAFAFA;
    border: 1px solid #F6F6F6;

    box-shadow:
        0 60px 80px rgba(0, 0, 0, .06);
}

.faq-item.active .faq-content {
    display: block;
}

.faq-item.active .faq-icon {
    background: transparent;
    color: #FF7BA2;
    font-size: 28px;
}



.footer {
    position: relative;
    background: #FFE4EC;
    border-radius: 60px 60px 0 0;
    padding: 40px 50px 25px;
    margin-top: 100px;
}

/* glow effects */

.footer-hero::before {
    content: '';
    position: absolute;
    width: 892px;
    height: 892px;
    /* left: -190px; */
    top: 459px;
    left: -190px;
    background: #FF3063;
    filter: blur(336px);
    /* opacity: .15; */
}

.footer-hero::after {
    content: '';
    position: absolute;

    width: 892px;
    height: 892px;

    left: -118px;
    top: 219px;

    border-radius: 50%;
    background: var(--senary-color);
    filter: blur(336px);
}

footer.footer::after {
    position: absolute;
    content: "";
    bottom: 0;
	left:0;
    background: linear-gradient(0deg, #FFE4EC 0%, rgba(255, 228, 236, 0) 100%);
    height: 135px;
    width: 100%;
}

/* CTA */

.footer-cta {
    max-width: 1340px;
    margin: -105px auto 95px auto;
    position: relative;
    z-index: 2;
}

.footer-hero {
    position: relative;
    overflow: hidden;
    border-radius: 60px;
}

.footer-hero .footer-cta-desktop {
    width: 100%;
    object-fit: cover;
    display: block;
}

.footer-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, .72) 0%,
            rgba(0, 0, 0, .35) 35%,
            transparent 75%),
        linear-gradient(0deg,
            rgba(255, 48, 99, .55) 0%,
            rgba(255, 48, 99, 0) 40%);
}

.footer-hero-content {
    max-width: 950px;
    padding: 188px 124px 65px;
    position: relative;
    z-index: 3;
}

.footer-hero-content h2 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 48px;
    line-height: 114%;
    color: #fff;
    margin: 0 0 25px;
}

.footer-hero-content p {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 18px;
    line-height: 148%;
    color: #fff;
    margin: 0 0 34px;
    opacity: 80%;
    max-width: 507px;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-rating img {
    height: 32px;
    width: auto;
}

.hero-rating span {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    color: #fff;
}

/* cream bar */

.footer-service-bar {
    background: #FEFCE6;
    border-radius: 0 0 60px 60px;
    display: grid;
    grid-template-columns: 280px 1fr 295px;
    align-items: center;
    margin-top: -54px;
    gap: 50px;
    padding: 102px 47px 48px;
}

.service-heading {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 26px;
    line-height: 114%;
    color: var(--tertiary-color);
}

.service-text {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 16px;
    line-height: 148%;
    color: #323232;
}

.service-btn {
    width: 295px;
    height: 60px;

    border-radius: 60px;

    background: #FF3063;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    color: #fff;
    text-decoration: none;

    font-family: var(--font-secondary);
    font-weight: 700;
}

/* footer content */

.footer-content {
    position: relative;
    z-index: 2;

    max-width: 1340px;
    margin: 0 auto 140px auto;
}

.footer-logo-wrap {
    margin-bottom: 55px;
}

.footer-logo-wrap img {
    width: 383px;
}

.footer-links {
    display: grid;
    grid-template-columns:
        140px 280px 220px 220px;

    justify-content: space-between;
}

.footer-col h4 {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 16px;
    line-height: 148%;
    text-transform: uppercase;
    opacity: 68%;
    color: #000;

    margin: 0 0 22px;
}

.quick-links a,
.our-services a {
    opacity: 80%;
    color: #000;
    margin-bottom: 10px;
}

.footer-col a,
.footer-col p {
    display: block;

    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 16px;
    line-height: 190%;
    opacity: 80%;
    color: #000;
    text-decoration: none;
}

.phone-link {
    font-family: var(--font-primary) !important;
    text-decoration: underline !important;
    color: #FF7BA2 !important;
    opacity: 100% !important;
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.email_envelope {
    display: flex !important;
    gap: 10px;
    align-items: center;
}

p.business-days span {
    display: flex;
    gap: 7px;
    align-items: center;
}

.business-days span a {
    text-decoration: underline;
    color: #FF7BA2;
}

.location-space {
    margin-top: 28px !important;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.social-icons a {
    width: 36px;
    height: 36px;

    border-radius: 47px;
    background: #FF7BA2;

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

    color: #fff;
}

/* charity logo */

.charity-logo {
    text-align: right;
    margin-top: 35px;
}

.charity-logo img {
    width: 220px;
}

/* watermark */

.footer-watermark img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
    height: 250px;
}

/* bottom */

.footer-bottom {
    position: relative;
    z-index: 2;

    max-width: 1340px;
    margin: 40px auto 0;

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

.footer-bottom-links a {
    margin-right: 18px;

    color: #000;

    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 14px;

    text-decoration: underline;
}

.copyright {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 14px;
    line-height: 148%;
    color: #000;
}

.footer-cta-mobile {
    display: none;
}


/* Mega Menu */
.services-mega-menu,
.locations-mega-menu{
    position:absolute;
    top: 150%;
    left: 50%;
    transform: translateX(-50%);
    width: 1440px;
	max-width:100%;
    background:#fff;
    border-radius:28px;
    display:none;
    box-shadow:0 30px 80px rgba(0,0,0,.12);
    z-index:999;
	justify-content:center;
}

.services-mega-menu.active,
.locations-mega-menu.active{
    display:flex;
}

/* NOTE: removed the second, conflicting ".locations-mega-menu"
   block that redeclared position/top/left/z-index — it was
   overriding the shared rule above and fighting with it.
   Removed the ".menu-item-locations:hover / .is-open" CSS-only
   trigger too, since visibility is now controlled entirely by
   JS toggling the .active class (one source of truth). */

/* .service_tilt {
left: 45%;
    transform: translateX(-45%);
    position: absolute;
    top: -16px;
} */
.main-menu .our-services-trigger,
.main-menu .our-locations-trigger {
    position: relative;
}
.about-us-trigger {
    position: relative;
}
.about-us-trigger::after{
    content: "";
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
   bottom: -52px;
    width: 200px;
    height: 100%;
    background: url("https://wordpress.shekharhans.com/wp-content/uploads/2026/07/Subtract.svg") no-repeat center;
    background-size: contain;
    z-index: 1000;
}
/* .about-us-trigger::after{
    display: block;
} */
.about-us-trigger:hover::after{
	display:block;
}

.main-menu .our-services-trigger::after,
.main-menu .our-locations-trigger::after{
    content: "";
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
   bottom: -52px;
    width: 200px;
    height: 100%;
    background: url("https://wordpress.shekharhans.com/wp-content/uploads/2026/07/Subtract.svg") no-repeat center;
    background-size: contain;
    z-index: 1000;
}

.main-menu .our-services-trigger.active::after,
.main-menu .our-locations-trigger.active::after{
    display: block;
}
/*==========================
LEFT
==========================*/


.services-left,
.locations-left{
       width: 35%;
    padding: 30px;
    background: #fff;
		    border-radius: 15px 0px 0px 40px
}

.service-item{
	padding:22px 28px !important;
	height: auto !important
}
.service-item,
.location-tab{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 92px;
    margin-bottom: 16px;
    padding: 0 28px;
    border-radius: 60px;
    overflow: hidden;
    text-decoration: none;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    box-shadow: 0 6px 20px rgba(0,0,0,.06);
}
.service-item::before,
.location-tab::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, rgba(251, 251, 251, 1) 0%, rgba(251, 251, 251, 1) 50%, rgb(251 251 251 / 25%) 100%);
    z-index:1;
}

.service-item:hover,
.service-item.active{
    background:#ff005d;
	background-repeat: no-repeat;
    background-size: cover;
    background-position: right;

}

.service-left-content,
.location-tab-content{

    display:flex;

    align-items:center;

    gap:18px;


    position:relative;

    z-index:5;

}

.service-icon{

    width:38px;

    height:38px;

    object-fit:contain;

}

.service-left-content span{

    font-family:Fraunces;

    font-size:20px;

    color:#222;

}

.service-item.active .service-left-content span{

    text-decoration:underline;

}

.service-thumb{

    width:48%;

    height:100%;

    position:absolute;

    right:0;

    top:0;

}

.service-thumb img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.service-thumb:before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(90deg,#fff 0%,rgba(255,255,255,.9) 30%,rgba(255,255,255,0) 100%);

}

/*==========================
ARROW
==========================*/

.service-arrow{

    width:52px;

    height:52px;

    border-radius:50%;

    background:#ff4c8b;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    position:absolute;
    bottom: 50%;
    transform: translateY(50%);
    right:18px;

    opacity:0;

    transition:.3s;

    z-index:10;

}

.service-item:hover .service-arrow,
.service-item.active .service-arrow{

    opacity:1;

}

/*==========================
RIGHT
==========================*/

.services-right,
.locations-right{
    width: 65%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
	    border-radius: 0 15px 40px 0px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;


}

.service-content{

    width:45%;

    position:relative;

    z-index:2;

}
.service-content-menu {
    position: absolute;
    right: 34px;
}
.service-right .service-content{
	display: flex;
	align-items:center;
	justify-content:center;
		flex-direction:row !important;
	background:none !important;
}
.service-content-menu a {
    background: #FF3063;
    color: #FFFCFD;
    font-size: 18px;
    font-family: 'Figtree';
}
.service-content-menu p {
    font-size: 18px;
    font-family: 'Figtree';
    color: #121410;
    opacity: 80%;
    margin-top: 24px;
    margin-bottom: 31px;
    max-width: 323px;
}
.service-content-menu h2{
    font-size: 31px;
    font-family: 'Fraunces';
    max-width: 323px;
}
.location-tab-content span{
    font-size: 20px;
    font-family: 'Fraunces';
}
.service-badge {
    display: block;
    color: #F52F5F;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    font-family: 'Montserrat';
    margin-bottom: 20px;
}

.mega-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:54px;

    padding:0 34px;

    background:#ff3f82;

    color:#fff;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

}

.mega-btn:hover{

    background:#222;

    color:#fff;

}

/*==========================
LOCATIONS (shared desktop + mobile)
==========================*/
.locations-mega-menu {
	    align-items: flex-start;
}
.locations-mega-menu .service_tilt {
    position: absolute;
    top: -17px;
       left: 68% !important;
    transform: translateX(-68%) !important;
}
.locations-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.location-tab {
        background-size: cover;
    background-position: center;
    cursor: pointer;
    border-radius: 12px;
    padding: 32px;
    height: 150px;
	display: flex;
    justify-content: left;
    align-items: end;

}
.locations-right{
	padding: 30px 30px 30px 10px
}
.location-tab.active {
    border: 1px solid #ff3063 !important;
}
.location-tab.active .location-tab::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #ff306321 !important;
    z-index: 1;
}
.location-tab:hover .location-tab::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #ff306321 !important;
    z-index: 1;
}
.location-panel { display: none; }
.location-panel.active { display: block; }
.location-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 30px;
}
.location-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}
.location-item img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

section.get-quote-section {
    padding: 90px 20px;
}
p.section-subtitle {
    margin: 0 auto 45px auto;
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 18px;
    max-width: 700px;
    text-align: center;
    line-height: 170%;
    color: var(--senary-color);
    opacity: 80% !important;
}
.woman img {
    position: absolute;
    width: 100%;
    height: 450px;
    bottom: 0px;
    object-fit: contain;
    left: -23%;
}


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

@media(max-width:1200px){

.services-mega-menu,
.locations-mega-menu{

    width:95%;

}

}

@media(max-width:991px){


.services-left,
.locations-left{
    width:100%;
	padding:0px;
}

.services-right{
    width:100%;
    min-height:280px;
    border-radius:35px;
}
	.service-item{
    height:78px;
    margin-bottom:14px;
    border-radius:40px;
    background-size:contain;
    background-position:right center;
}

.service-left-content{
    padding-left:20px;
    gap:14px;
}

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

.service-left-content span{
    font-size:18px;
}

.service-arrow{
    width:44px;
    height:44px;
    right:14px;
    opacity:1; /* always visible on mobile */
}
.services-right {
        background-repeat: no-repeat;
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: end;
        padding: 0px;
        position: absolute;
        width: 100%;
        max-width: 100%;
        left: 0px;
        right: 0px;
    }
.service-content-menu {
        position: relative;
       right: 3px;
        max-width: 200px;
    }

.service-content-menu h2{
            font-size: 18px;
        line-height: 1.1;
}
	.service-badge{
		font-size:10px;
	}
.service-content-menu p{
        font-size: 12px;
        margin-top: 10px;
        margin-bottom: 10px;
}

.mega-btn{
    margin-top:10px;
	height: 34px;
}

.mobile-nav > ul{
    display:none;
}

.main-nav .services-mega-menu,
.main-nav .locations-mega-menu{
    display:none !important;
}

/* Mobile Services panel */
.mobile-services-menu{
    display:none;
    position:static;
    transform:none;
    width:100%;
    box-shadow:none;
    border-radius:0;
    background:#fff;
}

.mobile-services-menu.active{
    display:block;
}

/* Mobile Locations panel — mirrors Services so both behave the same way
   (this was missing before, so the locations panel had no proper
   mobile layout of its own). */
.mobile-locations-menu{
    display:none;
    position:static;
    transform:none;
    width:100%;
    box-shadow:none;
    border-radius:0;
    background:#fff;
}

.mobile-locations-menu.active{
    display:block;
}

.mobile-menu-main.hide{
    display:none;
}

.services-back,
.locations-back{
    width:100%;
    border:none;
    background:none;
    font-size:20px;
    font-weight:600;
    padding:20px;
    text-align:left;
    cursor:pointer;
}
	.service-content-menu a{
		font-size:14px
	}
	.location-tab {
    padding: 16px 12px;
    width: 100%;
		height:100px;
	}
	.locations-left{
		flex-direction:row;
	}
	.locations-right{
		width:100%;
	}
	.woman img{
		height:220px;
	}
	/* Top Left */

.ellipse-left {
    width: 860px;
    height: 860px;
    left: -184px;
    top: 0;
    background:
        radial-gradient(28.02% 28.02% at 41.34% 55.81%,
            #ffffff 0%,
            rgba(255, 255, 255, 0) 100%);
    filter: blur(140px);
}

/* Top Center */

.ellipse-center {
    width: 860px;
    height: 860px;
    left: 218px;
    top: -20px;
    background:
        radial-gradient(28.02% 28.02% at 41.34% 55.81%,
            #ffffff 0%,
            rgba(255, 255, 255, 0) 100%);
    filter: blur(140px);
}
}
/*==========================================
ABOUT US MEGA MENU
==========================================*/

/* .main-nav{
    position:relative;
} */

.about-mega-menu{
    position:absolute;
    top: 150%;
    left: 50%;
    transform: translateX(-50%);
    width: 1440px;
	max-width:100%;
    background:#fff;
    border-radius:28px;
    display:none;
	padding: 37px 32px;
    box-shadow:0 30px 80px rgba(0,0,0,.12);
    z-index:999;
	justify-content:center;
}

/* Show Mega Menu */

.about-mega-menu.active{
    display:flex;
/*     visibility:visible;
    transform:translateX(-50%) translateY(0); */
}

/*==================================
LEFT IMAGE
==================================*/

.about-left{
    width:39%;
    border-radius:22px;
    overflow:hidden;
}

/* .about-left img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
} */
.about-left img {
    /* width: 100%; */
    height: 100%;
    display: block;
    position: absolute;
    object-fit: cover;
    bottom: 0px;
	    margin-right: 60px;
    padding-right: 60px;
    border-right: 1px solid #F4F4F4;
}


/*==================================
CENTER LINKS
==================================*/

.about-center{
    width:33%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:12px;
	padding-left: 90px;
    padding-right: 40px;
}

.about-center a{
     display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    text-decoration: none;
    color: #161616;
    font-size: 18px;
    font-weight: 400;
    border-radius: 18px;
    transition: .3s;
}

.about-center a span{
    opacity:0;
    transition:.3s;
}

.about-center a:hover{
    background:#FFEAF2;
    color:#FF4E8B;
	text-decoration:underline;
}

.about-center a:hover span{
    opacity:1;
}

.about-center a.active{
    background:#FFEAF2;
    color:#FF4E8B;
}

.about-center a.active span{
    opacity:1;
}

/*==================================
RIGHT CARD
==================================*/

.about-right{
    width:35%;
    background:#FFF5F8;
    border-radius:22px;
    padding:35px;
	    margin-top: 10px;
    display:flex;
    flex-direction:column;
    justify-content:end;
	    min-height: 245px;
	position:relative;
}

.about-right img{
 width: 190px;
    position: absolute;
    top: -32px;
    right: 0px;
}

.about-right h3 {
    font-size: 22px;
    line-height: 1.2;
    margin: 0 0 12px;
    font-family: 'Fraunces';
    font-weight: 500;
}
.about-right p {
    color: #121410;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 500;
    font-family: 'Figtree';
    opacity: 80%;
}

.about-btn{
       display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    border-radius: 40px;
    background: none;
    color: #FF3063 !important;
    text-decoration: none;
    transition: .3s;
    width: max-content;
}
a.about-btn:hover {
    background: none;
    color: #000000 !important;
}

/*==================================
MENU ITEM
==================================*/

.main-menu>li{
    position:relative;
}

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

@media(max-width:1200px){

.about-mega-menu{

width:95%;

}
	.about-left img{
		height:75%;
	}
}

@media(max-width:991px){

.about-mega-menu{

display:none;

}


    .mobile-about-menu {

     position: absolute;
    top: 0;
    right: -100%;
		display: none!important;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    overflow-y: scroll;
    background: #fff;
    padding: 60px 30px 40px;
    transition: .4s ease;
    z-index: 99999;
    display: flex;
    flex-direction: column;
	}

.mobile-about-menu.active{

right:0;
	display:block !important;

}

.about-mobile-header{

display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:28px;

}

.about-mobile-logo img{

height:55px;

}

.about-close{

width:42px;
height:42px;
border-radius:50%;
border:none;
background:#F5F5F5;
font-size:22px;
cursor:pointer;

}

.about-mobile-links{

display:flex;
flex-direction:column;
gap:12px;

}

.about-mobile-link{

display:flex;
justify-content:space-between;
align-items:center;
padding:18px 20px;
border-radius:18px;
text-decoration:none;
font-size:24px;
font-family:Fraunces;
font-weight:500;
color:#111;

}

.about-mobile-link:hover{

background:#FFF0F5;
color:#FF3E74;

}

.about-mobile-image{

margin:0px 0;

}

.about-mobile-image img{

width:100%;
display:block;
border-radius:20px;

}

.about-mobile-card{

background:#FFF5F7;
border-radius:24px;
padding:26px;
position:relative;

}

.card-ribbon{

width: 130px;
        position: absolute;
        right: 0px;
        top: -22px;
}

.about-mobile-card h3{

font-size:22px;
font-family:Fraunces;
margin:0 0 14px;
	max-width:200px

}

.about-mobile-card p{

font-size:16px;
	font-family: "Figtree";
line-height:1.7;
margin-bottom:22px;
	max-width:200px;

}

.about-card-btn{

display:inline-flex;
align-items:center;
gap:8px;
color:#FF3366 !important;
font-weight:700;
text-decoration:none;

}

.about-card-btn:after{

content:"→";

}
body.menu-open{
    overflow:hidden;
}
}

.join-team-hero {
  position: relative;
  width: 100%;
  min-height: 750px ;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 24px 0;
  overflow: hidden;
  border-radius: 4px;
}

.join-team-hero__content {
  max-width: 780px;
  text-align: center;
  z-index: 2;
}

.join-team-hero__heading {
  font-family: 'Fraunces';
  font-weight: 700;
  font-size: 62px;
  line-height: 1.25;
  margin: 0;
}

.join-team-hero__heading-black {
  display: block;
  color: #121410;
}

.join-team-hero__heading-pink {
  display: block;
  color: #FF3063;
}
.positions-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 150px 24px;
}

.positions-section__eyebrow {
      color: #000;
    margin: 0 0 12px;
    font-family: Montserrat;
    font-weight: 700;
    margin-bottom: 32px;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: uppercase;

}

.positions-section__heading {
     margin: 0 0 64px;
    font-family: Fraunces;
    font-weight: 600;
    font-size: 48px;
    line-height: 113.99999999999999%;
    letter-spacing: 0%;
    vertical-align: middle;
}

.positions-section__heading-black {
  color: #121410;
}

.positions-section__heading-pink {
  color: #FF3063;
}

.positions-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #e6e6e6;
}

.positions-list__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 35px 12px;
    border-left: 0px;
    border-right: 0px;
    border-top: 1px solid #00000057;
    /* border-style: solid; */
    /* border-color: #00000057; */
    border-bottom: 1px solid #00000057;
}


.positions-list__title,
.positions-list__title-link {
    font-family: Fraunces;
    font-weight: 600;
    font-size: 22px;
    color: #161616;
    line-height: 126%;
    letter-spacing: 0%;
    text-decoration: none;
}

.positions-list__title-link:hover .positions-list__title {
  text-decoration: underline;
}

.positions-list__tags {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.positions-list__tag
 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    font-family: Montserrat;
    font-weight: 500;
    line-height: 100%;
    font-size: 18px;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: capitalize;
    color: #1a1a1a;
    border: 1px solid #000000;
    white-space: nowrap;
}

@media (max-width: 640px) {
  .positions-list__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .positions-list__tags {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .join-team-hero {
    min-height: 800px;
    padding-top: 40px;
  }
	.join-team-hero__heading{
		    font-size: 40px;
	}
	.positions-section{
		    padding: 60px 24px;
	}
	.positions-section__eyebrow{
		font-size:16px;
	}
	.positions-section__heading{
		margin: 0 0 44px;
    font-size: 32px;
	}
	.positions-list__title, .positions-list__title-link{
		font-size: 19px;
	}
	.core-values-section{
		    padding: 20px 24px;
	}
	.core-values-section__heading{
    font-size: 32px;
	}
	    .core-values-grid__item {
        gap: 16px;
        flex-direction: column;
        justify-content: center;
    }
	.core-values-grid__content{
		text-align: center;
	}
}
.core-values-section {
  max-width: 1096px;
  margin: 0 auto;
  padding: 60px 24px;
}

.core-values-section__heading {
      font-family: 'Fraunces';
    font-weight: 700;
    font-size: 48px;
    line-height: 113.99999999999999%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    margin: 0 0 65px;
}

.core-values-section__heading-black {
  color: #1a1a1a;
}

.core-values-section__heading-pink {
  color: #e8447a;
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 100px;
  row-gap: 74px;
}

.core-values-grid__item {
  display: flex;
  align-items: center;
  gap: 24px;
}

.core-values-grid__icon {
  flex-shrink: 0;
  width: 168px;
  height: 168px;
}

.core-values-grid__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.core-values-grid__content {
  padding-top: 4px;
}

.core-values-grid__title {
     color: #161616;
    margin: 0 0 18px;
    font-family: Fraunces;
    font-weight: 600;
    font-size: 24px;
    line-height: 126%;
    letter-spacing: 0%;
}

.core-values-grid__description {
     color: #161616;
    margin: 0;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 18px;
    opacity: 80%;
    line-height: 140%;
    letter-spacing: 0%;
}

@media (max-width: 768px) {
  .core-values-grid {
    grid-template-columns: 1fr;
    row-gap: 50px;
  }

  .core-values-grid__icon {
    width: 110px;
    height: 110px;
  }
	.core-values-grid__title{
		    font-size: 20px;
	}
	.core-values-grid__description{
		font-size:17px;
	}
	.team-culture-section{
		padding:70px 24px;
	}
	.team-culture-section__heading{
		    font-size: 32px;   
		margin: 0 0 50px;
	}
	.team-culture-section__image img{
		    height: 300px;
	}
	.team-culture-section__image{
	    margin-bottom: 40px;
}
	.team-culture-points__title{
		font-size:21px;
	}
	.team-culture-points__description{
		font-size:17px;
	}
	.team-culture-points{
		gap:50px
	}
	.meet-team-section {
    padding: 30px 0 100px;
	}
	.meet-team-section__heading{
		    margin: 0 0 40px;
		    font-size: 32px;
	}
}

@media (max-width: 480px) {
  .core-values-grid__item {
    gap: 16px;
  }
}

.team-culture-section {
  max-width: 1230px;
  margin: 0 auto;
  padding: 100px 24px;
}

.team-culture-section__heading {
     font-family: Fraunces;
    font-weight: 700;
    font-size: 48px;
    line-height: 113.99999999999999%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    margin: 0 0 79px;
}

.team-culture-section__heading-black {
  color: #000001;
}

.team-culture-section__heading-pink {
  color: #FF3063
}

.team-culture-section__image {
      border-radius: 32px;
    overflow: hidden;
    margin-bottom: 79px;
}

.team-culture-section__image img {
width: 100%;
    height: 720px;
    display: block;
    object-fit: cover;
}

.team-culture-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.team-culture-points__title {
    color: #161616;
    font-family: Fraunces;
    font-weight: 600;
    font-size: 24px;
    line-height: 126%;
    letter-spacing: 0%;
    text-align: center;
    margin: 0 0 18px;
}

.team-culture-points__description {
     color: #161616;
    margin: 0;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    opacity: 80%;
    letter-spacing: 0%;
    text-align: center;
    max-width: 380px;
    margin-inline: auto;
}

@media (max-width: 900px) {
  .team-culture-points {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .team-culture-points__description {
    max-width: 100%;
  }
}

/* Meet Slider */
.meet-team-section {
padding: 60px 0 200px;
  overflow: hidden;
}

.meet-team-section__heading {
      margin: 0 0 80px;
    padding: 0 24px;
    font-family: Fraunces;
    font-weight: 700;
    font-style: Bold;
    font-size: 48px;
    line-height: 113.99999999999999%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
}

.meet-team-section__heading-black {
  color: #000001;
}

.meet-team-section__heading-pink {
  color: #FF3063;
}

/* ---------- Slider ---------- */
.meet-team-slider {
  width: 100%;
  overflow: hidden;
}

.meet-team-slider__track {
  display: flex;
  width: max-content;
  animation: meet-team-scroll 30s linear infinite;
  will-change: transform;
	gap:6px;
}

.meet-team-slider:hover .meet-team-slider__track {
  animation-play-state: paused;
}

.meet-team-slider__item {
  flex: 0 0 auto;
     width: 346px;
    height: 318px;
  /* no margin, no gap — images sit flush against each other */
}

.meet-team-slider__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes meet-team-scroll {
  from {
    transform: translateX(0);
  }
  to {
    /* moves left by exactly one full image set's width —
       since set #2 is an identical copy of set #1, the reset
       to 0% is visually indistinguishable from the frame before it */
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .meet-team-slider__item {
    width: 200px;
    height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .meet-team-slider__track {
    animation: none;
  }
}