/* ============================================================
   Virtual Lights — Modern UI layer
   Loaded LAST (after style.css / all.css) so it refines the
   existing design without rewriting the legacy stylesheet.
   Scope: typography, spacing rhythm, cards, buttons, images,
   navigation & footer polish, accessibility.
   Images and content are intentionally left unchanged.
   ============================================================ */

:root {
    --vl-font: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    --vl-accent: #0093b9;      /* brand teal */
    --vl-accent-dark: #017692; /* hover / darker teal */
    --vl-gold: #ffc000;        /* secondary accent */

    --vl-ink: #1a2430;         /* headings on light */
    --vl-body: #48525e;        /* body text on light */
    --vl-muted: #8a94a1;       /* eyebrow / muted */

    --vl-light: #f5f6f8;       /* light section bg */
    --vl-dark: #15171a;        /* dark section bg */

    --vl-radius: 14px;
    --vl-radius-sm: 10px;
    --vl-shadow: 0 12px 30px rgba(16, 26, 40, 0.10);
    --vl-shadow-lg: 0 20px 45px rgba(16, 26, 40, 0.16);
    --vl-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- 1. Typography ---------------------------------- */

body,
button,
input,
select,
textarea,
.navbar-nav > li > a,
.sec-title h2,
.pbmit-ihbox-style-8 .pbmit-element-title,
.tm-hero-title,
.content-box h2 {
    font-family: var(--vl-font) !important;
}

body {
    color: var(--vl-body);
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--vl-ink);
    line-height: 1.25;
    letter-spacing: -0.01em;
}

p {
    line-height: 1.7;
}

a {
    transition: color 0.25s var(--vl-ease);
}

/* Fix the hero title, which was set to the Font Awesome icon font */
.tm-hero-title {
    font-size: clamp(34px, 5.2vw, 60px);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
}

.tm-hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    letter-spacing: 0.01em;
    color: #e7ebef;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ---------- 2. Section rhythm ----------------------------- */

.sectionpading {
    padding: 84px 0;
}

@media (max-width: 991px) {
    .sectionpading { padding: 60px 0; }
}

@media (max-width: 575px) {
    .sectionpading { padding: 44px 0; }
}

/* Softer, cleaner alternating section backgrounds */
.blackbg { background-color: var(--vl-light); }
.greybg  { background-color: var(--vl-dark); }

/* ---------- 3. Section titles ----------------------------- */

.sec-title { margin-bottom: 44px; }

.sec-title .upper-text {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--vl-accent);
    margin-bottom: 12px;
}

.sec-title h2 {
    font-size: clamp(26px, 3.6vw, 40px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--vl-ink);
}

.sec-title h2 strong { color: var(--vl-accent); font-weight: 800; }

/* The (previously empty) .separator becomes a centered accent bar */
.sec-title .separator,
.Section-Title .separator {
    display: block;
    width: 66px;
    height: 4px;
    margin: 18px auto 0;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--vl-accent), var(--vl-gold));
}

/* Dark-section titles keep light text */
.greybg .sec-title h2 { color: #fff; }
.greybg .sec-title .upper-text { color: #6fd3e8; }

/* ---------- 4. Buttons ------------------------------------ */

.button a,
.ttcmsaboutus-desc .about-btn,
.custom-item-3 .link-custom {
    font-family: var(--vl-font);
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: 999px;
    transition: transform 0.28s var(--vl-ease),
                box-shadow 0.28s var(--vl-ease),
                background-color 0.28s var(--vl-ease),
                color 0.28s var(--vl-ease);
}

.button a {
    padding: 13px 30px;
    background: var(--vl-gold);
    color: #1a2430;
    /*box-shadow: 0 8px 20px rgba(255, 192, 0, 0.28);*/
}

.button a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(255, 192, 0, 0.42);
    border: none;
}

/* About CTA -> solid teal pill */
.ttcmsaboutus-desc .about-btn {
    background: var(--vl-accent);
    color: #fff !important;
    border: none;
    padding: 12px 32px;
    box-shadow: 0 8px 20px rgba(0, 147, 185, 0.28);
}

.ttcmsaboutus-desc .about-btn:hover {
    background: var(--vl-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0, 147, 185, 0.4);
}

.custom-item-3 .link-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--vl-shadow-lg);
}

/* ---------- 5. Product category cards --------------------- */

.categoryblock3 { margin: 12px 0; }

.member-box .block_content {
    background: #fff;
    border-radius: var(--vl-radius);
    padding: 14px 14px 0;
    box-shadow: var(--vl-shadow);
    transition: transform 0.35s var(--vl-ease), box-shadow 0.35s var(--vl-ease);
    overflow: hidden;
}

.member-box .block_content:hover {
    transform: translateY(-6px);
    box-shadow: var(--vl-shadow-lg);
}

.cat-img {
    border: none;
    background: #f2f5f7;
    border-radius: var(--vl-radius-sm);
    margin: 0;
    padding: 16px;
    overflow: hidden;
}

.cat-img a { filter: none; }

.cat-img img {
    height: 130px;
    object-fit: contain;
    transition: transform 0.45s var(--vl-ease);
}

.categorylist {
    background: transparent;
    margin: 0;
    padding: 14px 6px 18px;
}

.categorylist .cate-heading a {
    color: var(--vl-ink);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.01em;
    transition: color 0.25s var(--vl-ease);
}

.member-box .block_content:hover .categorylist .cate-heading a { color: var(--vl-accent); }

/* ---------- 6. Counter / impact numbers ------------------- */

.te-counter-card .te-counter-item .number,
.te-counter-card .te-counter-item .number span { letter-spacing: -0.02em; color: var(--vl-gold); }

.te-counter-card .te-counter-item .title {
    letter-spacing: 0.04em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

/* ---------- 7. Why Choose Us ------------------------------ */

.pbmit-ihbox-style-8 .pbmit-element-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--vl-ink);
}

.pbmit-ihbox-style-8 .pbmit-heading-desc {
    color: var(--vl-body);
    font-size: 14.5px;
    line-height: 1.6;
}

.ihbox-one-img-col .ihbox-imgbox img { box-shadow: var(--vl-shadow); }

/* ---------- 8. Project cards ------------------------------ */

.custom-item-3 {
    border: none;
    border-radius: var(--vl-radius);
    box-shadow: var(--vl-shadow);
    transition: transform 0.4s var(--vl-ease), box-shadow 0.4s var(--vl-ease);
}

.custom-item-3:hover {
    transform: translateY(-6px);
    box-shadow: var(--vl-shadow-lg);
}

.custom-item-3:before {
    background: linear-gradient(180deg, rgba(10, 16, 24, 0.35) 0%, rgba(10, 16, 24, 0.82) 100%);
    opacity: 1;
}

.custom-item-3 .desc-1 {
    font-size: clamp(19px, 2.4vw, 26px);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

/* ---------- 9. About section text ------------------------- */

#ttcmsaboutus .ttcmsaboutus-desc .tt-title {
    color: var(--vl-ink);
    font-weight: 800;
    letter-spacing: -0.01em;
}

#ttcmsaboutus .ttcmsaboutus-desc .desc {
    color: var(--vl-body);
    line-height: 1.75;
}

/* ---------- 10. Testimonials ------------------------------ */

.OurClients .card {
    background: #fff;
    border-radius: var(--vl-radius);
    box-shadow: var(--vl-shadow);
    padding: 34px 26px;
    max-width: 920px;
    margin: 10px auto;
}

.OurClients .client-desc {
    color: var(--vl-body);
    font-size: 17px;
    line-height: 1.8;
    font-style: italic;
}

.OurClients .client-usertitle {
    color: var(--vl-ink);
    font-weight: 700;
    margin-top: 12px;
}

.OurClients .client-img .image img {
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(16, 26, 40, 0.18);
}

/* ---------- 11. Deep Stambh / feature copy ---------------- */

.DesignPart p { line-height: 1.8; }

.DesignPart p span,
.wdoffer-content .title {
    font-weight: 800;
    letter-spacing: -0.01em;
}

/* Rounded media on feature sections */
.DesignPart video,
.VideoSection video,
.Roomlight img {
    border-radius: var(--vl-radius);
}

.Roomlight img { border-radius: 0; } /* full-bleed mood image stays edge-to-edge */

/* ---------- 12. Top bar + navigation ---------------------- */

.top-container {
    background: linear-gradient(90deg, var(--vl-accent-dark), var(--vl-accent));
    font-size: 14px;
    letter-spacing: 0.01em;
}

.top-container a { transition: opacity 0.25s var(--vl-ease); }
.top-container a:hover { opacity: 0.82; }

#navbar { box-shadow: 0 2px 14px rgba(0, 0, 0, 0.28); }

.navbar-nav > li > a {
    font-size: 12px;
    letter-spacing: 0.06em;
    font-weight: 700;
    border-radius: 8px;
    transition: background-color 0.25s var(--vl-ease), color 0.25s var(--vl-ease);
}

.navbar-nav > li > a:hover {
    background: var(--vl-accent);
    color: #fff;
}

.dropdown-menu {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    padding: 8px;
    overflow: hidden;
}

.dropdown-menu > li > a {
    border-radius: 8px;
    padding: 10px 18px;
    transition: background-color 0.2s var(--vl-ease), color 0.2s var(--vl-ease);
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    background: var(--vl-accent);
    color: #fff;
}

/* ---------- 13. Footer ------------------------------------ */

.footersection {
    background: #101215;
    padding-top: 56px;
}

.footertitle {
    font-size: 15px;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
}

.footerabout { line-height: 1.8; color: #c3c9d0 !important; }
.footerabout span { color: #fff; font-weight: 700; }

.footercolwidth {
    border-right: none !important;
    font-size: 15px;
}

.footercolwidth li a {
    color: #c3c9d0;
    transition: color 0.22s var(--vl-ease), padding-left 0.22s var(--vl-ease);
}

.footercolwidth li a:hover {
    color: #fff;
    padding-left: 4px;
}

.ftr { background: var(--vl-accent); }
.copyrights { letter-spacing: 0.01em; }

/* ---------- 14. Accessibility & polish -------------------- */

html { scroll-behavior: smooth; }

a:focus-visible,
button:focus-visible,
.navbar-nav > li > a:focus-visible,
input:focus-visible,
.slider:focus-visible {
    outline: 3px solid var(--vl-accent);
    outline-offset: 2px;
    border-radius: 4px;
}

img { max-width: 100%; }

/* Range slider thumb (mood control) accent */
.Roomlight .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--vl-gold);
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.Roomlight .slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--vl-gold);
    border: 3px solid #fff;
    cursor: pointer;
}
