/*
Theme Name: Blocks Child
Theme URI: https://www.carbongroup.in/
Author: Unity Clinic.
Author URI: https://www.carbongroup.in/
Description: Gutenberg Compatible theme for PixelKiosk
Version: 0.0.1
License: GNU General Public License v2 or later
License URI: LICENSE
Template: core-blocks

*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Sora:wght@100..800&display=swap');

:root {
    /* ================= Custom Colors ================= */
    --primary-hover-color: color-mix(in srgb, var(--primary-color) 85%, #ffffff 15%);
    --secondary-hover-color: color-mix(in srgb, var(--secondary-color) 85%, #ffffff 15%);
    --accent-hover-color: color-mix(in srgb, var(--accent-color) 85%, #ffffff 15%);
    --tertiary-hover-color: color-mix(in srgb, var(--tertiary-color) 85%, #ffffff 15%);
    --primary-color: #597c8d;
    --secondary-color: #9c4e2d;
    --accent-color: #656e56;
    --tertiary-color: #edebdf;
    --quaternary-color: #323a44;

    /* ================= Container Width ================= */
    --container-small: 1112px;
    --container-default: 1356px;
    --container-large: 1588px;
    --container-edge: 100%;
    --header-offset: 96px;

    /* ================= Fonts ================= */
    --body-font: "Sora", Arial, Helvetica, sans-serif;
    --heading-font: "Playfair Display", Arial, Helvetica, sans-serif;
    --subheading-font: "Sora", Arial, Helvetica, sans-serif;


    /* ================= Typography Scale ================= */
    /* Body */
    --fs-body: clamp(14px, 1vw, 18px);
    --lh-body: clamp(24px, 1.6vw, 36px);

    /* Subtitle */
    --fs-subtitle: clamp(18px, 1.4vw, 24px);
    --lh-subtitle: clamp(26px, 1.8vw, 34px);

    /* Section Title (H2) */
    --fs-title: clamp(28px, 3.2vw, 48px);
    --lh-title: clamp(36px, 3.6vw, 64px);

    /* Button / small headings */
    --fs-btn: clamp(16px, 1.1vw, 20px);
    --lh-btn: clamp(22px, 1.6vw, 30px);

    /* Medium Title */
    --fs-medium: clamp(18px, 2vw, 32px);
    --lh-medium: clamp(26px, 2.4vw, 42px);

    /* ================= Spacing Scale ================= */
    --space-xs: 10px;
    --space-sm: 20px;
    --space-md: clamp(30px, 3vw, 40px);
    --space-lg: clamp(40px, 5vw, 80px);

    /* ================= Motion System ================= */
    --ease-standard: cubic-bezier(.4, 0, .2, 1);
    --ease-smooth: cubic-bezier(.22, 1, .36, 1);
    --transition-fast: 0.2s var(--ease-standard);
    --transition-medium: 0.35s var(--ease-smooth);
    --transition-slow: 0.6s var(--ease-smooth);

    /* Legacy token aliases used by existing selectors */
    --font-body: var(--body-font);
    --body-size: var(--fs-body);
    --color-text-light: var(--light-text-color);
    --text-dark: var(--dark-text-color);
    --light-color-color: var(--light-text-color);
    --dark-color: var(--dark-text-color);
    --border-radius: 0px;

}


/* Global Box Sizing & Tap Highlight Removal */
*,
*::before,
*::after {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -moz-tap-highlight-color: transparent;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-family: "Sora", sans-serif;
    scroll-behavior: smooth;
}

/* Global Body Styling */
body {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    color: var(--dark-text-color);
    font-family: var(--body-font);
    font-size: 18px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary {
    display: block
}

audio,canvas,progress,video {
    vertical-align: baseline;
    display: inline-block
}

audio:not([controls]) {
    height: 0;
    display: none
}

[hidden],template {
    display: none
}


/* Structural Elements */
header, footer, main, section, article {
    container-type: inline-size;
}

h1.section-heading,
.section-heading h2 {
    font-family: var(--heading-font);
    font-size: clamp(48px, 6vw, 85px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1.5px;
    word-spacing: 2px;
    display: inline;
}

p, li {
    font-size: var(--body-size);
    font-weight: 400;
    line-height: 1.5;
    color: inherit;
    font-family: var(--body-font);
    text-wrap: pretty;
}

p:empty {
    display: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3{
    text-wrap: balance;
}

/* Spacing Utilities */
.p0{
    padding: 0 !important;
}
.ptb-0 {
    padding-block: 0;
}

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

.pb-0 {
    padding-bottom: 0;
}

.ptb-l {
    padding-block: clamp(100px, 12vw, 150px);
}

.pt-l {
    padding-top: clamp(100px, 12vw, 150px);
}

.pb-l {
    padding-bottom: clamp(100px, 12vw, 150px);
}

.ptb-m {
    padding-block: clamp(60px, 8vw, 100px);
}

.pt-m {
    padding-top: clamp(60px, 8vw, 100px);
}

.pb-m {
    padding-bottom: clamp(60px, 8vw, 100px);
}

.ptb-s {
    padding-block: clamp(30px, 5vw, 50px);
}

.pt-s {
    padding-top: clamp(30px, 5vw, 50px);
}

.pb-s {
    padding-bottom: clamp(30px, 5vw, 50px);
}

.mtb-0 {
    margin-block: 0;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

/* Container */
.container {
    width: 90vw;
    max-width: var(--container-large);
    padding-inline: clamp(1rem, 2vw, 2rem);
    margin-inline: auto;
    margin: 0 auto !important;
    padding: 0 20px;
}

.container-small{
    width: 60vw;
}

/* Background Colors */
.light-bg {
    background-color: var(--light-bg-color);
}

/* Text Alignment */
.center-text {
    text-align: center;
}

/* Colors */
.text-color-dark {
    color: var(--dark-text-color);
}

.text-color-light {
    color: var(--light-text-color);
}

.primary-color {
    color: var(--primary-color);
}

.secondary-color {
    color: var(--secondary-color);
}

.accent-color {
    color: var(--accent-color);
}

.bg-primary {
    background-color: var(--primary-color);
}

.bg-secondary {
    background-color: var(--secondary-color);
}

.bg-accent {
    background-color: var(--accent-color);
}

.bg-quaternary {
    background-color: var(--quaternary-color);
}

.bg-tertiary {
    background-color: var(--tertiary-color);
}

.bg-secondary-light {
    background-color: rgba(227, 231, 255, 0.34);
}


/* Button Styles */
.btn-primary a,
.btn-secondary a,
.btn-accent a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary a {
    background: var(--primary-color);
    color: #fff;
}

.btn-primary a:hover,
.btn-primary a:focus-visible {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-secondary a {
    background: var(--secondary-color);
    color: #fff;
}

.btn-accent a {
    background: var(--accent-color);
    color: var(--primary-color);
}

.btn-accent a:hover,
.btn-accent a:focus-visible {
    background-color: var(--primary-color);
    color: #fff;
}

/* Streamline Button */
a.streamline-button,
.cta-type-1 a.streamline-button {
    position: relative;
    padding-right: 3rem;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
}

.cta-type-1 a.streamline-button {
    border: 2px solid #fff;
    color: #fff;
    width: 248px;
    height: 64px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
}

a.streamline-button::after,
.cta-type-1 a.streamline-button::after {
    content: "";
    background: url(assets/images/CTA-arrow.svg) no-repeat;
    width: 33px;
    height: 24px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-size: contain;
    transition: all 0.5s ease;
}

.cta-type-1 a.streamline-button:hover{
    background-color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

header .header-cta a.streamline-link:hover:after,
.cta-type-1 a.streamline-button:hover:after {
    right: 10px;
}

.forminator-ui.forminator-design--default .forminator-button-submit {
    background: var(--secondary-color) !important;
    font-family: var(--body-font);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px 58px !important;
    box-shadow: none !important;
}


.scroll-down {
    position: relative;
    bottom: 30px;
    left: 50%;
    z-index: 1;
    width: 22px;
    height: 22px;
    transform: translateX(-50%);
}

.scroll-down:before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    background: url(/wp-content/uploads/2024/12/banner-arrow-down.png) no-repeat;
    color: #fff;
    width: 22px;
    height: 22px;
    background-size: contain;
    animation: bounce 2s ease infinite;
}

/* === FLEXIBLE COLUMN SYSTEM === */
.flex-section {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, 2vw, 2rem);
}

.flex-col-2 > * {
    flex: 1 1 calc(50% - 2rem);
}

.flex-col-3 > * {
    flex: 1 1 calc(33.33% - 2rem);
}

/* === FULL WIDTH WRAPPERS === */
.full-width-wrap {
    width: 100%;
    padding: clamp(60px, 8vw, 100px) 0;
}

.full-bg-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


/* -----------------------------
         SHAPES
----------------------------- */

.shapes-wrap .container {
    position: relative;
}

.section-corner-lt {
    border-top-left-radius: clamp(150px, 5vw, 250px);
    /* Min: 100px, scales with 5vw, Max: 200px */
}

.section-corner-rt {
    border-top-right-radius: clamp(150px, 5vw, 250px);
}

/* -----------------------------
             COMMON STYLE
----------------------------- */
.hero-pattern{
    position: relative !important;
    background-color: transparent !important;
}
.hero-pattern::before{
    content: "" !important;
    position: absolute;
    top: 0px;
    left: auto !important;
    right: 0;
    background-color: transparent !important;
    background: url(assets/images/hero-pattern.svg) no-repeat;
    background-position: bottom center;
    width: 50%;
    max-width: 864px;
    height: 290px;  
}
.inner-hero{
    padding: 100px 0 !important;
}

.inner-hero h1{
    font-family: var(--heading-font);
    font-size: clamp(48px, 6vw, 85px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1.5px;
    word-spacing: 2px;
    display: inline;
}
.inner-hero h1 em{
    font-style: italic;
}
.inner-hero-wrap {
    max-width: 55%;
}
.inner-hero .sub-title p{
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================
   Core Blocks Typography
   ================================ */
/* Block Title */
.block-title,
.block-title span {
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: var(--fs-title);
    line-height: var(--lh-title);
    letter-spacing: 0;
    text-transform: capitalize;
    margin: 0 0 20px;
    color: var(--primary-color);
}

/* Subtitle (Generic + Blog Subtitle Shared Style) */
.block-subtitle,
.blog-block-subtitle {
    font-family: var(--subheading-font);
    font-weight: 600;
    font-size: var(--fs-subtitle);
    line-height: var(--lh-subtitle);
    letter-spacing: var(--ls-subtitle);
    text-transform: capitalize;
    margin-bottom: 20px;
    color:var(--secondary-color);
}

/* Paragraph Wrapper */
.block-paragraphs,
.block-paragraphs p,
.block-paragraphs li {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    letter-spacing: 0;
    text-wrap: pretty;
    margin-bottom: 20px;
}

.block-paragraphs ul li{
    margin-bottom: 10px;
    position: relative;
    padding-left: 24px;
}

.block-paragraphs ul li:before{
    content: "";
    width: 14px;
    height: 14px;
    position: absolute;
    left: 0;
    top: 5px;
    background: url(assets/images/bullet-pointer.png) no-repeat;
    background-size: contain;
}



/* -----------------------------
             HEADER
----------------------------- */
header.header {
    position: relative;
    z-index: 9999;
}

header.header.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header.header-1.fixed::before {
    background-color: #ffffff;
}

.header-menu ul.menu>li>a {
  display: block;
  padding: 26px 14px;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--primary-color);
  transition: color 0.3s;
  font-family: var(--body-font);
}

.header-menu ul.menu>li.current-menu-item>a,
.header-menu ul.menu>li:hover>a {
  color: var(--primary-color);
}

.header-menu ul.menu>li:hover>a{
  color: var(--primary-color);
}

header>.wp-block-streamline-columns {
    margin-bottom: 0;
}

header .logo-wrap {
    max-width: 280px;
}

header .header-logo {
    width: 224px;
    height: 72px;
    display: flex;
    align-items: center;
}

header .header-logo a {
    display: flex;
}

header.header-1.fixed .header-logo{
    align-content: center;
}

header.header-1.fixed .header-logo a.main-logo {
    display: flex;
    align-items: center;
}

header .header-cta-wrap {
    max-width: 300px;
}

header .header-cta a.streamline-link {
    background-color: var(--accent-color) !important;
    color: #fff;
    min-width: 220px;
    height: 56px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.5s ease;
}

header .header-cta a.streamline-link:hover{
    background-color: var(--secondary-color) !important;
}

.header-menu {
    position: relative;
}

.header-menu ul#menu-main-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    margin: 0;
    position: relative;
    padding-left: 0;
    justify-content: end;
}

.header-menu ul#menu-main-menu li.menu-item {
    position: relative;
    padding: 10px 0px;
}

.header-menu ul#menu-main-menu li.menu-item a {
    color: var(--light-color);
    text-transform: uppercase;
    position: relative;
    text-decoration: none;
    padding: 10px 15px 7px;
    border-radius: 10px;
    transition: all 0.5s ease;
    font-weight: 500;
}

.header-menu ul#menu-main-menu li.menu-item a:hover{
    color: var(--secondary-color);
}

.header-menu ul#menu-main-menu li.menu-item.header-cta a{
    background-color: var(--secondary-color);
    color: #ffffff;
}

.header-menu ul#menu-main-menu li.menu-item.header-cta a:hover{
    background-color: var(--primary-color);
}

/* Underline element */
.menu-underline {
    position: absolute;
    bottom: 0;
    height: 2px;
    background-color: var(--accent-color);
    width: 0;
    transition: left 0.3s ease-in-out, width 0.3s ease-in-out;
    pointer-events: none;
    display: none;
}


/* -----------------------------
        MOBILE MENU
----------------------------- */
.mobile-menu-wrapper {
    right: -100%;
    width: 100%;
}

header .mobile-menu{
    margin-top: 0;
}

header .mobile-menu span,
header.fixed .mobile-menu span{
    background: #323a44;
}

/* -----------------------------
        FOOTER CSS
----------------------------- */
/* =========================================
   FOOTER
========================================= */
.site-footer {
    position: relative;
    overflow: hidden;
}

/* .site-footer .container,
.site-footer .container-small,
.site-footer .container-large,
.site-footer .container-edge {
    max-width: 1580px;
} */

.site-footer .footer-main-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 0.8fr;
    column-gap: 120px;
    row-gap: 50px;
    align-items: start;
}

.site-footer .footer-col {
    min-width: 0;
}

/* =========================================
   LEFT COLUMN
========================================= */
.site-footer .footer-logo {
    margin-bottom: 34px;
}

.site-footer .footer-logo a {
    display: inline-block;
}

.site-footer .footer-logo img {
    max-width: 260px;
    width: 100%;
    height: auto;
    display: block;
}

.site-footer .footer-description {
    max-width: 470px;
    margin-bottom: 34px;
}

.site-footer .footer-description p:last-child {
    margin-bottom: 0;
}

.site-footer .footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}

.site-footer .footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-decoration: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.site-footer .footer-social-link:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.site-footer .footer-social-link img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
}

/* =========================================
   TITLES
========================================= */
.site-footer .footer-title {
    margin: 0 0 28px;
    text-transform: uppercase;
    letter-spacing: 0;
    font-family: var(--heading-font);
}

/* =========================================
   CONTACT COLUMN
========================================= */
.site-footer .footer-clinic-name {
    margin-bottom: 18px;
}

.site-footer .footer-contact-block {
    margin-bottom: 28px;
}

.site-footer .footer-contact-block:last-child {
    margin-bottom: 0;
}

.site-footer .footer-address-block strong,
.site-footer .footer-phone-item strong {
    display: inline-block;
    margin-right: 4px;
}

.site-footer .footer-address-line {
    margin-top: 2px;
}

.site-footer .footer-phone-item,
.site-footer .footer-email-item {
    margin-bottom: 6px;
}

.site-footer .footer-phone-item:last-child,
.site-footer .footer-email-item:last-child {
    margin-bottom: 0;
}

.site-footer .footer-col-contact a {
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.site-footer .footer-col-contact a:hover {
    opacity: 0.8;
}

/* =========================================
   MENU COLUMN
========================================= */
.site-footer .footer-menu-wrap ul,
.site-footer .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-menu li {
    margin: 0 0 10px;
}

.site-footer .footer-menu li:last-child {
    margin-bottom: 0;
}

.site-footer .footer-menu a {
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.site-footer .footer-menu a:hover {
    opacity: 0.8;
}

/* =========================================
   BOTTOM
========================================= */
.site-footer .footer-bottom {
    margin-top: 65px;
}

.site-footer .footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(124, 169, 199, 0.65);
    margin-bottom: 42px;
}

.site-footer .footer-copyright {
    text-align: center;
}

.site-footer .footer-copyright p {
    margin: 0;
}

/* =========================================
   TYPOGRAPHY / COLORS
   Adjust these if needed
========================================= */
.site-footer {
    color: #ffffff;
}

.site-footer .footer-title {
    font-size: clamp(28px, 2vw, 38px);
    line-height: 1.1;
    font-weight: 400;
}

.site-footer .footer-description,
.site-footer .footer-clinic-name,
.site-footer .footer-address-block,
.site-footer .footer-phone-item,
.site-footer .footer-email-item,
.site-footer .footer-menu a,
.site-footer .footer-copyright {
    font-size: var(--fs-body);
    line-height: 1.55;
    font-weight: 400;
    color: inherit;
}

.site-footer .footer-menu a,
.site-footer .footer-col-contact a,
.site-footer .footer-social-link {
    color: inherit;
}

/* =========================================
   SPACING
========================================= */
.site-footer {
    padding-top: 90px;
    padding-bottom: 52px;
}


/* -----------------------------
        HOME HERO
----------------------------- */
.hero-type-home .hero-container .hero-content .hero_title{
    font-family: var(--heading-font);
    font-size: clamp(40px, 4.5vw, 85px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0.03em;
    margin-bottom: 55px;
    margin-top: 0;
}


.quick-facts .single-tile .tile-icon-wrap{
    background-color: var(--primary-color);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.quick-facts .single-tile .tile-icon-wrap img{
    max-width: 64px;
    height: auto;
}

.quick-facts .single-tile .tile-description{
    text-align: center;
}

section.content-block.imgtxt-section .section-title-wrap {
    margin-bottom: 0;
    margin-top: 50px;
}

section.content-block.imgtxt-section .image-position-left .mac-intro-content {
    padding-right: 0;
}

section.content-block.imgtxt-section .section-title-wrap h2.block-title {
    text-align: center;
}

section.content-block.imgtxt-section .mac-intro-section.image-position-right .mac-intro-content {
    padding-left: 0;
    padding-right: 5vw;
}

section.content-block.imgtxt-section .img-outer-wrapper {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

.content-block.what-we-help .slide-item .slide-content {
    background-color: #fff;
    padding-top: 0;
    width: calc(100% - 15px);
    padding-bottom: 0;
    border-radius: 10px;
    overflow: hidden;
}

.content-block.what-we-help .default-slide {
    gap: 10px;
    flex-direction: column;
}

.content-block.what-we-help .slide-content::before{
    display: none;
}

.content-block.what-we-help .slider-type-default .default-slide-content h3.hero-slider-title {
    font-size: clamp(18px, 1.5vw, 26px);
    color: var(--secondary-color);
    text-align: left;
    width: 100%;
    margin: 0 0 10px;
    overflow: hidden;
}

.content-block.what-we-help .default-slide{
    align-items: flex-start;
}

.content-block.what-we-help .default-slide .default-slide-content {
    width: 100%;
    padding: 20px;
}

.content-block.what-we-help .default-slide-image {
    background: var(--primary-color);
    width: clamp(90px, 7.9vw, 152px);
    height: clamp(90px, 7.9vw, 152px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 20px;
    flex: none;
    margin-top: clamp(-15px, -1.8vw, -35px);
    margin-left: clamp(-15px, -1.6vw, -40px);
    margin-right: 0;
    margin-bottom: 0;
}

.content-block.what-we-help .default-slide-image img{
    width: clamp(45px, 4vw, 76px);
    height: clamp(45px, 4vw, 76px);
    object-fit: contain;
    display: block;
    margin-bottom: 10px;
}

.content-block.what-we-help .slick-arrow{
    width: 68px;
    height: 68px;
}

.content-block.what-we-help .slick-arrow::before{
    content: "";
    display: block;
    width: 68px;
    height: 68px;
    background: url(/wp-content/uploads/2026/04/arrow-circle-1.svg) no-repeat center;
    background-size: contain;
    opacity: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.content-block.what-we-help .slick-arrow.slick-prev::before{
    transform: translate(-50%, -50%) scale(-1);
}

.slider-type-default .slide-content.container{
    padding: 60px 0 0;
}

.what-we-help .block-slider .slick-track {
    display: flex !important;
}

.what-we-help .block-slider .slick-slide {
    height: auto !important;
    display: flex !important;
}

.what-we-help .block-slider .slick-slide > div {
    display: flex;
    height: 100%;
}

/* Your actual card inside */
.what-we-help .block-slider .slick-slide > div > * {
    height: 100%;
    width: 100%;
}

.what-we-help .block-subtitle {
    margin-bottom: 30px;
}

.what-we-help .slick-arrow,
.what-we-help .swiper-button-prev,
.what-we-help .swiper-button-next {
    background: transparent;
}

.what-we-help .swiper-button-next {
    color: #696b73;
}

.what-we-help .slick-arrow::before,
.what-we-help .swiper-button-prev::after,
.what-we-help .swiper-button-next::after {
    font-size: 30px;
    font-weight: 700;
}

.what-we-help .slider-arrows-top-left{
    width: 150px;
    position: absolute;
    left: auto;
    right: 20px;
    top: -10px;
    justify-content: space-between;
}

.why-patients .tiles-wrapper .single-tile{
    color: #fff;
    border-radius: 10px;
}

.content-block.why-patients .tiles-wrapper .single-tile:first-child,
.content-block.why-patients .tiles-wrapper .single-tile:nth-child(4){
    background-color: var(--accent-color) !important;
}

.content-block.why-patients .tiles-wrapper .single-tile:nth-child(2),
.content-block.why-patients .tiles-wrapper .single-tile:nth-child(3){
    background-color: var(--primary-color) !important;
}

.content-block.bgtype-none.bg-none .tiles-wrapper .single-tile .single-tile-wrapper .blur-wrapper {
    display: none;
}

.content-block.bgtype-none.bg-none .tiles-wrapper .single-tile .single-tile-wrapper h3.tile-title {
    margin-top: 0;
    margin-bottom: 10px;
    text-align: center;
    font-family: var(--body-font);
}

.content-block.bgtype-none.bg-none .tiles-wrapper .single-tile .single-tile-wrapper .tile-description{
    text-align: center;
}

section.why-patients .section-patterns-wrapper .section-pattern-1 {
    max-width: 20vw;
    left: -10vw;
    top: 3vw;
}

section.why-patients .section-patterns-wrapper .section-pattern-2 {
    max-width: 20vw;
    right: -10vw;
    bottom: 3vw;
}

.content-block.about-tiles .tiles-wrapper .single-tile-wrapper {
    padding: 10px 30px;
}

.content-block.about-tiles .tiles-wrapper .single-tile.bg-default {
    border-radius: 10px;
}

.content-block.about-tiles .tiles-wrapper .single-tile.bg-default:first-child{
    background-color: var(--secondary-color);
}

.content-block.about-tiles .tiles-wrapper .single-tile.bg-default:nth-child(2){
    background-color: var(--accent-color);
}

.content-block.about-tiles .tiles-wrapper .single-tile.bg-default:last-child{
    background-color: var(--primary-color);
}

.content-block.about-tiles .single-tile .single-tile-wrapper .tile-content h4.tile-subtitle {
    margin: 0;
}

.content-block.about-tiles .tiles-wrapper .single-tile-wrapper .tile-icon-wrap {
    margin-bottom: 0;
}

.buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.button-align-left {
    justify-content: flex-start;
}

.button-align-center {
    justify-content: center;
}

.button-align-right {
    justify-content: flex-end;
}

.buttons-wrapper a.btn {
    border-radius: 10px;
    padding: clamp(10px, 1.2vw, 14px) clamp(45px, 5.5vw, 45px);
}

.hero-container .buttons-wrapper{
    gap: 25px;
}

.hero-container .buttons-wrapper a.btn {
    text-align: center;
}

.bottom-cta .section-patterns-wrapper .section-pattern-1,
.patterns-bg .section-patterns-wrapper .section-pattern-1 {
    width: 20vw;
    margin-left: -10vw;
    top: 50px;
}

.bottom-cta .section-patterns-wrapper .section-pattern-2,
.patterns-bg .section-patterns-wrapper .section-pattern-2 {
    width: 20vw;
    margin-right: -10vw;
    bottom: 50px;
}

section.bg-none.bottom-cta .block-paragraphs p a {
    color: var(--secondary-color);
    font-weight: 700;
}

section.bottom-cta .section-title-wrap h2.block-title {
    color: #fff;
}

section.awards-recognition .tiles-wrapper .single-tile {
    border-radius: 20px;
}

section.awards-recognition .single-tile .single-tile-wrapper {
    text-align: center;
    padding: 50px 30px;
}

section.awards-recognition .single-tile .single-tile-wrapper h4.tile-subtitle {
    font-family: var(--body-font);
    margin-bottom: 0;
    margin-top: 0;
    font-size: clamp(18px, 1.5vw, 26px);
    line-height: normal;
    color: var(--secondary-color);
}

section.awards-recognition .tiles-wrapper .single-tile:last-child {
    border-radius: 0px;
    background-color: transparent !important;
    grid-column: 1 / -1;
    text-align: center;
}

section.awards-recognition .tiles-wrapper .single-tile:last-child .single-tile-wrapper {
    padding: 30px 0;
}


section.awards-recognition .tiles-wrapper .single-tile:last-child .single-tile-wrapper .tile-description p{
    font-size: var(--fs-medium);
    line-height: var(--lh-medium);
    font-weight: 500;
    color: var(--accent-color);
    text-align: center;
}

section.awards-recognition .tiles-title-wrap h2.block-title {
    margin-bottom: 50px;
}

.bottom-cta-2 h2.block-title{
    color: #fff;
}

section.inner-hero-block.hero-text .hero-paragraphs p{
    font-weight: 500;
    line-height: 1.5;
}

section.recognitions .tiles-block .tiles-wrapper .single-tile {
    border-radius: 20px;
}

section.recognitions .tiles-block .tiles-wrapper h3.tile-title{
    font-family: var(--body-font);
    margin-bottom: 10px;
    margin-top: 0;
    font-size: clamp(18px, 1.5vw, 26px);
    line-height: normal;
    color: var(--secondary-color);
}

section.recognitions .tiles-block .tiles-wrapper .single-tile .single-tile-wrapper {
    text-align: center;
    align-items: center;
    justify-content: center;
}

section.recognitions .tiles-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

section.recognitions .tiles-wrapper .single-tile:nth-child(1) {
    grid-column: span 2; /* 33.33% */
}

section.recognitions .tiles-wrapper .single-tile:nth-child(2) {
    grid-column: span 4; /* 66.66% */
}

section.recognitions .tiles-wrapper .single-tile:nth-child(n+3) {
    grid-column: span 3; /* 50% */
}

section.recognitions .tiles-block .tiles-wrapper .single-tile .single-tile-wrapper .tile-description p a{
    color: var(--secondary-color);
}

section.recognitions .tiles-block .tiles-wrapper .single-tile .single-tile-wrapper .tile-description p a:hover{
    text-decoration: underline;
}

section.visits-work .tiles-wrapper .single-tile{
    border-radius: 10px;
}

.block-type-tiles .protect-your-business .tiles-wrapper.default-icons-bg .single-tile-wrapper h3.tile-title{
    font-family: var(--body-font);
    font-size: clamp(18px, 1.5vw, 26px);
    color: var(--secondary-color);
    text-align: left;
    width: 100%;
    margin: 0 0 10px;
    overflow: hidden;
}

section.visits-work .tiles-wrapper .single-tile .blur-wrapper {
    margin-top: -60%;
}

section.visits-work .tiles-wrapper {
    padding-top: 100px;
    position: relative;
}

section.visits-work .tiles-wrapper::before{
    content: "";
    width: calc(100% - 200px);
    height: 1px;
    border-bottom: 2px dashed var(--accent-color);
    position: absolute;
    left: 100px;
    top: 70px;
}


/* ========== Contact Social ========== */
.contact-social {
    display: flex;
    gap: 14px;
    margin-top: 10px;
}

.contact-social .contact-social {
    display: flex;
    gap: 14px;
}

.contact-social .contact-social img,
.contact-social .contact-social i {
    width: 22px;
    height: 22px;
    display: block;
}

.contact-address .text-block {
    position: relative;
    z-index: 2;
}

.reading-time .single-tile.tile-text-dark,
.reading-time .single-tile.tile-text-dark h3.tile-title,
.reading-time .single-tile.tile-text-dark h4.tile-subtitle {
    color: var(--dark-text-color);
}

/* =========================================
   CONTACT PAGE FIX: equal columns + no iframe scroll
========================================= */
.contact-section.block-type-flexi-text .flex-container{
    gap: 50px;
}
.content-block.contact-address .container.flex-container {
    display: flex;
}

.contact-address .flex-container .text-column:first-child .block-paragraphs,
.contact-address .flex-container .text-column:first-child .block-paragraphs p {
    height: 100%;
    margin-bottom: 0;
}

.contact-address .flex-container .text-column:nth-child(2) {
    padding: 150px 3vw 0 0;
}

.contact-address .text-column h1.block-title {
    margin-bottom: 30px;
}

/* Make the two columns stretch to the same height */
.content-block.contact-address .container.flex-container {
    display: flex;
    align-items: stretch;
    /* key */
}

/* Ensure both columns behave like equal flex columns */
.contact-address .flex-container .text-column {
    flex: 1 1 0;
    min-width: 0;
}

/* Give the section enough height so the form can breathe (page can scroll, not iframe) */
.contact-address .flex-container .text-column {
    min-height: 470px;
    padding-bottom: 0;
    margin-bottom: 0;
}

/* MAP: make the map fill the column height */
.contact-address .flex-container .text-column:first-child iframe {
    width: 100%;
    height: 100%;
    min-height: 720px;
    /* keep it matching the column min-height */
    display: block;
    border: 0;
}

/* GHL FORM: prevent tiny iframe height that causes internal scrollbar */
.contact-address .flex-container .text-column:nth-child(2) iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: block;
    border: 0;
    margin-left: -20px;
}

section.contact-banner .text-column h1.block-title{
    color: var(--primary-color);
    font-size: clamp(40px, 4.5vw, 72px);
    line-height: clamp(46px, 5.3vw, 84px);
    position: relative;
    margin: 20px 0;
    font-family: var(--heading-font);
}

.contact-form form .forminator-row-last .forminator-field .forminator-button-submit{
    background-color: var(--secondary-color);
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    text-decoration: none;
    padding: clamp(10px, 1.2vw, 14px) clamp(45px, 5.5vw, 45px);
    border-radius: 10px;
    transition: all 0.5s ease;
    font-weight: 500;
    display: block;
    padding: 26px 14px;
    font-size: clamp(16px, 1.1vw, 20px);
    letter-spacing: 0.5px;
    font-family: var(--body-font);
}

.contact-form form .forminator-row .forminator-field .forminator-input {
    border-radius: 6px;
    color: var(--quaternary-color);
    font-family: var(--body-font);
    font-weight: 400;
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    letter-spacing: 0;
    text-wrap: pretty;
}

html.pum-open.pum-open-overlay-disabled.pum-open-fixed .pum-container{
    background-color: var(--quaternary-color);
}

.pum-theme-381 .pum-content + .pum-close, .pum-theme-default-theme .pum-content + .pum-close{
    width: 40px;
    background-color: var(--secondary-color);
}

.pum-theme-381 .popmake-content p{
    color: var(--accent-color);
    color: #ffffff;
}

.pum-container .pum-content>:first-child{
    margin-bottom: 0;
}