/* =====================================================
   🔥 MASTER BRAND CSS — GLOBAL (LOCKED)
   Website: Premium Branded Responsive Website
   ===================================================== */

/* Prevent overflow / page overload + smooth page */
html, body {
    overflow-x: clip;
    max-width: 100%;
}
body { -webkit-tap-highlight-color: transparent; }
/* Smooth rendering for images/videos on deep cleaning page */
.newservices-page img,
.newservices-page video {
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* ------------------------------
   🎨 BRAND COLOR VARIABLES
-------------------------------- */

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --black: #1A1A1A;
}


/* ------------------------------
   🔤 BRAND TYPOGRAPHY SCALE
-------------------------------- */

:root {
    --fontH: 'Poppins', sans-serif;
    --fontB: 'Open Sans', sans-serif;
    --h1: clamp(2.6rem, 4vw, 3.6rem);
    --h2: clamp(2.2rem, 3.5vw, 3rem);
    --h3: clamp(1.8rem, 3vw, 2.4rem);
    --h4: clamp(1.4rem, 2.2vw, 1.8rem);
    --body: clamp(1rem, 1.1vw, 1.15rem);
    --small: 0.9rem;
}


/* ================================
   🔒 HEADING COLOR LOCK (NO BLACK)
================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--blue);
    /* default */
}


/* White background headings */

.bg-white h1,
.bg-white h2,
.bg-white h3,
.bg-white h4,
.bg-white h5,
.bg-white h6 {
    color: var(--blue);
}


/* Section title system */

.section-title {
    color: var(--blue);
}

.section-title span {
    background: linear-gradient(90deg, var(--purple), var(--violet));
    -webkit-background-clip: text;
    color: transparent;
}


/* Dark background headings */

.bg-blue h1,
.bg-blue h2,
.bg-blue h3,
.bg-blue h4,
.bg-blue h5,
.bg-blue h6,
.bg-purple h1,
.bg-purple h2,
.bg-purple h3,
.bg-purple h4,
.bg-purple h5,
.bg-purple h6,
.bg-violet h1,
.bg-violet h2,
.bg-violet h3,
.bg-violet h4,
.bg-violet h5,
.bg-violet h6 {
    color: var(--white);
}


/* ------------------------------
   🌐 GLOBAL RESET
-------------------------------- */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fontB);
    font-size: var(--body);
    line-height: 1.75;
    color: var(--black);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}


/* ------------------------------
   📝 TYPOGRAPHY RULES
-------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--fontH);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: var(--h1);
    color: var(--blue);
}

h2 {
    font-size: var(--h2);
    color: var(--purple);
}

h3 {
    font-size: var(--h3);
    color: var(--violet);
}

h4 {
    font-size: var(--h4);
    color: var(--purple);
}

p {
    color: var(--black);
    font-weight: 400;
}


/* ------------------------------
   ⚪ WHITE BACKGROUND RULE
-------------------------------- */

.bg-white h1,
.bg-white h2,
.bg-white h3,
.bg-white h4 {
    color: inherit;
}


/* ------------------------------
   🔵 DARK BACKGROUND RULE
-------------------------------- */

.bg-blue,
.bg-purple,
.bg-violet {
    color: var(--white);
}

.bg-blue *,
.bg-purple *,
.bg-violet * {
    color: var(--white);
}


/* ------------------------------
   🔘 BUTTONS (BRANDED)
-------------------------------- */

.btn-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-family: var(--fontH);
    font-weight: 600;
    border-radius: 50px;
    background: var(--blue);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 18px 40px rgba(42, 42, 255, 0.25);
}

.btn-brand:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.45);
}


/* ------------------------------
   📦 BRAND CARDS
-------------------------------- */

.card-brand {
    background: var(--purple);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.card-brand:hover {
    transform: translateY(-10px);
    background: linear-gradient( 135deg, var(--purple), var(--violet));
}


/* ------------------------------
   ⭐ PREMIUM BADGES
-------------------------------- */

.badge-gold {
    background: linear-gradient(135deg, var(--gold), #f5e6a8);
    color: #000;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}


/* ------------------------------
   🎞 SMOOTH TRANSITIONS
-------------------------------- */

a,
button,
.card-brand {
    transition: all 0.35s ease;
}


/* ------------------------------
   📱 RESPONSIVE ADJUSTMENTS
-------------------------------- */

@media (max-width: 991px) {
    .card-brand {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.9rem;
    }
    .btn-brand {
        padding: 12px 28px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.7rem;
    }
}


/* ================================
   HOMES WE SERVE — BRAND SECTION
================================ */


/* SECTION BACKGROUND — WHITE */

.homes-serve-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}


/* Section Title (WHITE BG RULE) */

.homes-title {
    text-align: center;
    font-family: var(--fontH);
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--blue);
    /* Electric Blue heading on white */
    margin-bottom: 20px;
}

.homes-title span {
    background: linear-gradient(90deg, var(--purple), var(--violet));
    -webkit-background-clip: text;
    color: transparent;
}


/* Description */

.homes-desc {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--black);
    line-height: 1.7;
}


/* Grid */

.homes-grid {
    row-gap: 30px;
}


/* ================================
   CARD — BRANDED GRADIENT DABBA
================================ */

.home-card {
    height: 100%;
    border-radius: 22px;
    padding: 34px 26px;
    text-align: center;
    /* 🔥 PERFECT BRANDED LINEAR GRADIENT */
    background: linear-gradient( 135deg, var(--blue) 0%, var(--purple) 55%, var(--violet) 100%);
    box-shadow: 0 20px 50px rgba(42, 42, 255, 0.35), 0 35px 80px rgba(0, 0, 0, 0.25);
    transition: all 0.45s cubic-bezier(.4, 0, .2, 1);
    transform-style: preserve-3d;
}


/* Premium Highlight Card */

.home-card.premium {
    border: 2px solid var(--gold);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.45), 0 40px 90px rgba(0, 0, 0, 0.3);
}


/* Hover */

.home-card:hover {
    transform: translateY(-14px) scale(1.04);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35), 0 0 0 2px rgba(255, 255, 255, 0.12);
}


/* Icon */

.home-icon {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--white);
    animation: floatIcon 4s ease-in-out infinite;
}


/* Card Title — WHITE TEXT */

.home-card h4 {
    font-family: var(--fontH);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}


/* Card Text — WHITE TEXT */

.home-card p {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}


/* Note (White BG rule) */

.homes-note {
    margin-top: 50px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--purple);
}


/* Floating Animation */

@keyframes floatIcon {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}


/* Responsive */

@media (max-width: 768px) {
    .homes-serve-section {
        padding: 70px 0;
    }
}


/* ================================
   SECTION 3 — DEEP CLEANING
================================ */

.deep-cleaning-section {
    padding: 110px 0;
    background: var(--white);
}


/* Heading */

.section-title {
    font-family: var(--fontH);
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 18px;
}

.section-title span {
    background: linear-gradient(90deg, var(--purple), var(--violet));
    -webkit-background-clip: text;
    color: transparent;
}

.section-desc {
    max-width: 880px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--black);
    line-height: 1.75;
}


/* Card */

.deep-card {
    height: 100%;
    padding: 40px 34px;
    border-radius: 22px;
    background: linear-gradient( 135deg, var(--blue) 0%, var(--purple) 55%, var(--violet) 100%);
    color: var(--white);
    box-shadow: 0 22px 55px rgba(42, 42, 255, 0.35), 0 40px 90px rgba(0, 0, 0, 0.25);
    transition: all 0.45s cubic-bezier(.4, 0, .2, 1);
}

.deep-card:hover {
    transform: translateY(-14px) scale(1.03);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35), 0 0 0 2px rgba(255, 255, 255, 0.12);
}


/* Card Title */

.deep-card h4 {
    font-family: var(--fontH);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--white);
}


/* List */

.deep-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.deep-card ul li {
    font-size: 0.98rem;
    line-height: 1.7;
    padding-left: 22px;
    position: relative;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.95);
}

.deep-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-size: 0.9rem;
}


/* Responsive */

@media (max-width: 768px) {
    .deep-cleaning-section {
        padding: 80px 0;
    }
    .deep-card {
        padding: 32px 26px;
    }
}


/* ================================
   SECTION 5 — WHEN YOU NEED CLEANING
================================ */

.deep-need-section {
    padding: 110px 0;
    background: var(--white);
}


/* Card */

.need-card {
    height: 100%;
    padding: 42px 32px;
    border-radius: 22px;
    text-align: center;
    background: linear-gradient( 135deg, var(--blue) 0%, var(--purple) 55%, var(--violet) 100%);
    color: var(--white);
    box-shadow: 0 22px 55px rgba(42, 42, 255, 0.35), 0 40px 90px rgba(0, 0, 0, 0.25);
    transition: all 0.45s cubic-bezier(.4, 0, .2, 1);
}

.need-card:hover {
    transform: translateY(-14px) scale(1.04);
    box-shadow: 0 40px 95px rgba(0, 0, 0, 0.35), 0 0 0 2px rgba(255, 255, 255, 0.12);
}


/* Premium Highlight */

.need-card.highlight {
    border: 2px solid var(--gold);
    box-shadow: 0 28px 65px rgba(212, 175, 55, 0.45), 0 45px 100px rgba(0, 0, 0, 0.35);
}


/* Icon */

.need-icon {
    display: inline-block;
    font-size: 44px;
    margin-bottom: 18px;
    animation: floatIcon 4s ease-in-out infinite;
}


/* Title */

.need-card h4 {
    font-family: var(--fontH);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}


/* Text */

.need-card p {
    font-size: 0.98rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.95);
}


/* Responsive */

@media (max-width: 768px) {
    .deep-need-section {
        padding: 80px 0;
    }
    .need-card {
        padding: 34px 26px;
    }
}


/* ================================
   SECTION 6 — CLEANING PROCESS
================================ */

.process-section {
    padding: 120px 0;
    background: var(--white);
}


/* Process Layout */

.process-flow {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    perspective: 1200px;
}


/* Step Wrapper */

.process-step {
    position: relative;
}


/* Card */

.process-card {
    height: 100%;
    padding: 42px 30px;
    border-radius: 22px;
    text-align: center;
    background: linear-gradient( 135deg, var(--blue) 0%, var(--purple) 55%, var(--violet) 100%);
    color: var(--white);
    box-shadow: 0 25px 60px rgba(42, 42, 255, 0.35), 0 45px 100px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(.4, 0, .2, 1);
}


/* 3D Hover */

.process-card:hover {
    transform: rotateX(8deg) rotateY(-8deg) translateY(-16px);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.12);
}


/* Premium Final Step */

.process-card.premium {
    border: 2px solid var(--gold);
    box-shadow: 0 30px 70px rgba(212, 175, 55, 0.45), 0 55px 120px rgba(0, 0, 0, 0.35);
}


/* Step Number */

.step-no {
    display: inline-block;
    font-family: var(--fontH);
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--gold), #fff2b0);
    -webkit-background-clip: text;
    color: transparent;
}


/* Title */

.process-card h4 {
    font-family: var(--fontH);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}


/* Text */

.process-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.95);
}


/* Floating Animation */

.process-card {
    animation: floatProcess 6s ease-in-out infinite;
}

.process-step:nth-child(2) .process-card {
    animation-delay: 0.4s;
}

.process-step:nth-child(3) .process-card {
    animation-delay: 0.8s;
}

.process-step:nth-child(4) .process-card {
    animation-delay: 1.2s;
}

.process-step:nth-child(5) .process-card {
    animation-delay: 1.6s;
}

@keyframes floatProcess {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1200px) {
    .process-flow {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 90px 0;
    }
    .process-flow {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .process-card {
        animation: none;
    }
}


/* ================================
   SECTION 7 — ADD-ON SERVICES
================================ */

.addon-section {
    padding: 110px 0;
    background: var(--white);
}


/* Card */

.addon-card {
    height: 100%;
    padding: 42px 32px;
    border-radius: 22px;
    text-align: center;
    background: linear-gradient( 135deg, var(--blue) 0%, var(--purple) 55%, var(--violet) 100%);
    color: var(--white);
    box-shadow: 0 22px 55px rgba(42, 42, 255, 0.35), 0 40px 90px rgba(0, 0, 0, 0.25);
    transition: all 0.45s cubic-bezier(.4, 0, .2, 1);
}

.addon-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 38px 85px rgba(0, 0, 0, 0.35), 0 0 0 2px rgba(255, 255, 255, 0.12);
}


/* Premium Upsell */

.addon-card.premium {
    border: 2px solid var(--gold);
    box-shadow: 0 28px 65px rgba(212, 175, 55, 0.45), 0 45px 100px rgba(0, 0, 0, 0.35);
}


/* Icon */

.addon-icon {
    display: inline-block;
    font-size: 44px;
    margin-bottom: 18px;
}


/* Title */

.addon-card h4 {
    font-family: var(--fontH);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}


/* Text */

.addon-card p {
    font-size: 0.98rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.95);
}


/* Responsive */

@media (max-width: 768px) {
    .addon-section {
        padding: 80px 0;
    }
    .addon-card {
        padding: 34px 26px;
    }
}


/* ================================
   HOMES WE SERVE — PREMIUM 3D
================================ */

.homes-serve-section {
    padding: 110px 0;
    background: var(--white);
}

.homes-title {
    text-align: center;
    font-family: var(--fontH);
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 18px;
}

.homes-title span {
    background: linear-gradient(90deg, var(--purple), var(--violet));
    -webkit-background-clip: text;
    color: transparent;
}

.homes-desc {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--black);
    line-height: 1.7;
}


/* GRID */

.homes-grid {
    row-gap: 30px;
    perspective: 1400px;
}


/* =====================
   3D CARD
===================== */

.home-card-3d {
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient( 135deg, var(--blue) 0%, var(--purple) 55%, var(--violet) 100%);
    box-shadow: 0 25px 60px rgba(42, 42, 255, 0.35), 0 45px 90px rgba(0, 0, 0, 0.28);
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(.4, 0, .2, 1);
}

.home-card-3d:hover {
    transform: rotateX(6deg) rotateY(-6deg) translateY(-14px);
    box-shadow: 0 40px 95px rgba(0, 0, 0, 0.38), 0 0 0 2px rgba(255, 255, 255, 0.12);
}


/* Premium Card */

.home-card-3d.premium {
    border: 2px solid var(--gold);
    box-shadow: 0 30px 70px rgba(212, 175, 55, 0.45), 0 55px 120px rgba(0, 0, 0, 0.35);
}


/* =====================
   IMAGE — BRANDED, FIT & ATTRACTIVE
===================== */

.home-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #1a1a3e 0%, #252550 100%);
    border-radius: 22px 22px 0 0;
}

.home-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-card-3d:hover .home-img img {
    transform: scale(1.06);
}


/* =====================
   CONTENT
===================== */

.home-content {
    padding: 28px 26px;
    text-align: center;
}

.home-content h4 {
    font-family: var(--fontH);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.home-content p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.95);
}


/* NOTE */

.homes-note {
    margin-top: 55px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--purple);
}


/* =====================
   RESPONSIVE
===================== */

@media (max-width: 768px) {
    .homes-serve-section {
        padding: 80px 0;
    }
    .home-img {
        height: 200px;
    }
}


/* ================================
   DEEP CLEANING — IMAGE CARDS
================================ */

.deep-cleaning-section {
    padding: 110px 0;
    background: var(--white);
}


/* Card */

.deep-card {
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
    background: var(--blue);
    /* ELECTRIC BLUE */
    box-shadow: 0 22px 55px rgba(42, 42, 255, 0.45), 0 40px 90px rgba(0, 0, 0, 0.25);
    transition: all 0.45s cubic-bezier(.4, 0, .2, 1);
}

.deep-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 38px 85px rgba(42, 42, 255, 0.6), 0 55px 120px rgba(0, 0, 0, 0.35);
}


/* Image */

.deep-img {
    width: 100%;
    height: 220px;
    background: #000;
}

.deep-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* looks premium here */
}


/* Content */

.deep-content {
    padding: 34px 30px;
}

.deep-content h4 {
    font-family: var(--fontH);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.deep-content ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.deep-content ul li {
    font-size: 0.96rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.95);
    padding-left: 22px;
    position: relative;
    margin-bottom: 10px;
}

.deep-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-size: 0.85rem;
}


/* Responsive */

@media (max-width: 768px) {
    .deep-cleaning-section {
        padding: 80px 0;
    }
    .deep-img {
        height: 190px;
    }
    .deep-content {
        padding: 28px 24px;
    }
}


/* ----------------------------------------------------
   🌟 GLOBAL BRAND FOUNDATION CSS (MASTER FRAMEWORK)
   ✔ Apple-level Clean UI
   ✔ Your Brand Colors Only
   ✔ Fully Responsive + Animation Ready
   ✔ Bootstrap Compatible
---------------------------------------------------- */


/* ---------------------------------
   ⭐ STATS SECTION (BRAND LEVEL)
----------------------------------*/

.stats-simple-section {
    padding: 70px 0;
    background: #ffffff;
}

.stats-simple-box {
    background: #2A2AFF;
    /* Electric Blue */
    border-radius: 60px;
    padding: 55px 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    box-shadow: 0 25px 60px rgba(42, 42, 255, 0.35);
}

.stat-simple-item {
    text-align: center;
    width: 25%;
    min-width: 160px;
}

.stat-simple-item h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.8rem, 4vw, 3.6rem);
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: #ffffff;
}

.stat-simple-item p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: #ffffff;
    opacity: 0.95;
}


/* Responsive */

@media (max-width: 992px) {
    .stats-simple-box {
        flex-wrap: wrap;
        padding: 45px 20px;
    }
    .stat-simple-item {
        width: 45%;
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .stats-simple-box {
        padding: 35px 15px;
        border-radius: 35px;
    }
    .stat-simple-item {
        width: 100%;
    }
    .stat-simple-item h2 {
        font-size: 2.4rem;
    }
}


/* ================================
   BRAND VARIABLES
================================ */

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --white: #FFFFFF;
    --fontH: 'Poppins', sans-serif;
    --fontB: 'Open Sans', sans-serif;
}


/* ================================
   SERVICES SECTION
================================ */

.services-section {
    padding: 110px 0;
    background: var(--white);
}

.services-section .section-title {
    font-family: var(--fontH);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 70px;
    color: var(--blue);
}

.services-section .section-title span {
    background: linear-gradient(90deg, var(--purple), var(--violet));
    -webkit-background-clip: text;
    color: transparent;
}


/* GRID */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    perspective: 1400px;
}


/* ================================
   SERVICE CARD — PREMIUM
================================ */

.service-card {
    border-radius: 30px;
    padding: 42px 28px;
    text-align: center;
    background: linear-gradient( 135deg, var(--blue) 0%, var(--purple) 55%, var(--violet) 100%);
    color: var(--white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 30px 70px rgba(42, 42, 255, 0.45), 0 50px 120px rgba(0, 0, 0, 0.35);
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(.4, 0, .2, 1);
}

.service-card:hover {
    transform: rotateX(8deg) rotateY(-8deg) translateY(-18px);
    box-shadow: 0 45px 95px rgba(0, 0, 0, 0.45), 0 0 0 2px rgba(255, 255, 255, 0.12);
}


/* ================================
   ROUND IMAGE — FIXED (NO WHITE BOX)
================================ */

.service-icon {
    width: 130px;
    height: 130px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* 🔥 MOST IMPORTANT */
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25), 0 20px 45px rgba(0, 0, 0, 0.35);
    animation: floatIcon3D 6s ease-in-out infinite;
}


/* IMAGE — PROPER FIT */

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* FIX */
    object-position: center;
    background: transparent;
    /* NO WHITE BG */
    filter: none;
    /* REMOVE WHITE ISSUE */
}


/* FLOATING */

@keyframes floatIcon3D {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}


/* ================================
   TEXT — WHITE ONLY
================================ */

.service-name {
    font-family: var(--fontH);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.service-card p {
    font-family: var(--fontB);
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.95);
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
    .service-card {
        padding: 34px 22px;
    }
    .service-icon {
        width: 115px;
        height: 115px;
    }
}


/* ================================
   DEEP SERVICES — BRAND MASTER
================================ */


/* ================================
   DEEP SERVICES SECTION — BRAND
================================ */

.deep-services-section {
    padding: 100px 0;
    background: #ffffff;
    font-family: 'Open Sans', sans-serif;
}


/* ---------------- TITLE ---------------- */

.section-title {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 70px;
    color: #2A2AFF;
    /* Electric Blue */
}

.section-title span {
    background: linear-gradient( 90deg, #6A1B9A, #8A2BE2, #D4AF37);
    -webkit-background-clip: text;
    color: transparent;
}


/* ---------------- GRID ---------------- */

.services-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 0 24px;
    perspective: 1600px;
}


/* ==================================================
   🔥 SERVICE BOX — ELECTRIC BLUE (BRAND CORE)
================================================== */

.service-box {
    border-radius: 34px;
    padding: 42px 40px;
    /* 🔵 ELECTRIC BLUE BASE */
    background: linear-gradient( 145deg, #2A2AFF 0%, #2A2AFF 70%, rgba(212, 175, 55, 0.22) 100%/* subtle gold edge */
    );
    color: #ffffff;
    /* 🔒 ALL TEXT WHITE */
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 30px 70px rgba(42, 42, 255, 0.55), 0 0 35px rgba(212, 175, 55, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(.4, 0, .2, 1);
}


/* 3D HOVER */

.service-box:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 45px 100px rgba(42, 42, 255, 0.65), 0 0 60px rgba(212, 175, 55, 0.55);
}


/* ---------------- HEADING ---------------- */

.service-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 26px;
    line-height: 1.25;
    letter-spacing: 0.4px;
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}


/* ---------------- LIST ---------------- */

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.95);
}


/* ---------------- GOLD TICK ---------------- */

.tick {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #D4AF37;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.65);
}

.tick::before {
    content: "✔";
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
}


/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 992px) {
    .service-heading {
        font-size: 1.9rem;
    }
}

@media (max-width: 768px) {
    .services-columns {
        grid-template-columns: 1fr;
    }
    .service-box {
        padding: 34px 30px;
    }
    .service-heading {
        font-size: 1.8rem;
    }
}


/* ================================
   SECTION 7 — ADD-ON SERVICES (WITH IMAGE)
================================ */

.addon-section {
    padding: 110px 0;
    background: var(--white);
}


/* Card */

.addon-card {
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient( 135deg, var(--blue) 0%, var(--purple) 55%, var(--violet) 100%);
    box-shadow: 0 22px 55px rgba(42, 42, 255, 0.35), 0 40px 90px rgba(0, 0, 0, 0.25);
    transition: all 0.45s cubic-bezier(.4, 0, .2, 1);
}


/* Hover */

.addon-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 38px 85px rgba(0, 0, 0, 0.35), 0 0 0 2px rgba(255, 255, 255, 0.12);
}


/* Premium */

.addon-card.premium {
    border: 2px solid var(--gold);
    box-shadow: 0 28px 65px rgba(212, 175, 55, 0.45), 0 45px 100px rgba(0, 0, 0, 0.35);
}


/* Image */

.addon-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.addon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.addon-card:hover .addon-img img {
    transform: scale(1.08);
}


/* Content */

.addon-content {
    padding: 28px 26px;
    text-align: center;
}

.addon-content h4 {
    font-family: var(--fontH);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.addon-content p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.95);
}


/* Responsive */

@media (max-width: 768px) {
    .addon-section {
        padding: 80px 0;
    }
    .addon-img {
        height: 180px;
    }
}


/* BRAND COLORS */

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --black: #1A1A1A;
    --white: #FFFFFF;
}


/* SECTION WRAPPER */

.why-brand-section {
    padding: 80px 20px;
    background: var(--white);
}


/* CONTENT CONTAINER */

.why-container {
    max-width: 950px;
    margin: auto;
}


/* HEADING WITH BRAND GRADIENT */

.why-title {
    font-size: 2.4rem;
    font-weight: 800;
    text-align: left;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--blue), var(--purple), var(--violet), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* SUBTEXT */

.why-subtext {
    font-size: 1rem;
    color: var(--black);
    line-height: 1.6;
    margin-bottom: 25px;
}


/* LIST */

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--black);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}


/* GOLD ICONS */

.why-icon {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 4px;
}


/* VIDEO GRID */

.why-videos {
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.why-video-box {
    width: 100%;
    height: 330px;
    border-radius: 14px;
    object-fit: cover;
    background: #000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    border: 2px solid transparent;
    display: block;
    pointer-events: auto;
}


/* Hover – premium glow */

.why-video-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(42, 42, 255, 0.35);
    border-color: rgba(138, 43, 226, 0.8);
    /* violet glow */
}


/* Responsive */

@media(max-width: 600px) {
    .why-video-box {
        height: 220px;
    }
}


/* RESPONSIVE */

@media(max-width: 600px) {
    .why-title {
        font-size: 1.9rem;
        text-align: center;
    }
    .why-subtext,
    .why-list li {
        text-align: left;
    }
}

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --black: #1A1A1A;
}


/* SECTION */

.faq-3d-section {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
}


/* TITLE */

.faq-title {
    text-align: center;
    font-size: clamp(2.4rem, 4vw, 3.3rem);
    font-weight: 800;
    margin-bottom: 40px;
    background: linear-gradient(90deg, var(--blue), var(--purple), var(--violet));
    -webkit-background-clip: text;
    color: transparent;
}


/* SEARCH BAR */

.faq-search-wrapper {
    position: relative;
    max-width: 480px;
    margin: 0 auto 30px;
}

#faqAIsearch {
    width: 100%;
    padding: 14px 20px;
    border-radius: 14px;
    border: 2px solid var(--blue);
    font-size: 1rem;
    outline: none;
}

.faq-search-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
}


/* FAQ GRID */

.faq-3d-grid {
    display: grid;
    gap: 20px;
}


/* FAQ BOX */

.faq-3d-item {
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid var(--blue);
    border-radius: 18px;
    backdrop-filter: blur(20px);
    transform-style: preserve-3d;
    transition: 0.35s ease;
    cursor: pointer;
    box-shadow: 0 10px 34px rgba(42, 42, 255, 0.25);
}


/* HOVER GLOW */

.faq-3d-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 18px 45px rgba(138, 43, 226, 0.35);
}


/* QUESTION */

.faq-3d-question {
    width: 100%;
    padding: 20px;
    background: linear-gradient(90deg, var(--blue), var(--purple), var(--violet));
    color: var(--white);
    border: none;
    border-radius: 18px 18px 0 0;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
}


/* ANSWER */

.faq-3d-answer {
    height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: var(--white);
    border-radius: 0 0 18px 18px;
    transition: .35s ease;
    color: var(--black);
}


/* AI SEARCH RESULT */

.ai-answer {
    margin: 12px auto;
    max-width: 700px;
    background: var(--blue);
    color: var(--white);
    padding: 14px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(42, 42, 255, 0.25);
    font-size: 1rem;
}

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --black: #1A1A1A;
}


/* MASTER SECTION */

.testimonial-master {
    padding: 70px 40px;
    max-width: 1400px;
    margin: auto;
}


/* MAIN HEADING */

.testi-main-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 40px;
}


/* VIDEO WRAPPER */

.testi-videos {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.testi-video-box {
    width: 45%;
    min-width: 300px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    aspect-ratio: 16 / 10;
}

.testi-video-box video {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
}


/* HEADING BLOCK BELOW VIDEOS */

.testi-heading-wrap {
    margin-top: 60px;
    text-align: left;
}

.testi-badge {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 1px;
}

.testi-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    margin-top: 10px;
    color: var(--black);
}

.testi-title .highlight {
    color: var(--gold);
}

.testi-subtitle {
    margin-top: 15px;
    font-size: 1.05rem;
    color: #444;
}


/* AUTO SLIDER BOX */

.testimonial-slider {
    margin-top: 50px;
    padding: 45px;
    border-radius: 12px;
    background: var(--blue);
    color: var(--white);
    position: relative;
    box-shadow: 0 20px 40px rgba(42, 42, 255, 0.25);
    overflow: hidden;
}

.testi-slide {
    opacity: 0;
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    transition: opacity 1s ease;
}

.testi-slide.active {
    opacity: 1;
    position: relative;
}


/* TEXT */

.testi-text {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--white);
}

.testi-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}


/* RESPONSIVE */

@media (max-width:800px) {
    .testi-video-box {
        width: 100%;
    }
    .testimonial-slider {
        padding: 30px;
    }
    .testi-text {
        font-size: 1.15rem;
    }
}

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --black: #1A1A1A;
}


/* SECTION */

.pricing-section {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}


/* HEADING */

.pricing-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 50px;
}


/* GRID */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 34px;
    width: 90%;
    margin: 0 auto;
}


/* CARD */

.price-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 22px;
    padding: 0 0 40px;
    border: 1px solid rgba(42, 42, 255, 0.15);
    backdrop-filter: blur(15px);
    box-shadow: 0 12px 28px rgba(42, 42, 255, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    transition: 0.35s ease;
}

.price-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 45px rgba(42, 42, 255, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}


/* CARD HEADER – BRAND GRADIENT */

.price-header {
    background: linear-gradient( 90deg, var(--blue) 40%, var(--purple) 30%, var(--violet) 30%);
    color: var(--white);
    padding: 20px;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 22px 22px 0 0;
}


/* LIST */

.price-list {
    text-align: left;
    padding: 25px 28px;
    list-style: none;
}

.price-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.5;
}


/* TICK ICON – GOLD */

.tick {
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: var(--white);
    font-weight: 900;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.45);
}

.tick::before {
    content: "✔";
}


/* BUTTON */

.price-btn {
    margin-top: 10px;
    background: var(--gold);
    color: var(--black);
    padding: 12px 32px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.price-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.45);
}


/* -------------------------------------------------------
   PREMIUM ABOUT SECTION — BRAND COLOR + LIGHT PATTERN
-------------------------------------------------------- */

.about-cleaning-section {
    padding: 70px 0;
    background: linear-gradient( 135deg, rgba(42, 42, 255, 0.04), rgba(138, 43, 226, 0.05));
    position: relative;
}


/* LIGHT HEX PATTERN BACKGROUND (SUBTLE) */

.about-cleaning-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('images/pattern-light.png');
    opacity: 0.14;
    pointer-events: none;
}


/* GRID WRAPPER */

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}


/* LEFT IMAGE */

.about-image img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 10px 28px rgba(42, 42, 255, 0.18), 0 0 0 6px rgba(42, 42, 255, 0.16);
    object-fit: cover;
}


/* RIGHT CONTENT */

.about-content {
    padding-right: 20px;
}


/* TITLE */

.about-title {
    font-size: var(--h2);
    font-weight: 800;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: 18px;
}

.about-title span {
    background: linear-gradient(90deg, var(--blue), var(--purple), var(--violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* PARAGRAPHS */

.about-desc {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 16px;
    font-family: var(--font-body);
}


/* Fade-up animation (works with AOS or custom JS) */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}


/* RESPONSIVE FIXES */

@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-content {
        padding: 0;
    }
    .about-title {
        font-size: var(--h3);
    }
}

:root {
    --blue: #2A2AFF;
    /* Electric Blue */
    --purple: #6A1B9A;
    /* Purple */
    --violet: #8A2BE2;
    /* Violet */
    --white: #ffffff;
    --dark: #111;
}


/* =====================
   CONTAINER
===================== */

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}


/* =====================
   HERO SECTION
===================== */

.hero-impeccable {
    position: relative;
    height: 520px;
    padding: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* BRAND GRADIENT */
    background: linear-gradient( 135deg, var(--violet) 0%, var(--violet) 30%, var(--blue) 30%, var(--blue) 60%, var(--purple) 60%, var(--purple) 100%);
    background-size: 200% 200%;
    animation: heroGradient 10s ease-in-out infinite;
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    /* 🔥 ALL TEXT WHITE */
}


/* Animated gradient */

@keyframes heroGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


/* PARTICLES */

.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}


/* CONTENT WRAPPER */

.hero-inner {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    gap: 30px;
}


/* =====================
   LEFT CONTENT
===================== */

.hero-content {
    flex: 1;
    max-width: 540px;
    opacity: 0;
    transform: translateY(15px);
    transition: 0.7s ease;
}

.hero-content.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* Eyebrow */

.hero-eyebrow {
    display: inline-block;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    margin-bottom: 14px;
    color: #ffffff;
}


/* Heading */

.hero-content h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
    color: #ffffff;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}


/* Paragraph */

.hero-content p {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.7;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.95);
}


/* Highlights */

.hero-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: clamp(13px, 2vw, 14px);
    color: #ffffff;
}

.hero-highlights i {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}


/* =====================
   RIGHT FORM CARD
===================== */

.hero-card {
    flex: 1;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(16px);
    padding: 22px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(15px);
    transition: 0.7s ease 0.2s;
    color: #ffffff;
}

.hero-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-card h3 {
    font-size: clamp(18px, 3vw, 20px);
    font-weight: 700;
    color: #ffffff;
}

.hero-card-sub {
    font-size: clamp(12px, 2vw, 14px);
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
}


/* FORM */

.form-group {
    margin-bottom: 14px;
}

.hero-booking-form label {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 3px;
    display: block;
    color: #ffffff;
}

.hero-booking-form select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid #d6d6d6;
    color: #111;
    /* readable */
    background: #ffffff;
}


/* BUTTON */

.hero-submit {
    width: 100%;
    padding: 11px;
    border-radius: 999px;
    background: var(--white);
    color: var(--purple);
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: 0.25s;
}

.hero-submit:hover {
    background: var(--violet);
    color: var(--white);
}

.hero-small-note {
    text-align: center;
    font-size: 12px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.9);
}


/* =====================
   RESPONSIVE
===================== */


/* TABLET */

@media (max-width: 992px) {
    .hero-impeccable {
        height: auto;
        padding: 40px 0;
    }
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }
    .hero-card {
        max-width: 420px;
        width: 100%;
    }
}


/* MOBILE */

@media (max-width: 576px) {
    .hero-impeccable {
        padding: 60px 0;
    }
    .hero-content h1 {
        font-size: 30px;
    }
    .hero-card {
        padding: 18px 18px;
    }
}

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --dark: #1A1A1A;
    --radius-xl: 38px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --glass: rgba(255, 255, 255, 0.10);
    --glass-2: rgba(255, 255, 255, 0.14);
    --stroke: rgba(255, 255, 255, 0.22);
    --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);
    --font-h: "Poppins", sans-serif;
    --font-b: "Open Sans", sans-serif;
    --font-ui: "Outfit", sans-serif;
}


/* Footer: same as index (home) — uses new.css .imp-footer styles */

:root {
    --blue: #2A2AFF;
    /* Electric Blue */
    --purple: #6A1B9A;
    /* Purple */
    --violet: #8A2BE2;
    /* Violet */
    --white: #ffffff;
    --dark: #111;
}


/* =====================
   CONTAINER
===================== */

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}


/* =====================
   HERO SECTION
===================== */

.hero-impeccable {
    position: relative;
    height: 520px;
    padding: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* BRAND GRADIENT */
    background: linear-gradient( 135deg, var(--violet) 0%, var(--violet) 30%, var(--blue) 30%, var(--blue) 60%, var(--purple) 60%, var(--purple) 100%);
    background-size: 200% 200%;
    animation: heroGradient 10s ease-in-out infinite;
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    /* 🔥 ALL TEXT WHITE */
}


/* Animated gradient */

@keyframes heroGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


/* PARTICLES */

.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}


/* CONTENT WRAPPER */

.hero-inner {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    gap: 30px;
}


/* =====================
   LEFT CONTENT
===================== */

.hero-content {
    flex: 1;
    max-width: 540px;
    opacity: 0;
    transform: translateY(15px);
    transition: 0.7s ease;
}

.hero-content.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* Eyebrow */

.hero-eyebrow {
    display: inline-block;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    margin-bottom: 14px;
    color: #ffffff;
}


/* Heading */

.hero-content h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
    color: #ffffff;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}


/* Paragraph */

.hero-content p {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.7;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.95);
}


/* ===============================
   HERO STATS – PREMIUM DARK GLASS
================================ */

.hero-stats-wrapper {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}


/* STAT BOX */

.hero-stats-box {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 34px;
    border-radius: 4px;
    /* DARK GLASS OVER IMAGE */
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.58));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 14px 40px rgba(0, 0, 0, 0.45);
    transition: all 0.35s ease;
}


/* HOVER – VERY SUBTLE (LIKE IMAGE) */

.hero-stats-box:hover {
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.68));
    transform: translateY(-3px);
}


/* ICON */

.hero-stats-box i {
    font-size: 42px;
    color: #ffffff;
    opacity: 0.95;
}


/* TEXT WRAPPER */

.hero-stats-text {
    display: flex;
    flex-direction: column;
}


/* TITLE */

.hero-stats-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}


/* SUB TEXT */

.hero-stats-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    margin-top: 6px;
    opacity: 0.96;
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
    .hero-stats-wrapper {
        gap: 22px;
    }
}

@media (max-width: 768px) {
    .hero-stats-wrapper {
        grid-template-columns: 1fr;
    }
    .hero-stats-box {
        padding: 24px 26px;
    }
    .hero-stats-text h3 {
        font-size: 23px;
    }
    .hero-stats-text p {
        font-size: 20px;
    }
}


/* ===============================
   HERO SECTION – HEIGHT FIX
================================ */

.hero-impeccable {
    position: relative;
    /* ❌ fixed height hatao */
    height: auto;
    /* ✅ full screen cover + flexible */
    min-height: 100vh;
    /* ✅ niche content ke liye space */
    padding-bottom: 100px;
    /* ✅ cut problem fix */
    overflow: visible;
}


/* ===============================
   HERO INNER SPACING
================================ */

.hero-inner {
    align-items: flex-start;
    padding-top: 80px;
}


/* ===============================
   HERO STATS – PREMIUM DARK GLASS
================================ */

.hero-stats-wrapper {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.hero-stats-box {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 34px;
    border-radius: 4px;
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.58));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 14px 40px rgba(0, 0, 0, 0.45);
    transition: all 0.35s ease;
}

.hero-stats-box:hover {
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.68));
    transform: translateY(-3px);
}

.hero-stats-box i {
    font-size: 42px;
    color: #ffffff;
}

.hero-stats-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.hero-stats-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    margin-top: 6px;
}


/* ===============================
   RESPONSIVE FIX
================================ */

@media (max-width: 992px) {
    .hero-inner {
        padding-top: 60px;
    }
}

@media (max-width: 768px) {
    .hero-impeccable {
        padding-bottom: 130px;
    }
    .hero-stats-wrapper {
        grid-template-columns: 1fr;
    }
    .hero-stats-box {
        padding: 24px 26px;
    }
    .hero-stats-text h3 {
        font-size: 23px;
    }
    .hero-stats-text p {
        font-size: 20px;
    }
}


/* =====================
   RIGHT FORM CARD
===================== */

.hero-card {
    flex: 1;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(16px);
    padding: 22px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(15px);
    transition: 0.7s ease 0.2s;
    color: #ffffff;
}

.hero-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-card h3 {
    font-size: clamp(18px, 3vw, 20px);
    font-weight: 700;
    color: #ffffff;
}

.hero-card-sub {
    font-size: clamp(12px, 2vw, 14px);
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
}


/* FORM */

.form-group {
    margin-bottom: 14px;
}

.hero-booking-form label {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 3px;
    display: block;
    color: #ffffff;
}

.hero-booking-form select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid #d6d6d6;
    color: #111;
    /* readable */
    background: #ffffff;
}


/* BUTTON */

.hero-submit {
    width: 100%;
    padding: 11px;
    border-radius: 999px;
    background: var(--white);
    color: var(--purple);
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: 0.25s;
}

.hero-submit:hover {
    background: var(--violet);
    color: var(--white);
}

.hero-small-note {
    text-align: center;
    font-size: 12px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.9);
}


/* =====================
   RESPONSIVE
===================== */


/* TABLET */

@media (max-width: 992px) {
    .hero-impeccable {
        height: auto;
        padding: 40px 0;
    }
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }
    .hero-card {
        max-width: 420px;
        width: 100%;
    }
}


/* MOBILE */

@media (max-width: 576px) {
    .hero-impeccable {
        padding: 60px 0;
    }
    .hero-content h1 {
        font-size: 30px;
    }
    .hero-card {
        padding: 18px 18px;
    }
}

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --white: #ffffff;
    --text: #f5f5f5;
    --font: 'Poppins', sans-serif;
}


/* RESET */

*/
/* {margin:0;padding:0;box-sizing:border-box;}
body{
  font-family:var(--font);
  
  color:#fff;
} */


/* ================= TOP INFO BAR ================= */

.top-info-bar {
    background: #fff;
    color: rgb(63, 6, 251)2f6;
    position: relative;
    z-index: 1000;
}

.top-info-inner {
    max-width: 1400px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-logo img {
    height: 100px;
}

.top-info-right {
    display: flex;
    gap: 30px;
    align-items: center;
}

.info-item {
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
    color: rgb(41, 4, 252)4fa;
    font-size: 14px;
}

.info-item img {
    width: 28px;
}

@media(max-width:768px) {
    .top-info-inner {
        flex-direction: column;
        text-align: center;
    }
    .top-info-right {
        flex-direction: column;
        gap: 12px;
    }
}


/* ================= 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 20px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    box-shadow: 0 10px 30px rgba(42, 42, 255, .45);
}

.fab-whatsapp {
    background: linear-gradient(135deg, var(--purple), var(--violet));
}

.fab .label {
    display: none;
}

@media(max-width:992px) {
    .fab .label {
        display: inline;
    }
}


/* ================= NAVBAR ================= */

.premium-navbar {
    position: sticky;
    top: 0;
    z-index: 900;
    background: linear-gradient( 90deg, var(--blue), var(--purple), var(--violet));
}

.nav-container {
    max-width: 1400px;
    margin: auto;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* 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;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #fff;
    transition: .3s;
}

.nav-link:hover::after {
    width: 100%;
}


/* DROPDOWN */

.dropdown {
    position: relative;
}

.caret {
    margin-left: 6px;
    font-weight: 700;
}

.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;
    overflow: hidden;
}

.dropdown-content a {
    display: block;
    padding: 14px 18px;
    color: #fff;
    text-decoration: none;
}

.dropdown-content a:hover {
    background: #f800e7;
}

@media(min-width:901px) {
    .dropdown:hover .dropdown-content {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}


/* SOCIAL ICONS */

.social-icons {
    display: flex;
    gap: 14px;
}

.social-icons img {
    width: 20px;
    filter: invert(1);
}


/* ==============================
   🌐 SOCIAL ICONS
============================== */

.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 22px;
}

.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;
}

.social-icons a:hover {
    transform: translateY(-8px) scale(1.1);
    background: linear-gradient(135deg, var(--blue), var(--violet));
}


/* ================= MOBILE ================= */

@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, var(--blue), var(--purple), var(--violet));
        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, 17px);
    }
    .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;
    }
}


/* ================= ABOUT VIDEO ================= */

.about-video {
    width: 100%;
    height: 420px;
    /* 👈 image jaisa balanced height */
    border-radius: 28px;
    overflow: hidden;
    /* Glassmorphism frame */
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: flex;
    align-items: center;
    justify-content: center;
    /* Premium 3D depth */
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25), 0 0 40px rgba(42, 42, 255, 0.25);
    transition: all 0.4s ease;
}


/* VIDEO – FILL CONTAINER, SMOOTH RUN */

.about-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


/* Subtle premium hover */

.about-video:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 45px 100px rgba(0, 0, 0, 0.35), 0 0 55px rgba(138, 43, 226, 0.35);
}


/* Mobile */

@media (max-width: 768px) {
    .about-video {
        height: 260px;
        border-radius: 22px;
    }
}

/* ========== DEEP CLEANING PAGE: overflow fix & premium hero ========== */
html.newservices-page,
body.newservices-page {
    overflow-x: clip;
    max-width: 100%;
}

/* Hero content: always visible on deep cleaning page (no JS dependency) */
.newservices-page .hero-content,
.newservices-page .hero-card {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Hero text: ensure full visibility */
.newservices-page .hero-content h1,
.newservices-page .hero-content p,
.newservices-page .hero-eyebrow,
.newservices-page .hero-stats-wrapper,
.newservices-page .hero-stats-box,
.newservices-page .hero-stats-text h3,
.newservices-page .hero-stats-text p,
.newservices-page .hero-card h3,
.newservices-page .hero-card-sub,
.newservices-page .hero-booking-form label {
    opacity: 1 !important;
    color: #ffffff;
}
.newservices-page .hero-content p {
    color: rgba(255, 255, 255, 0.95);
}
.newservices-page .hero-card-sub {
    color: rgba(255, 255, 255, 0.9);
}

/* Hero section: ensure no overflow, premium look, content fully visible */
.newservices-page .hero-impeccable,
body.newservices-page .hero-impeccable {
    width: 100%;
    max-width: 100%;
    min-height: 480px;
    padding: clamp(40px, 6vw, 80px) 0;
    overflow: visible;
}
.newservices-page .hero-inner {
    position: relative;
    z-index: 5;
}

@media (prefers-reduced-motion: reduce) {
    .hero-impeccable {
        animation: none !important;
        background-size: 100% 100% !important;
    }
}

/* Form inputs (replaced select with input) */
.hero-booking-form input[type="text"],
.hero-booking-form input[type="tel"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1rem;
}
.hero-booking-form input::placeholder {
    color: rgba(255,255,255,0.6);
}