/* ===================== ROOT & GLOBAL (single source – no duplicate) ===================== */

:root {
    --bg-white: #ffffff;
    --electric-blue: #0052FF;
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --white: #ffffff;
    --dark: #1A1A1A;
    --font-main: 'Poppins', sans-serif;
    --font-alt: 'Open Sans', sans-serif;
    --font-h: 'Poppins', sans-serif;
    --font-b: 'Open Sans', sans-serif;
    --font-ui: 'Outfit', sans-serif;
    --radius-xl: 38px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --shadow-1: 0 18px 55px rgba(0, 0, 0, 0.22);
    --shadow-2: 0 32px 90px rgba(0, 0, 0, 0.30);
    --shadow-in: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}


/* =====================================================
   🌍 GLOBAL RESET (SAFE – NO COLOR TOUCH)
===================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    /* default body */
    line-height: 1.7;
}


/* =====================================================
   🔠 BRAND TYPOGRAPHY (NO COLOR OVERRIDE)
===================================================== */


/* Hero / Main titles */

.hero-font,
.hero-title,
h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}


/* Section headings */

h2,
h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.015em;
}


/* Sub-headings */

h4,
h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}


/* Paragraphs & lists */

p,
li {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
}


/* Small UI text */

.small-text,
label,
.badge,
.nav-link,
button {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    letter-spacing: 0.02em;
}


/* =====================================================
   🖼 MEDIA SAFETY (NO LAYOUT BREAK)
===================================================== */

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}


/* =====================================================
   🧱 CONTAINER SYSTEM (RESPONSIVE ONLY)
===================================================== */

.container {
    width: 100%;
    max-width: 1320px;
    margin-inline: auto;
    padding-inline: 16px;
}

.section,
section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Bootstrap overrides on about page — prevent overflow */
.about-glass .container,
.brand-story-section .row,
.why-homecare-section .row {
    max-width: 100%;
}
.brand-story-section .container .row,
.why-homecare-section .container {
    padding-left: clamp(12px, 3vw, 16px);
    padding-right: clamp(12px, 3vw, 16px);
}


/* =====================================================
   🚫 HORIZONTAL SCROLL KILL (REAL FIX)
===================================================== */

@media (max-width: 1200px) {
    html,
    body {
        overflow-x: hidden;
    }
    /* Only problematic absolute/fixed elements */
    [style*="right"],
    .absolute,
    .position-absolute {
        right: 0 !important;
        max-width: 100%;
    }
}


/* =====================================================
   📱 MOBILE SAFE SPACING
===================================================== */

@media (max-width: 768px) {
    .container {
        padding-inline: 14px;
    }
    h1 {
        font-size: clamp(26px, 7vw, 36px);
    }
    h2 {
        font-size: clamp(22px, 6vw, 30px);
    }
    p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding-inline: 12px;
    }
}

@media (max-width: 360px) {
    .container {
        padding-inline: 10px;
    }
}


/* ===================== HERO SECTION ===================== */

.hero-banner {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: clamp(420px, 100vh, 680px);
    background: radial-gradient(1200px 600px at 60% 75%, rgba(42, 42, 255, 0.22), transparent 60%), url("images/commericial coperate spaces.jpg") center / cover no-repeat;
    filter: brightness(1.18) contrast(1.12) saturate(1.25);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


/* ===================== SOFT OVERLAY (NO DULL) ===================== */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(11, 17, 27, 0.15), rgba(11, 17, 27, 0.45));
    z-index: 1;
}


/* ===================== HERO CONTENT ===================== */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    padding: clamp(24px, 5vw, 80px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(24px, 4vw, 48px);
    animation: heroFadeUp 1.4s cubic-bezier(.25, .8, .25, 1) forwards;
}


/* ===================== HERO TITLE (PURE WHITE) ===================== */

.hero-title {
    font-family: var(--font-main);
    font-weight: 900;
    letter-spacing: 0.02em;
    font-size: clamp(2.4rem, 5vw, 5rem);
    color: var(--white);
    /* 🔥 3D WHITE GLOW */
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.65), 0 0 80px rgba(255, 255, 255, 0.35);
    animation: titleFloat 6s ease-in-out infinite;
}


/* ===================== GLASS BOX ===================== */

.glass-box {
    width: 100%;
    max-width: 720px;
    padding: clamp(22px, 4vw, 42px);
    border-radius: 28px;
    background: linear-gradient( 135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45), 0 0 90px rgba(42, 42, 255, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.35);
    text-align: center;
}


/* ===================== GLASS TEXT – ALL WHITE ===================== */

.glass-box h2 {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 14px;
    color: var(--white);
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
}

.glass-box p {
    font-family: var(--font-alt);
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    line-height: 1.75;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.95);
}


/* ===================== CTA BUTTON ===================== */

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 44px;
    border-radius: 999px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient( 135deg, var(--blue), var(--violet));
    box-shadow: 0 18px 50px rgba(42, 42, 255, 0.55);
    transition: all 0.4s cubic-bezier(.25, .8, .25, 1);
}

.cta-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 32px 80px rgba(42, 42, 255, 0.75);
}


/* ===================== ANIMATIONS ===================== */

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}


/* ===================== RESPONSIVE ===================== */

@media (max-width: 992px) {
    .glass-box {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero-content {
        gap: 24px;
    }
    .cta-btn {
        width: 100%;
    }
}


/* ===================== MISSION / VISION ===================== */

/* SECTION */

.mission-vision {
    background: linear-gradient( 135deg, var(--blue) 0%, var(--purple) 50%, var(--violet) 100%);
    color: var(--white);
    text-align: center;
    padding: 120px 40px;
    font-family: 'Open Sans', sans-serif;
    overflow: hidden;
    position: relative;
}


/* AURA GLOW */

.mission-vision::before,
.mission-vision::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    filter: blur(160px);
    animation: floatAura 9s ease-in-out infinite alternate;
}

.mission-vision::before {
    top: -120px;
    left: -120px;
}

.mission-vision::after {
    bottom: -120px;
    right: -120px;
    animation-delay: 3s;
}

@keyframes floatAura {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(40px, 30px);
    }
}


/* HEADING */

.mv-heading {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 70px;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient( 90deg, #ffffff, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 35px rgba(255, 255, 255, 0.45);
}


/* GRID */

.mv-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    justify-items: center;
    perspective: 1200px;
    max-width: 1500px;
    margin: 0 auto;
}


/* CARD */

.mv-card {
    width: 100%;
    max-width: 320px;
    height: 400px;
    perspective: 1000px;
    border-radius: 18px;
}

.mv-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(42, 42, 255, 0.45), 0 20px 50px rgba(138, 43, 226, 0.35);
}

.mv-card:hover .mv-inner {
    transform: rotateY(180deg);
}


/* FRONT & BACK */

.mv-front,
.mv-back {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    backface-visibility: hidden;
    overflow: hidden;
}


/* FRONT */

.mv-front {
    background: linear-gradient( 135deg, rgba(42, 42, 255, 0.9), rgba(106, 27, 154, 0.9), rgba(138, 43, 226, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.mv-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.8s ease, filter 0.8s ease;
}

.mv-card:hover .mv-front img {
    transform: scale(1.08);
    filter: brightness(0.85);
}


/* TITLE STRIP */

.mv-title {
    width: 100%;
    padding: clamp(10px, 1.5vw, 14px) 0;
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 800;
    font-family: var(--font-main);
    background: linear-gradient(90deg, #ffffff, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* BACK */

.mv-back {
    background: linear-gradient( 135deg, rgba(42, 42, 255, 0.95), rgba(138, 43, 226, 0.95));
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 25px;
}


/* BACK HEADING */

.mv-back h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 14px;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(90deg, #ffffff, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* BACK TEXT */

.mv-back p {
    font-size: clamp(13px, 1.8vw, 15px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
}


/* RESPONSIVE */

@media (max-width: 1200px) {
    .mv-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .mv-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .mv-container {
        grid-template-columns: 1fr;
    }
    .mv-card {
        max-width: 90%;
        height: 360px;
    }
}


/* Section padding auto-scale */

.mission-vision {
    padding: clamp(70px, 10vw, 120px) clamp(16px, 5vw, 40px);
}


/* Heading responsive without design change */

.mv-heading {
    font-size: clamp(28px, 5vw, 46px);
    margin-bottom: clamp(40px, 8vw, 70px);
}


/* Container safe width */

.mv-container {
    width: 100%;
    padding-inline: clamp(12px, 4vw, 32px);
}


/* Card never overflow */

.mv-card {
    width: 100%;
    max-width: 320px;
}


/* Image safety */

.mv-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media (max-width: 420px) {
    .mv-card {
        height: 340px;
    }
    .mv-back h3 {
        font-size: 20px;
    }
}

.about-glass {
    padding: clamp(32px, 6vw, 120px) clamp(12px, 3vw, 24px);
    background: #ffffff;
    font-family: var(--font-alt);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(12px, 3vw, 24px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 5vw, 80px);
    align-items: center;
    width: 100%;
    min-width: 0;
}


/* BIG GLASS DIV */


/* BIG GLASS DIV – PREMIUM 3D 4K */

.about-image-glass {
    position: relative;
    width: 100%;
    min-width: 0;
    height: clamp(300px, 42vw, 520px);
    min-height: 280px;
    border-radius: clamp(16px, 3vw, 40px);
    padding: clamp(12px, 2vw, 28px);
    /* BRAND LINEAR GRADIENT */
    background: linear-gradient( 135deg, #2A2AFF 0%, #6A1B9A 38%, #8A2BE2 65%, #D4AF37 100%);
    backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 80px 160px rgba(42, 42, 255, 0.35), 0 40px 120px rgba(138, 43, 226, 0.35), 0 20px 60px rgba(212, 175, 55, 0.35), inset 0 0 80px rgba(255, 255, 255, 0.18);
    transform-style: preserve-3d;
    overflow: hidden;
}


/* SOFT GLASS LIGHT OVERLAY */

.about-image-glass::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient( 120deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
    pointer-events: none;
}


/* DEPTH SHADOW BASE */

.about-image-glass::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.25);
    pointer-events: none;
}


/* SMALL IMAGE DIVS — percentage-based so they scale on all screens */

.image-card {
    position: absolute;
    width: min(85%, 320px);
    height: clamp(140px, 26vw, 220px);
    min-height: 140px;
    border-radius: clamp(12px, 2.5vw, 26px);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25), 0 0 60px rgba(212, 175, 55, 0.35);
    transition: 0.6s ease;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-top {
    top: clamp(12px, 5%, 30px);
    left: clamp(12px, 5%, 40px);
    z-index: 2;
}

.image-bottom {
    bottom: clamp(12px, 5%, 30px);
    left: clamp(20px, 22%, 120px);
}

.image-card:hover {
    transform: translateY(-10px) scale(1.05);
}


/* CONTENT */

.about-content {
    width: 100%;
    min-width: 0;
}

.about-content p {
    font-size: clamp(0.9rem, 1.4vw, 1.05rem);
    line-height: 1.75;
    color: #333;
    margin-bottom: clamp(10px, 1.5vw, 18px);
    word-wrap: break-word;
}


/* GRADIENT HEADING (RULE FOLLOWED) */

.about-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.6rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 22px;
    background: linear-gradient( 90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    color: transparent;
}

.about-title span {
    background: linear-gradient( 90deg, #ffffff, #D4AF37);
    -webkit-background-clip: text;
    color: transparent;
}


/* CTA BUTTON */

.about-cta {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 38px;
    border-radius: 999px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient( 135deg, #D4AF37, #FFD700);
    color: #1a1a1a;
    box-shadow: 0 18px 40px rgba(212, 175, 55, 0.6);
    transition: 0.4s ease;
}

.about-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 65px rgba(212, 175, 55, 0.8);
}


/* ===================== ABOUT SECTION — FULLY RESPONSIVE (ALL SCREENS) ===================== */

/* Large desktop: tighten gap */
@media (min-width: 1400px) {
    .about-wrapper { gap: 64px; }
}

/* Tablet: stack image above content earlier to avoid cramped 2-col */
@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: clamp(32px, 6vw, 48px);
        text-align: center;
        padding: 0 clamp(16px, 4vw, 24px);
    }
    .about-image-glass {
        height: auto;
        min-height: 320px;
        padding: clamp(20px, 4vw, 28px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: clamp(16px, 3vw, 24px);
        max-width: 520px;
        margin: 0 auto;
    }
    .about-image-glass .image-card {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100%;
        max-width: 320px;
        height: clamp(180px, 38vw, 220px);
        margin: 0 auto;
    }
    .about-image-glass .image-top { order: 1; }
    .about-image-glass .image-bottom { order: 2; }
    .about-content { text-align: center; }
    .about-cta { margin-left: auto; margin-right: auto; }
}

/* Small tablet / large phone */
@media (max-width: 768px) {
    .about-glass { padding: clamp(32px, 8vw, 56px) clamp(14px, 3vw, 20px); }
    .about-wrapper { gap: 28px; }
    .about-image-glass { min-height: 280px; padding: 18px; gap: 16px; }
    .about-image-glass .image-card { height: clamp(160px, 42vw, 200px); max-width: 100%; }
}

/* Phone */
@media (max-width: 600px) {
    .about-glass { padding: clamp(28px, 6vw, 48px) 12px; }
    .about-wrapper { padding: 0 12px; gap: 24px; }
    .about-image-glass {
        min-height: 260px;
        padding: 14px;
        gap: 14px;
        border-radius: clamp(14px, 4vw, 20px);
    }
    .about-image-glass .image-card {
        width: 100%;
        max-width: 100%;
        height: clamp(150px, 40vw, 200px);
        min-height: 150px;
    }
}

/* Small phone */
@media (max-width: 480px) {
    .about-glass { padding: 24px 10px; }
    .about-wrapper { padding: 0 10px; gap: 20px; }
    .about-image-glass { min-height: 240px; padding: 12px; gap: 12px; }
    .about-image-glass .image-card { height: clamp(140px, 38vw, 180px); min-height: 140px; }
}

/* Extra small (e.g. Galaxy Fold) */
@media (max-width: 380px) {
    .about-glass { padding: 20px 8px; }
    .about-wrapper { padding: 0 8px; gap: 16px; }
    .about-image-glass .image-card { height: 130px; min-height: 130px; }
}

/* ===================== OUR CLEANING SERVICES — BRANDED CARDS ===================== */

.service-square-section {
    padding: clamp(60px, 10vw, 100px) clamp(16px, 4vw, 24px);
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 30%, #f5f4ff 100%);
    font-family: var(--font-alt);
    position: relative;
    overflow: hidden;
}

.service-square-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42, 42, 255, 0.08) 0%, transparent 70%);
    top: -120px;
    left: -120px;
    pointer-events: none;
}

.service-square-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.06) 0%, transparent 70%);
    bottom: -80px;
    right: -80px;
    pointer-events: none;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 24px);
    position: relative;
    z-index: 1;
}

.service-heading {
    text-align: center;
    font-family: var(--font-main);
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: clamp(40px, 6vw, 70px);
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-heading span {
    background: linear-gradient(90deg, #8A2BE2, #D4AF37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(20px, 3vw, 28px);
}

/* ——— CARD: glass + gradient border + branded CTA ——— */

.service-card {
    position: relative;
    border-radius: 24px;
    padding: clamp(24px, 3vw, 32px);
    min-height: 200px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 255, 0.95));
    color: #1a1a1a;
    border: 1px solid rgba(42, 42, 255, 0.12);
    box-shadow: 0 4px 24px rgba(42, 42, 255, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    border-radius: 24px 24px 0 0;
    opacity: 1;
    transition: height 0.35s ease, opacity 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(42, 42, 255, 0.18), 0 12px 32px rgba(138, 43, 226, 0.12), 0 0 0 1px rgba(42, 42, 255, 0.15) inset;
    border-color: rgba(42, 42, 255, 0.2);
}

.service-card:hover::before {
    height: 6px;
    opacity: 1;
}

/* Card content */
.service-card h3 {
    font-family: var(--font-main);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.service-card p {
    font-family: var(--font-alt);
    font-size: clamp(0.9rem, 1.5vw, 0.95rem);
    color: #475569;
    margin: 0;
    line-height: 1.5;
}

/* See more — branded pill */
.service-card .see-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 18px;
    width: fit-content;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    background: linear-gradient(135deg, #2A2AFF, #6A1B9A);
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(42, 42, 255, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.service-card:hover .see-more {
    background: linear-gradient(135deg, #6A1B9A, #8A2BE2);
    box-shadow: 0 12px 32px rgba(138, 43, 226, 0.4);
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
    .service-card {
        padding: 22px;
        min-height: 180px;
    }
}

@media (max-width: 480px) {
    .service-grid {
        gap: 16px;
    }
    .service-card {
        padding: 20px;
    }
}


/* ===================== OUR JOURNEY & LEADERSHIP — BRANDED ===================== */

.brand-story-section {
    position: relative;
    padding: clamp(40px, 8vw, 140px) clamp(16px, 4vw, 24px);
    background: #ffffff;
    overflow: hidden;
}

.brand-story {
    position: relative;
    padding: clamp(48px, 10vw, 100px) clamp(16px, 4vw, 24px);
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 25%, #ffffff 75%, #f5f4ff 100%);
    overflow: hidden;
    max-width: 100%;
}

.brand-bg-orb {
    position: absolute;
    width: min(420px, 90vw);
    height: min(420px, 90vw);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    animation: floatOrb 10s ease-in-out infinite alternate;
    pointer-events: none;
}

.orb-blue {
    background: var(--blue);
    top: -100px;
    left: -100px;
}

.orb-violet {
    background: var(--violet);
    bottom: -100px;
    right: -100px;
}

@keyframes floatOrb {
    from { transform: translateY(0); }
    to { transform: translateY(30px); }
}

.brand-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(12px, 3vw, 24px);
    position: relative;
    z-index: 2;
}

/* ——— Section heading ——— */
.brand-story .brand-heading {
    text-align: center;
    font-family: var(--font-main);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: clamp(40px, 6vw, 64px);
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-story .brand-heading span {
    background: linear-gradient(90deg, #8A2BE2, #D4AF37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ——— Timeline: branded cards with year pill ——— */
.brand-story .timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    gap: clamp(16px, 2.5vw, 24px);
    margin-bottom: clamp(48px, 8vw, 80px);
}

.brand-story .timeline-item {
    position: relative;
    padding: clamp(20px, 3vw, 28px);
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(42, 42, 255, 0.1);
    box-shadow: 0 4px 24px rgba(42, 42, 255, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.9) inset;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    min-width: 0;
}

.brand-story .timeline-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-radius: 20px 0 0 20px;
    background: linear-gradient(180deg, #2A2AFF, #6A1B9A, #8A2BE2);
}

.brand-story .timeline-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(42, 42, 255, 0.15), 0 0 0 1px rgba(42, 42, 255, 0.12);
    border-color: rgba(42, 42, 255, 0.18);
}

.brand-story .timeline-item span {
    display: inline-block;
    font-family: var(--font-main);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    margin-bottom: 10px;
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2A2AFF, #6A1B9A);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(42, 42, 255, 0.3);
}

.brand-story .timeline-item p {
    font-size: clamp(0.875rem, 1.4vw, 0.95rem);
    line-height: 1.65;
    color: #475569;
    margin: 0;
}

/* ——— Leadership: branded cards with image ring ——— */
.brand-story .leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(24px, 4vw, 48px);
    min-width: 0;
}

.brand-story .leader-card {
    position: relative;
    padding: clamp(24px, 4vw, 36px);
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(42, 42, 255, 0.1);
    box-shadow: 0 8px 32px rgba(42, 42, 255, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.9) inset;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    min-width: 0;
}

.brand-story .leader-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(90deg, #2A2AFF, #6A1B9A, #8A2BE2);
}

.brand-story .leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(42, 42, 255, 0.14), 0 0 0 1px rgba(42, 42, 255, 0.1);
}

.brand-story .leader-image {
    width: clamp(88px, 16vw, 120px);
    height: clamp(88px, 16vw, 120px);
    margin: 0 auto clamp(14px, 2vw, 20px);
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #2A2AFF;
    box-shadow: 0 8px 24px rgba(42, 42, 255, 0.25), 0 0 0 1px rgba(138, 43, 226, 0.15);
}

.brand-story .leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.brand-story .leader-card h3 {
    font-family: var(--font-main);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 700;
    margin-bottom: clamp(8px, 1.5vw, 12px);
    background: linear-gradient(90deg, #2A2AFF, #6A1B9A);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-story .leader-card p {
    font-size: clamp(0.875rem, 1.3vw, 0.95rem);
    line-height: 1.7;
    color: #475569;
    margin-bottom: 10px;
    text-align: center;
}

.brand-story .leader-card p:last-of-type {
    font-style: italic;
    color: #1a1a1a;
    border-left: 3px solid #2A2AFF;
    padding-left: 14px;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}

/* ——— Responsive: Journey & Leadership ——— */
@media (max-width: 992px) {
    .brand-story .timeline {
        grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
    }
    .brand-story .leadership-grid {
        gap: clamp(20px, 3vw, 32px);
    }
}

@media (max-width: 768px) {
    .brand-story .brand-heading {
        font-size: clamp(1.35rem, 5vw, 1.75rem);
        margin-bottom: clamp(32px, 5vw, 48px);
    }
    .brand-story .timeline {
        grid-template-columns: 1fr;
        margin-bottom: 48px;
        gap: 14px;
    }
    .brand-story .timeline-item {
        padding: 18px 20px;
    }
    .brand-story .timeline-item::before {
        width: 3px;
    }
    .brand-story .leadership-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .brand-story .leader-card {
        padding: 24px 20px;
    }
}

@media (max-width: 600px) {
    .brand-story {
        padding: 40px 16px;
    }
    .brand-container {
        padding: 0 12px;
    }
    .brand-story .timeline-item span {
        font-size: 0.95rem;
        padding: 5px 12px;
    }
    .brand-story .leader-image {
        width: 96px;
        height: 96px;
    }
    .brand-story .leader-card p:last-of-type {
        padding-left: 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .brand-story .brand-heading {
        font-size: 1.4rem;
        margin-bottom: 28px;
    }
    .brand-story .timeline {
        margin-bottom: 36px;
        gap: 12px;
    }
    .brand-story .timeline-item {
        padding: 16px 18px;
        border-radius: 16px;
    }
    .brand-story .timeline-item::before {
        border-radius: 16px 0 0 16px;
    }
    .brand-story .leadership-grid {
        gap: 20px;
    }
    .brand-story .leader-card {
        padding: 20px 16px;
        border-radius: 20px;
    }
    .brand-story .leader-card::before {
        border-radius: 20px 20px 0 0;
    }
    .brand-story .leader-image {
        width: 84px;
        height: 84px;
    }
    .brand-story .leader-card h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 360px) {
    .brand-story .timeline-item span {
        font-size: 0.9rem;
        padding: 4px 10px;
    }
    .brand-story .leader-card p {
        font-size: 0.85rem;
    }
}

/* brand-gradient-heading (other section) — keep for brand-story-section */
.brand-gradient-heading {
    text-align: center;
    font-family: var(--font-main);
    font-size: clamp(1.5rem, 4vw, 3.4rem);
    font-weight: 800;
    margin-bottom: clamp(32px, 6vw, 90px);
    background: linear-gradient(90deg, var(--blue), var(--purple), var(--violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ================= BRAND STORY SECTION ================= */

.brand-story-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}


/* Gradient Heading (LOCKED RULE) */

.brand-gradient-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.2;
    background: linear-gradient( 90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Body Text */

.brand-body-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #1A1A1A;
    margin-bottom: 1rem;
}


/* Highlight Box */

.brand-highlight-box {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.brand-highlight-box span {
    background: linear-gradient( 135deg, #2A2AFF, #D4AF37);
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 18px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}


/* Glassmorphic Image */

.brand-glass-image {
    position: relative;
    padding: 20px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12), 0 0 25px rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

.brand-glass-image img {
    border-radius: 22px;
    width: 100%;
    object-fit: cover;
}


/* Hover Lift */

.brand-glass-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.18), 0 0 35px rgba(212, 175, 55, 0.35);
}


/* Responsive */

@media (max-width: 768px) {
    .brand-highlight-box {
        justify-content: center;
    }
}

.why-homecare-section {
    background: #f9f9fc;
    padding: clamp(40px, 8vw, 80px) clamp(16px, 4vw, 24px) !important;
}


/* Heading – locked */

.why-heading {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: clamp(1.5rem, 4vw, 3rem);
    margin-bottom: clamp(24px, 4vw, 48px) !important;
    background: linear-gradient(90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Card */

.why-card {
    background: #ffffff;
    border-radius: clamp(16px, 2.5vw, 22px);
    padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 30px);
    display: flex;
    align-items: center;
    gap: clamp(16px, 2vw, 22px);
    height: 100%;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.45s ease;
    position: relative;
    overflow: hidden;
}


/* Hover Gradient */

.why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2A2AFF, #D4AF37);
    opacity: 0;
    transition: opacity 0.45s ease;
    z-index: 0;
}

.why-card:hover::before {
    opacity: 1;
}

.why-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 70px rgba(42, 42, 255, 0.35), 0 0 40px rgba(212, 175, 55, 0.45);
}

.why-card * {
    position: relative;
    z-index: 1;
}


/* Emoji Circle */

.icon-wrap {
    min-width: clamp(56px, 12vw, 72px);
    height: clamp(56px, 12vw, 72px);
    border-radius: 50%;
    background: #FFD84D;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(24px, 5vw, 32px);
    transition: all 0.45s ease;
}


/* Emoji hover */

.why-card:hover .icon-wrap {
    background: #ffffff;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.25);
}


/* Text */

.why-card h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1A1A1A;
    transition: color 0.45s ease;
}

.why-card:hover h5 {
    color: #ffffff;
}


/* Mobile */

@media (max-width: 768px) {
    .why-card {
        flex-direction: column;
        text-align: center;
    }
}


/* ================= CTA BANNER — white bg, branded, compact ================= */

.cta-banner {
    background: #ffffff;
    padding: clamp(32px, 5vw, 48px) clamp(16px, 4vw, 20px);
}

.cta-glass {
    max-width: 640px;
    margin: 0 auto;
    padding: clamp(24px, 4vw, 36px) clamp(20px, 4vw, 32px);
    border-radius: 20px;
    background: #ffffff;
    text-align: center;
    border: 1px solid rgba(42, 42, 255, 0.12);
    box-shadow: 0 8px 32px rgba(42, 42, 255, 0.08), 0 0 0 1px rgba(138, 43, 226, 0.06);
}

.cta-heading {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: clamp(1.25rem, 2.8vw, 1.5rem);
    margin-bottom: 10px;
    line-height: 1.25;
    background: linear-gradient(90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-text {
    font-family: var(--font-alt);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.6;
    color: #475569;
    max-width: 520px;
    margin: 0 auto 20px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-banner .cta-btn {
    padding: 10px 24px;
    border-radius: 999px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-banner .cta-btn.primary {
    background: linear-gradient(135deg, #2A2AFF, #6A1B9A);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(42, 42, 255, 0.35);
}

.cta-banner .cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(42, 42, 255, 0.4);
}

.cta-banner .cta-btn.secondary {
    background: #ffffff;
    color: #2A2AFF;
    border: 2px solid #2A2AFF;
}

.cta-banner .cta-btn.secondary:hover {
    background: #2A2AFF;
    color: #ffffff;
}

@media (max-width: 576px) {
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .cta-banner .cta-btn {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }
}

/* Footer: same as index (home) — uses new.css .imp-footer styles */

/* ================= TOP INFO BAR (branded, works with fixed header) ================= */

.top-info-bar {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f5f4ff 100%);
    position: relative;
    z-index: 1000;
    color: #1a1a1a;
    box-shadow: 0 2px 20px rgba(42, 42, 255, 0.08);
    border-bottom: 1px solid rgba(42, 42, 255, 0.12);
}

.top-info-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(10px, 2vw, 14px) clamp(16px, 4vw, 28px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(16px, 3vw, 24px);
    flex-wrap: wrap;
}

.top-logo img {
    height: clamp(48px, 10vw, 72px);
    width: auto;
    max-height: 72px;
    object-fit: contain;
}

.top-info-right {
    display: flex;
    gap: clamp(16px, 2.5vw, 28px);
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.info-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1a1a1a;
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 12px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
    white-space: nowrap;
}

.info-item:hover {
    background: rgba(42, 42, 255, 0.08);
    color: #2A2AFF;
    transform: translateY(-1px);
}

.info-item-wa:hover {
    background: rgba(37, 211, 102, 0.12);
    color: #25d366;
}

.info-item img {
    width: clamp(22px, 4vw, 28px);
    height: clamp(22px, 4vw, 28px);
    object-fit: contain;
    flex-shrink: 0;
}

.info-text {
    letter-spacing: 0.02em;
}


/* TOP BAR — responsive (all screens) */

@media (max-width: 992px) {
    .top-info-inner {
        justify-content: center;
    }
    .info-item {
        padding: 6px 12px;
    }
}

@media (max-width: 768px) {
    .top-info-bar {
        border-bottom: none;
    }
    .top-info-inner {
        flex-direction: column;
        text-align: center;
        padding: 12px 16px;
    }
    .top-info-right {
        flex-direction: row;
        gap: 12px;
        justify-content: center;
    }
    .info-item {
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .top-logo img {
        height: 44px;
    }
    .info-item {
        font-size: 11px;
        padding: 6px 10px;
    }
    .info-item img {
        width: 20px;
        height: 20px;
    }
    .info-text {
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}


/* ================= FLOATING BUTTONS ================= */

.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
}

.fab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    box-shadow: 0 12px 35px rgba(42, 42, 255, .45);
    transition: .35s ease;
}

.fab-whatsapp {
    background: linear-gradient(135deg, var(--purple), var(--violet));
}

.fab:hover {
    transform: translateY(-6px);
}

.fab .label {
    display: none;
}

@media(max-width:992px) {
    .fab .label {
        display: inline;
    }
}


/* ================= NAVBAR (branded, inside fixed wrapper) ================= */

.premium-navbar {
    position: relative;
    z-index: 9998;
    background: linear-gradient(90deg, #2A2AFF 0%, #6A1B9A 45%, #8A2BE2 100%);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(10px, 2vw, 16px) clamp(16px, 4vw, 28px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


/* ================= HAMBURGER ================= */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 32px;
    height: 3px;
    background: #fff;
    transition: .3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}


/* ================= MENU ================= */

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
}


/* 🔥 TEXT = PURE WHITE + BOLD */

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.4px;
    position: relative;
}


/* HOVER = WHITE ONLY */

.nav-link:hover {
    color: #ffffff;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: .3s;
}

.nav-link:hover::after {
    width: 100%;
}


/* ================= DROPDOWN ================= */

.dropdown {
    position: relative;
}

.caret {
    margin-left: 6px;
    font-weight: 800;
}

.dropdown-content {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 260px;
    background: linear-gradient( 135deg, #6A1B9A 0%, #8A2BE2 45%, #D4AF37 100%);
    border-radius: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .35s;
}

.dropdown-content a {
    display: block;
    padding: 14px 18px;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.3px;
    text-decoration: none;
}


/* DROPDOWN HOVER = WHITE */

.dropdown-content a:hover {
    background: hsl(60, 93%, 35%);
    color: #ffffff;
}


/* DESKTOP HOVER */

@media(min-width:901px) {
    .dropdown:hover .dropdown-content {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}


/* ================= SOCIAL ICONS (navbar) ================= */

.premium-navbar .social-icons {
    display: flex;
    gap: 14px;
    margin-top: 0;
}

.premium-navbar .social-icons img {
    width: 20px;
    filter: invert(1);
}

.premium-navbar .social-icons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, .25), rgba(255, 255, 255, .1));
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .3);
    transition: .35s;
}

.premium-navbar .social-icons a:hover {
    transform: translateY(-8px) scale(1.1);
    background: linear-gradient(135deg, var(--blue), var(--violet));
}


/* ================= MOBILE MENU ================= */

@media (max-width: 900px) {
    html.nav-open, body.nav-open {
        overflow: hidden !important;
        height: 100%;
        position: fixed;
        left: 0;
        right: 0;
    }
    body.nav-open .header-sticky-wrapper,
    body.nav-open .premium-navbar,
    body.nav-open .nav-container { overflow: visible !important; }
    .premium-navbar { overflow: visible; }
    .nav-container { overflow: visible; }
    .hamburger {
        display: flex;
        position: relative;
        z-index: 100002;
    }
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        max-width: 100%;
        height: 100vh !important;
        height: 100dvh !important;
        min-height: 100vh;
        min-height: 100dvh;
        margin: 0 !important;
        padding: clamp(80px, 18vw, 100px) clamp(20px, 5vw, 24px) 40px;
        background: linear-gradient(180deg, #2A2AFF, #6A1B9A, #8A2BE2);
        transform: translateX(-100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 100001;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .nav-menu::-webkit-scrollbar {
        display: none;
    }
    .nav-menu.active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
    }
    .nav-list > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    .nav-link {
        display: block;
        padding: 16px 0;
        font-size: clamp(16px, 4vw, 18px);
        font-weight: 800;
    }
    .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .dropdown.active .dropdown-toggle .caret {
        transform: rotate(180deg);
    }
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: linear-gradient(180deg, #6A1B9A 0%, #8A2BE2 45%, #D4AF37 100%);
        border-radius: 14px;
        margin: 8px 0 12px 16px;
        padding: 8px 0;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    .dropdown.active .dropdown-content {
        display: block;
    }
    .dropdown-content a {
        color: #fff;
        padding: 12px 20px;
        font-weight: 600;
        font-size: clamp(14px, 3.5vw, 15px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    .dropdown-content a:last-child {
        border-bottom: none;
    }
    .dropdown-content a:hover {
        background: rgba(255, 255, 255, 0.2);
        color: #fff;
        padding-left: 24px;
    }
    .social-icons {
        display: none;
    }
}


/* ================= FORCE WHITE TEXT ================= */


/* Navbar main */

.premium-navbar,
.premium-navbar * {
    color: #ffffff !important;
}


/* Nav links */

.nav-link {
    color: #ffffff !important;
    font-weight: 800;
}

.nav-link:hover,
.nav-link:focus,
.nav-link:active {
    color: #ffffff !important;
}


/* Underline hover */

.nav-link::after {
    background: #ffffff !important;
}


/* Dropdown items */

.dropdown-content a {
    color: #ffffff !important;
    font-weight: 700;
}

.dropdown-content a:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.2);
}


/* Caret (+ / -) */

.caret {
    color: #ffffff !important;
    font-weight: 800;
}


/* Mobile menu text */

@media (max-width: 900px) {
    .nav-menu,
    .nav-menu * {
        color: #ffffff !important;
    }
}


/* Social icons */

.social-icons img {
    filter: invert(1);
}


/* Floating buttons text */

.fab,
.fab * {
    color: #ffffff !important;
}


/* ===================== ABOUT PAGE — FULLY RESPONSIVE (ALL SCREENS) ===================== */

@media (max-width: 1200px) {
    .about-wrapper { gap: 48px; }
    .mv-container { gap: 28px; }
    .brand-story-section .container,
    .why-homecare-section .container { padding-inline: 20px; }
}

@media (max-width: 992px) {
    .hero-content { padding: clamp(20px, 4vw, 48px); }
    .glass-box { max-width: 100%; padding: 24px 20px; }
    .brand-story-section .row { --bs-gutter-x: 1rem; }
    .brand-story-section .col-lg-6 { margin-bottom: 1.5rem; }
    .brand-gradient-heading { text-align: center; margin-bottom: 1.5rem; }
    .brand-body-text { font-size: 1rem; }
    .brand-glass-image { max-width: 100%; }
}

@media (max-width: 768px) {
    .hero-title { font-size: clamp(1.75rem, 8vw, 2.5rem); }
    .glass-box h2 { font-size: 1.35rem; }
    .glass-box p { font-size: 0.95rem; margin-bottom: 20px; }
    .mission-vision { padding: clamp(40px, 8vw, 70px) clamp(12px, 4vw, 24px); }
    .mv-heading { font-size: clamp(1.4rem, 5vw, 1.9rem); margin-bottom: clamp(28px, 5vw, 48px); }
    .mv-container { padding-inline: 12px; gap: 20px; }
    .mv-card { height: 360px; max-width: 100%; }
    .about-title { font-size: clamp(1.75rem, 5vw, 2.2rem); }
    .about-cta { padding: 12px 28px; font-size: 0.95rem; }
    .service-heading { font-size: clamp(1.5rem, 5vw, 2rem); margin-bottom: clamp(28px, 5vw, 48px); }
    .service-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
    .timeline { flex-direction: column; gap: 16px; margin-bottom: 48px; }
    .timeline-item { min-width: 100%; }
    .brand-heading { font-size: clamp(1.35rem, 4.5vw, 1.75rem); margin-bottom: 32px; }
    .brand-highlight-box span { font-size: 0.85rem; padding: 8px 14px; }
    .why-card h5 { font-size: 1rem; }
    .cta-heading { font-size: clamp(1.1rem, 4vw, 1.35rem); }
    .cta-text { font-size: 0.9rem; margin-bottom: 16px; }
    .footer-heading { font-size: clamp(0.9rem, 1.5vw, 1rem); }
}

@media (max-width: 600px) {
    .hero-banner { min-height: clamp(380px, 90vh, 480px); }
    .hero-content { gap: 16px; padding: 20px 16px; }
    .cta-btn { padding: 12px 28px; font-size: 0.95rem; }
    .mv-card { height: 340px; }
    .mv-back { padding: 20px 18px; }
    .about-image-glass { border-radius: 20px; }
    .service-card { min-height: 170px; padding: 18px; }
    .leader-card p { font-size: 0.9rem; }
    .brand-glass-image { padding: 16px; border-radius: 20px; }
    .brand-glass-image img { border-radius: 14px; }
}

@media (max-width: 480px) {
    .container { padding-inline: 12px; }
    .hero-title { font-size: 1.6rem; }
    .glass-box { padding: 20px 16px; border-radius: 20px; }
    .mv-heading { font-size: 1.35rem; }
    .mv-card { height: 320px; }
    .mv-back h3 { font-size: 1.1rem; }
    .mv-back p { font-size: 13px; }
    .about-title { font-size: 1.6rem; }
    .about-content p { font-size: 0.9rem; }
    .service-heading { font-size: 1.4rem; margin-bottom: 28px; }
    .service-grid { grid-template-columns: 1fr; gap: 14px; }
    .service-card h3 { font-size: 1.1rem; }
    .timeline-item { padding: 18px; }
    .timeline-item span { font-size: 1.2rem; }
    .leadership-grid { gap: 24px; }
    .leader-image { width: 90px; height: 90px; }
    .leader-card h3 { font-size: 1.1rem; }
    .brand-gradient-heading { font-size: 1.35rem; }
    .why-heading { font-size: 1.35rem; }
    .why-card { padding: 20px 16px; flex-direction: column; text-align: center; }
    .cta-glass { padding: 20px 16px; border-radius: 16px; }
    .cta-banner .cta-btn { padding: 10px 20px; font-size: 0.85rem; }
    .footer-bottom p { font-size: 0.8rem; }
}

@media (max-width: 360px) {
    .hero-banner { min-height: 360px; }
    .hero-title { font-size: 1.45rem; }
    .glass-box { padding: 16px 12px; }
    .mv-container { padding-inline: 10px; }
    .mv-card { height: 300px; }
    .about-wrapper { padding: 0 12px; gap: 24px; }
    .service-card { padding: 16px; min-height: 160px; }
    .service-card .see-more { padding: 8px 14px; font-size: 0.85rem; }
    .timeline-item { padding: 14px; }
    .leader-card { padding: 20px; }
    .brand-highlight-box { flex-direction: column; align-items: center; }
    .brand-highlight-box span { width: 100%; text-align: center; }
    .cta-actions { gap: 10px; }
    .footer-social a { width: 40px; height: 40px; font-size: 15px; }
}

/* Prevent grid/flex overflow on all screens */
.service-grid,
.mv-container,
.leadership-grid,
.about-wrapper,
.timeline,
.footer-grid {
    min-width: 0;
}
.service-card,
.mv-card,
.leader-card,
.timeline-item,
.about-content,
.about-image-glass {
    min-width: 0;
}