:root {
    --teal: #1dbdb3;
    --teal-dark: #13a099;
    --teal-deep: #0d7a75;
    --teal-light: #e6f9f8;
    --teal-mid: #b2ecea;
    --white: #ffffff;
    --text: #1a2e2c;
    --text-muted: #607472;
    --bg: #f4fffe;
    --nav-h: 72px;
    --r: 14px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}


/* ========== HERO ========== */
#hero {
    min-height: 100vh;
    background: linear-gradient(160deg, #1dbdb3 0%, #13a099 42%, #0d7a75 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Canvas particles */
#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Animated blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.blob1 {
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.09);
    top: -150px;
    right: -100px;
    animation: blobFloat 8s ease-in-out infinite;
}

.blob2 {
    width: 350px;
    height: 350px;
    background: rgba(0, 229, 192, 0.15);
    bottom: -80px;
    left: 10%;
    animation: blobFloat 10s 2s ease-in-out infinite reverse;
}

.blob3 {
    width: 250px;
    height: 250px;
    background: rgba(245, 200, 66, 0.12);
    top: 30%;
    left: -60px;
    animation: blobFloat 9s 4s ease-in-out infinite;
}

@keyframes blobFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(20px, -30px) scale(1.05);
    }

    66% {
        transform: translate(-15px, 15px) scale(0.97);
    }
}

/* Floating icons */
.float-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.fi {
    position: absolute;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
}

.fi1 {
    top: 12%;
    left: 8%;
    animation: fiFloat 6s 0s ease-in-out infinite;
}

.fi2 {
    top: 18%;
    right: 12%;
    animation: fiFloat 7s 1s ease-in-out infinite;
}

.fi3 {
    top: 60%;
    left: 4%;
    animation: fiFloat 8s 2s ease-in-out infinite;
}

.fi4 {
    top: 72%;
    right: 6%;
    animation: fiFloat 6s 3s ease-in-out infinite;
}

.fi5 {
    top: 38%;
    left: 2%;
    animation: fiFloat 9s 1.5s ease-in-out infinite;
}

.fi6 {
    top: 45%;
    right: 3%;
    animation: fiFloat 7s 2.5s ease-in-out infinite;
}

@keyframes fiFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-14px) rotate(6deg);
    }
}

/* Dot grid */
.hero-dots {
    position: absolute;
    right: 200px;
    top: 80px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    opacity: 0.18;
    z-index: 1;
    pointer-events: none;
}

.hero-dots span {
    width: 5px;
    height: 5px;
    background: white;
    border-radius: 50%;
    display: block;
}

/* Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 2;
}

.hero-wave svg {
    display: block;
    width: 100%;
}

/* Hero inner */
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 5% 120px;
    display: flex;
    align-items: center;
    gap: 48px;
    width: 100%;
    position: relative;
    z-index: 3;
    flex: 1;
}

/* Left text */
.hero-text {
    flex: 1;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.18);
    color: white;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    animation: fadeUp 0.5s ease both;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    display: inline-block;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .4;
        transform: scale(1.5);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.12;
    color: white;
    animation: fadeUp 0.55s 0.08s ease both;
}

.hero-title .accent {
    color: #c9faf8;
}

.hero-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    margin: 18px 0 32px;
    max-width: 440px;
    animation: fadeUp 0.55s 0.16s ease both;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.55s 0.24s ease both;
}

.btn-hero-white {
    background: white;
    color: var(--teal-deep);
    padding: 13px 26px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.92rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.22s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero-ghost {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 13px 26px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.22s;
    backdrop-filter: blur(6px);
}

.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* Hero stats */
.hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 40px;
    animation: fadeUp 0.55s 0.32s ease both;
}

.hstat {
    display: flex;
    flex-direction: column;
}

.hstat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.hstat-lbl {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    margin-top: 3px;
}

.hstat-sep {
    width: 1px;
    background: rgba(255, 255, 255, 0.25);
    align-self: stretch;
    margin: 4px 0;
}

/* Right cards */
.hero-right {
    flex: 0 0 auto;
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fadeUp 0.55s 0.2s ease both;
}

.hero-card {
    background: white;
    border-radius: 20px;
    padding: 20px 22px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
}

.hcard-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.hcard-head h3 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text);
}

.hcard-badge {
    background: var(--teal-light);
    color: var(--teal-dark);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    display: inline-block;
}

.doctor-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    background: var(--bg);
    margin-bottom: 8px;
    cursor: pointer;
    transition: background 0.15s;
}

.doctor-row:last-child {
    margin-bottom: 0;
}

.doctor-row:hover {
    background: var(--teal-light);
}

.dr-ava {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--teal), var(--teal-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: white;
}

.dr-ava i {
    font-size: 18px;
}

.dr-info .dr-name {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text);
}

.dr-info .dr-spec {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.dr-status {
    margin-left: auto;
}

.dr-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Mini cards */
.hero-mini-cards {
    display: flex;
    gap: 10px;
}

.mini-card {
    flex: 1;
    background: white;
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.mini-icon {
    width: 36px;
    height: 36px;
    background: var(--teal-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--teal-dark);
    font-size: 18px;
}

.mini-info .n {
    font-size: 1rem;
    font-weight: 900;
    color: var(--text);
    font-family: 'Playfair Display', serif;
}

.mini-info .l {
    font-size: 0.68rem;
    color: var(--text-muted);
    font-weight: 600;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ========== QUICK SERVICES STRIP ========== */
.services-strip {
    background: white;
    padding: 70px 5%;
}

.services-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.strip-head {
    text-align: center;
    margin-bottom: 40px;
}

.strip-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--teal-light);
    color: var(--teal-dark);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.strip-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 900;
    color: var(--text);
}

.strip-title span {
    color: var(--teal);
}

.strip-sub {
    color: var(--text-muted);
    font-size: 0.93rem;
    margin-top: 10px;
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.svc-card {
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    background: var(--bg);
    border: 1.5px solid var(--teal-mid);
    cursor: pointer;
    transition: all 0.28s;
    position: relative;
    overflow: hidden;
}

.svc-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--teal), var(--teal-deep));
    opacity: 0;
    transition: opacity 0.28s;
    border-radius: 18px;
}

.svc-card:hover::after {
    opacity: 1;
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(29, 189, 179, 0.28);
    border-color: transparent;
}

.svc-card:hover .svc-icon-wrap {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.svc-card:hover .svc-name,
.svc-card:hover .svc-desc {
    color: white;
}

.svc-icon-wrap {
    width: 64px;
    height: 64px;
    background: var(--teal-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
    transition: background 0.28s, color 0.28s;
    color: var(--teal-dark);
}

.svc-icon-wrap i {
    font-size: 28px;
}

.svc-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    transition: color 0.28s;
}

.svc-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
    position: relative;
    z-index: 1;
    transition: color 0.28s;
}


/* ========== FACILITIES ========== */
.facilities-sec {
    background: var(--bg);
    padding: 80px 5%;
}

.facilities-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.fac-layout {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-top: 48px;
}

.fac-tabs {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 220px;
    flex-shrink: 0;
}

.fac-tab {
    padding: 12px 18px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-muted);
    border: 1.5px solid transparent;
    background: white;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 9px;
}

.fac-tab i {
    font-size: 17px;
}

.fac-tab:hover {
    border-color: var(--teal-mid);
    color: var(--teal);
}

.fac-tab.active {
    background: var(--teal);
    color: white;
    box-shadow: 0 6px 20px rgba(29, 189, 179, 0.3);
}

.fac-body {
    flex: 1;
}

.fac-panel {
    display: none;
    animation: fadeUp 0.35s ease;
}

.fac-panel.active {
    display: flex;
    gap: 28px;
    align-items: center;
}

.fac-img-box {
    width: 220px;
    height: 180px;
    flex-shrink: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--teal-light), var(--teal-mid));
    display: flex;
    align-items: center;
    justify-content: center;
}

.fac-big-icon {
    font-size: 5rem;
    color: var(--teal-dark);
}

.fac-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 10px;
}

.fac-text p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 18px;
}


/* ========== CONSULT BANNER ========== */
.consult-wrap {
    padding: 0 5%;
}

.consult-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.consult-banner {
    background: linear-gradient(130deg, var(--teal-deep) 0%, var(--teal) 100%);
    border-radius: 24px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden;
}

.consult-banner::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
}

.consult-banner::after {
    content: '';
    position: absolute;
    right: 60px;
    bottom: -90px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cb-text {
    z-index: 1;
}

.cb-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
}

.cb-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
    max-width: 440px;
}

.cb-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    z-index: 1;
}

.cb-avatars {
    display: flex;
}

.cb-avatars span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-left: -12px;
    color: var(--teal-dark);
}

.cb-avatars span:first-child {
    margin-left: 0;
}


/* ========== MISSION STRIP ========== */
.mission-strip {
    background: white;
    padding: 80px 5%;
}

.mission-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 48px;
}

.mc {
    background: var(--bg);
    border-radius: 20px;
    padding: 34px 28px;
    border: 1.5px solid var(--teal-mid);
}

.mc-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--teal-light), var(--teal-mid));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--teal-dark);
}

.mc-icon i {
    font-size: 26px;
}

.mc h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--teal-deep);
    margin-bottom: 10px;
}

.mc p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 18px;
}

.mc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.mc-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.mc-list li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: var(--teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 1px;
}


/* ========== PRODUCTS STRIP ========== */
.products-strip {
    background: var(--bg);
    padding: 80px 5%;
}

.products-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.prod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.prod-card {
    background: white;
    border-radius: 18px;
    padding: 22px;
    border: 1.5px solid var(--teal-mid);
    transition: all 0.26s;
    cursor: pointer;
}

.prod-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(29, 189, 179, 0.2);
    border-color: var(--teal);
}

.prod-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.prod-icon-wrap i {
    font-size: 28px;
}

.prod-cat {
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.prod-name {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 7px;
}

.prod-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.prod-tag {
    display: inline-block;
    background: var(--teal-light);
    color: var(--teal-dark);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 800;
    margin-top: 12px;
}


/* ========== INSURANCE STRIP ========== */
.ins-strip {
    background: white;
    padding: 60px 5%;
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.ins-img {
    width: 200px;
    height: 160px;
    flex-shrink: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--teal-light), var(--teal-mid));
    display: flex;
    align-items: center;
    justify-content: center;
}

.ins-text {
    flex: 1;
}

.ins-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 900;
    color: var(--text);
    margin-bottom: 10px;
}

.ins-text h2 span {
    color: var(--teal);
}

.ins-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 20px;
    max-width: 500px;
}

.ins-logos {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.ins-logo {
    padding: 6px 14px;
    border-radius: 8px;
    border: 1.5px solid var(--teal-mid);
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--text-muted);
    background: var(--bg);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.ins-logo i {
    font-size: 14px;
    color: var(--teal);
}


/* ========== BUTTONS ========== */
.btn-primary {
    background: linear-gradient(135deg, var(--teal), var(--teal-deep));
    color: white;
    padding: 13px 26px;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(29, 189, 179, 0.32);
    transition: all 0.22s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(29, 189, 179, 0.42);
}

.btn-primary i {
    font-size: 17px;
}

.btn-outline {
    background: transparent;
    color: var(--teal-dark);
    padding: 12px 24px;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    border: 2px solid var(--teal);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.22s;
}

.btn-outline:hover {
    background: var(--teal-light);
    transform: translateY(-2px);
}


/* ========== SCROLL REVEAL ========== */
.rev {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.rev.in {
    opacity: 1;
    transform: none;
}


/* ========== RESPONSIVE ========== */
@media(max-width:1000px) {

    .svc-grid,
    .prod-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fac-layout {
        flex-direction: column;
    }

    .fac-tabs {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .mission-cards {
        grid-template-columns: 1fr;
    }

    .ins-strip {
        flex-direction: column;
    }

    .fi {
        display: none;
    }
}

@media(max-width:820px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
        padding: 60px 5% 100px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-right {
        width: 100%;
        max-width: 360px;
    }

    .consult-banner {
        flex-direction: column;
        text-align: center;
    }

    .cb-right {
        flex-direction: column;
    }

    .hero-dots {
        display: none;
    }
}

@media(max-width:520px) {
    .svc-grid {
        grid-template-columns: 1fr;
    }

    .prod-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-mini-cards {
        flex-direction: column;
    }
}