/* 
 * OMNISCALE Solutions Private Limited — Core Design System & Custom Premium Styles
 * Designed as a unified production-ready stylesheet.
 */

/* ── 1. CORE VARIABLES & INITIAL SYSTEM ── */
:root {
    --primary-hsl: 240, 37%, 27%;
    /* #2b2b5e */
    --primary: hsl(var(--primary-hsl));
    --primary-dark: #121235;

    --accent-hsl: 336, 100%, 45%;
    /* #e6005c */
    --accent: hsl(var(--accent-hsl));
    --accent-hover: #05a08a;

    --bg: #FFFFFF;
    --white: #FFFFFF;
    --heading: #000000;
    --para: #475569;
    --border: rgba(15, 23, 42, 0.08);
    --shadow: 0 4px 40px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 20px 50px rgba(230, 0, 92, 0.08);

    --radius: 16px;
    --radius-sm: 10px;

    /* Spacing system tokens */
    --section-pad: 60px 0;
    --container-max: 1200px;
}

/* Force Inter site-wide */
html,
body,
* {
    font-family: 'Inter', sans-serif !important;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: var(--bg);
    color: var(--heading);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography Hierarchy */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--heading);
}

/* ── 2. INTERACTIVE CURSOR MODULE ── */
.cursor {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, background 0.3s;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(230, 0, 92, 0.3);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), width 0.3s, height 0.3s;
    transform: translate(-50%, -50%);
}

/* ── 3. HEADER & FIXED NAVIGATION ── */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    background: #0000007a;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

#navbar.scrolled {
    background: rgba(43, 43, 94, 0.94);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-logo {
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.04em;
}

.nav-logo span {
    color: var(--accent);
}

.textarea-with-icon .icon {
    top: 18px;
    left: 12px;
    transform: none;
}

.textarea-with-icon textarea {
    padding-top: 18px !important;
    min-height: 120px;
    resize: vertical;
}

.textarea-with-icon .icon svg {
    display: block;
    margin-top: 2px;
}

/* Form heading inside lead card */
.lead-form-heading {
    font-size: 1.125rem;
    margin: 0 0 14px 0;
    color: var(--heading);
    font-weight: 700;
}

/* Lead form header layout */
.lead-form-header {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
    margin-bottom: 18px;
}

.lead-form-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.lead-form-heading {
    font-size: 1.35rem;
    margin: 0 0 8px 0;
    line-height: 1.15;
}

.lead-form-sub {
    margin: 0;
    color: rgba(15, 23, 42, 0.6);
    font-size: 0.95rem;
}

@media(min-width:992px) {
    .lead-form-header {
        padding-bottom: 22px;
        margin-bottom: 22px;
    }

    .lead-form-heading {
        font-size: 1.5rem;
    }
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--accent) !important;
    color: var(--white) !important;
    padding: 8px 24px;
    border-radius: 100px;
    border: 1px solid var(--accent) !important;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-nav:hover {
    background: #ad0043 !important;
    border-color: #ad0043 !important;
    transform: translateY(-2px);
    color: var(--white) !important;
}

.btn-nav:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(230, 0, 92, 0.25);
}

.hamburger {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 8px;
    height: 44px;
    width: 44px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

/* ── 4. HERO SECTION (GLASSMORPHISM & PARTICLES) ── */
.hero-premium {
    background: url('/assets/img/new-bnrr.webp') center/cover no-repeat, radial-gradient(circle at top right, #1b1230 0%, #0a0515 100%);
    padding: 160px 0 110px;
    text-align: left;
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .hero-premium {
        padding: 100px 0 60px;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .hero-premium {
        padding: 80px 0 50px;
    }
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.85;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
    mix-blend-mode: screen;
}

.glow-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(230, 0, 92, 0.12) 0%, transparent 60%);
    top: -200px;
    right: -150px;
}

.glow-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(43, 43, 94, 0.3) 0%, transparent 60%);
    bottom: -150px;
    left: -200px;
}

.hero-spotlight {
    position: absolute;
    width: 80vw;
    height: 80vh;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-badge-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero-badge-tag {
        font-size: 0.75rem;
        padding: 8px 16px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-badge-tag {
        font-size: 0.7rem;
        padding: 6px 12px;
        margin-bottom: 16px;
    }
}

.hero-badge-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 0 12px var(--accent);
}

.hero-heading {
    font-size: clamp(2.8rem, 5.2vw, 4.8rem);
    font-weight: 600;
    margin-bottom: 28px;
    max-width: 1100px;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--white);
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: clamp(2rem, 6vw, 3.2rem);
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: clamp(1.8rem, 5vw, 2.4rem);
        margin-bottom: 16px;
    }
}

.hero-heading-gradient {
    background: linear-gradient(135deg, #ffa4c2, #e6005c, #a80041);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 15px rgba(230, 0, 92, 0.15));
}

/* Hero underline for "Growth Partner" */
.hero-heading-gradient {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.hero-heading-gradient::after {
    content: "";
    position: absolute;
    left: 80%;
    transform: translateX(-50%);
    width: 320px;
    height: 36px;
    bottom: -22px;
    z-index: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 80'><path d='M10 50 C120 10 260 10 360 24' stroke='%23ffc107' stroke-width='8' fill='none' stroke-linecap='round' stroke-linejoin='round'/><path d='M352 12 L368 24 L352 36' fill='%23ffc107' stroke='%23ffc107' stroke-linejoin='round' stroke-linecap='round'/></svg>");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
}

@media(max-width:767px) {
    .hero-heading-gradient::after {
        width: 180px;
        height: 23px;
        bottom: -13px;
    }
}

/* Premium Services section styles */
.premium-services .label-tag {
    letter-spacing: 1px
}

.premium-services .section-heading {
    font-size: 32px;
    margin-bottom: 12px
}

.premium-services .service-swiper {
    padding: 12px 0 36px
}

.premium-services .service-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border-radius: 16px;
    padding: 28px;
    min-height: 240px;
    box-shadow: 0 18px 40px rgba(13, 13, 30, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
    transition: transform 0.36s cubic-bezier(.22, .9, .32, 1), box-shadow 0.36s
}

.premium-services .service-card>* {
    position: relative;
    z-index: 2
}

.premium-services .service-card::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 160px;
    border-radius: 50%;
    right: -40px;
    top: -30px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 59, 122, 0.12), rgba(255, 59, 122, 0) 60%);
    transform: rotate(12deg);
    z-index: 1
}

.premium-services .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 26px 60px rgba(13, 13, 30, 0.18)
}

.premium-services .service-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgb(224 224 224), rgb(255 255 255));
    box-shadow: 0 8px 24px rgba(11, 11, 30, 0.06);
    color: var(--accent);
    font-size: 22px
}

.premium-services .service-icon-wrap svg {
    width: 34px;
    height: 34px
}

/* ── LEAD GENERATION SECTION ── */
.lead-section {
    background: #372959;
    padding: 72px 0;
}

.lead-section .lead-content {
    color: var(--white);
}

.lead-section .lead-content .section-heading {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--white);
}

.lead-section .label-tag {
    color: rgba(255, 255, 255, 0.9);
}

.lead-section .section-sub {
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
}

.lead-form-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #fff7fb 50%, #fff2f6 100%);
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 18px 50px rgba(11, 11, 30, 0.06);
    border: 1px solid rgba(230, 0, 92, 0.08);
}

.lead-form-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(255, 122, 167, 0.03), rgba(230, 0, 92, 0.02));
    pointer-events: none;
}

.lead-form .contact-form-input {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid var(--border);
    font-size: 0.95rem;
}

.lead-form .contact-form-input:focus {
    outline: none;
    box-shadow: 0 6px 24px rgba(230, 0, 92, 0.06);
    border-color: var(--accent);
}

/* Ensure lead form inputs are dark on light background (overrides the global dark contact styles) */
.lead-form-card .contact-form-input {
    background: #ffffff !important;
    color: #8d8d8d !important;
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
}

.lead-form-card .contact-form-input::placeholder {
    color: rgba(15, 23, 42, 0.45) !important;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.01em;
    opacity: 0.9;
}

.lead-form-card .contact-form-input:focus {
    background: #ffffff !important;
    border-color: var(--accent) !important;
    box-shadow: 0 8px 30px rgba(230, 0, 92, 0.06) !important;
}

/* Force black text for form inputs and textarea inside the lead form card */
.lead-form-card input[type="text"],
.lead-form-card input[type="tel"],
.lead-form-card input[type="url"],
.lead-form-card input[type="email"],
.lead-form-card textarea {
    color: #000 !important;
}

.lead-form .btn-contact-submit {
    background: linear-gradient(90deg, var(--accent), #ff7aa7);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
}

/* Strong override for the lead form button to beat global .btn-contact-submit */
.lead-form-card .btn-contact-submit {
    background: linear-gradient(90deg, var(--accent), #ff7aa7) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 10px 30px rgba(230, 0, 92, 0.18) !important;
}

/* Input with icon styles */
.input-with-icon {
    position: relative;
}

.input-with-icon .icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(15, 23, 42, 0.45);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.input-with-icon .icon {
    width: 25px;
    height: 25px;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.03);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.input-with-icon .icon svg {
    width: 15px;
    height: 15px;
}

.input-with-icon .icon svg {
    display: block;
    stroke: currentColor;
}

.input-with-icon input,
.input-with-icon textarea {
    padding-left: 44px !important;
}

.textarea-with-icon textarea {
    padding-top: 12px;
}

.input-with-icon input::placeholder,
.input-with-icon textarea::placeholder {
    color: rgba(15, 23, 42, 0.45) !important;
}

.input-with-icon input:focus~.icon,
.input-with-icon textarea:focus~.icon {
    color: var(--accent);
}

/* Slightly larger button on desktop */
@media(min-width:992px) {
    .lead-form-card .btn-contact-submit {
        padding: 14px 24px;
        font-size: 1.05rem;
    }
}

@media (max-width: 767px) {
    .lead-section {
        padding: 48px 0;
    }

    .lead-form-card {
        padding: 18px;
    }

    .lead-content {
        text-align: center;
    }

    .lead-content .section-heading {
        font-size: 1.8rem;
    }

    .lead-content .section-sub {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .lead-section {
        padding: 40px 0;
    }

    .lead-form-card {
        padding: 14px;
    }

    .lead-form-heading {
        font-size: 1.2rem;
    }

    .lead-form-sub {
        font-size: 0.9rem;
    }
}

.premium-services .service-name {
    font-weight: 700;
    font-size: 18px;
    margin-top: 14px;
    color: #111
}

.premium-services .service-desc {
    color: var(--muted);
    margin-top: 10px;
    line-height: 1.45
}

.premium-services .service-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(255, 59, 122, 0.06), rgba(255, 59, 122, 0.03));
    transition: background 0.25s
}

.premium-services .service-card:hover .service-icon-wrap {
    transform: scale(1.06)
}

@media (max-width:991px) {
    .premium-services .service-card {
        min-height: 220px;
        padding: 20px
    }

    .premium-services .service-icon-wrap {
        width: 60px;
        height: 60px
    }
}


.hero-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.15rem;
    line-height: 1.75;
    max-width: 780px;
    margin-bottom: 45px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .hero-sub {
        font-size: 1rem;
        margin-bottom: 35px;
    }
}

@media (max-width: 480px) {
    .hero-sub {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
}

.btn-hero-audit {
    background: linear-gradient(135deg, var(--accent), #ad0043);
    color: var(--white);
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(230, 0, 92, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-hero-audit:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(230, 0, 92, 0.5);
    background: linear-gradient(135deg, #ff1a7a, var(--accent));
}

.btn-hero-audit:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 0 8px 20px rgba(230, 0, 92, 0.35);
}

@media (max-width: 768px) {
    .btn-hero-audit {
        padding: 12px 32px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .btn-hero-audit {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
}

.btn-hero-explore {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: var(--white);
    padding: 13px 38px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-hero-explore::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 0, 92, 0.9), rgba(255, 26, 122, 0.9));
    z-index: -1;
    transition: left 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-hero-explore::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.btn-hero-explore:hover {
    background: transparent;
    border-color: rgba(230, 0, 92, 0.9);
    color: rgba(255, 255, 255, 1);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(230, 0, 92, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-hero-explore:hover::before {
    left: 0;
}

.btn-hero-explore:hover::after {
    opacity: 1;
}

.btn-hero-explore:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 0, 92, 0.25);
}

@media (max-width: 768px) {
    .btn-hero-explore {
        padding: 12px 32px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .btn-hero-explore {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
}

/* Floating Particles */
.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    pointer-events: none;
    animation: floatUp 15s infinite linear;
}

.particle-1 {
    width: 8px;
    height: 8px;
    left: 12%;
    animation-duration: 20s;
}

.particle-2 {
    width: 6px;
    height: 6px;
    left: 35%;
    animation-duration: 16s;
    animation-delay: 2s;
}

.particle-3 {
    width: 10px;
    height: 10px;
    left: 55%;
    animation-duration: 22s;
    animation-delay: 5s;
}

.particle-4 {
    width: 7px;
    height: 7px;
    left: 78%;
    animation-duration: 18s;
    animation-delay: 1s;
}

.particle-5 {
    width: 9px;
    height: 9px;
    left: 92%;
    animation-duration: 24s;
    animation-delay: 4s;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    15% {
        opacity: 0.35;
    }

    85% {
        opacity: 0.1;
    }

    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}


/* ── 6. SECTION COMMONS ── */
.section-pad {
    padding: var(--section-pad);
}

.label-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.label-tag::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--accent);
}

.section-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 24px;
    line-height: 1.15;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--para);
    line-height: 1.7;
    margin-bottom: 30px;
}

.section-sub-max {
    max-width: 820px;
    margin: 12px auto 0;
}

/* ── 7. ABOUT SECTION & GLASS CARDS ── */
.about-section {
    background: linear-gradient(180deg, rgba(230, 0, 92, 0.015) 0%, transparent 100%);
}

/* Redesigned Who We Are - two column premium layout */
.who-what-how {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 246, 250, 0.98));
    border-radius: 16px;
    padding: 48px;
}

.who-what-how .who-left .label-tag {
    margin-bottom: 8px
}

.who-what-how .who-left .section-heading {
    font-size: 2rem;
    margin-bottom: 8px
}

.who-what-how .who-left .section-sub {
    color: var(--para);
    font-weight: 600;
    margin-bottom: 18px
}

.who-what-how .lead {
    color: rgba(15, 23, 42, 0.85);
    font-size: 1.02rem
}

.who-right .highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.value-card {
    background: var(--white);
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    gap: 18px;
    align-items: center;
    border: 1px solid rgba(15, 23, 42, 0.04);
    box-shadow: 0 12px 34px rgba(11, 11, 30, 0.04);
    transition: transform 0.28s, box-shadow 0.28s;
    min-height: 84px;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(11, 11, 30, 0.10);
}

.value-card .icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), #ff7aa7);
    color: #fff;
    box-shadow: 0 8px 24px rgba(230, 0, 92, 0.12);
    flex: 0 0 64px;
}

.value-card .icon svg {
    width: 22px;
    height: 22px;
    display: block;
    fill: currentColor
}

.value-card h5 {
    margin: 0;
    font-size: 1rem;
    color: var(--primary);
    font-weight: 700;
}

/* Emphasized full-span card */
.value-card.full-span {
    grid-column: 1 / -1;
    background: linear-gradient(90deg, rgba(230, 0, 92, 0.95), rgba(255, 122, 167, 0.95));
    color: #fff;
    border: none;
}

.value-card.full-span .icon {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none
}

.value-card.full-span h5 {
    color: #fff
}

/* Feature list alternative to cards */
.feature-wrap {
    padding: 6px
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 24px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(43, 43, 94, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(230, 0, 92, 0.25);
    box-shadow: 0 20px 40px rgba(230, 0, 92, 0.08), 0 4px 12px rgba(0, 0, 0, 0.01)
}

.feature-item .feature-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 0, 92, 0.06);
    color: var(--accent);
    flex: 0 0 56px;
    border: 1px solid rgba(230, 0, 92, 0.12);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1)
}

.feature-item .feature-badge svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.8px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1)
}

.feature-item:hover .feature-badge {
    background: linear-gradient(135deg, var(--accent), #ff7aa7);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.08) rotate(8deg);
    box-shadow: 0 8px 24px rgba(230, 0, 92, 0.25)
}

.feature-item:hover .feature-badge svg {
    transform: scale(1.05)
}

.feature-content h5 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 700
}

.feature-content .muted {
    margin: 6px 0 0;
    color: var(--para);
    font-size: 0.92rem;
    line-height: 1.5
}

/* Feature Hero Card Style */
.feature-item.feature-hero {
    background: linear-gradient(135deg, #ffffff 0%, #fffbfc 100%);
    border: 1px solid rgba(230, 0, 92, 0.16);
    box-shadow: 0 8px 30px rgba(230, 0, 92, 0.03)
}

.feature-item.feature-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent), #ff7aa7)
}

.feature-item.feature-hero .feature-badge {
    background: linear-gradient(135deg, var(--accent), #ff7aa7);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(230, 0, 92, 0.2)
}

.feature-item.feature-hero:hover {
    border-color: rgba(230, 0, 92, 0.35);
    box-shadow: 0 20px 45px rgba(230, 0, 92, 0.12)
}

@media(max-width:991px) {
    .feature-item {
        padding: 18px 20px;
        gap: 16px
    }

    .feature-item .feature-badge {
        width: 48px;
        height: 48px;
        flex: 0 0 48px
    }

    .feature-item .feature-badge svg {
        width: 20px;
        height: 20px
    }
}

@media(max-width:991px) {
    .who-what-how {
        padding: 28px
    }

    .who-right .highlight-grid {
        grid-template-columns: repeat(1, 1fr)
    }
}

.about-content {
    padding-right: 20px;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--para);
    font-weight: 500;
    font-size: 1rem;
}

.feature-dot {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(230, 0, 92, 0.08);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Luxury Glassmorphic Highlight Cards */
.highlight-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(230, 0, 92, 0.04);
    border-radius: var(--radius);
    padding: 24px;
    height: 100%;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.02);
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.highlight-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(230, 0, 92, 0.15);
    box-shadow: var(--shadow-hover);
}

.card-flex {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    color: var(--accent);
}

.about-card-desc {
    font-size: 0.88rem;
    color: var(--para);
    margin-top: 6px;
    line-height: 1.5;
}

/* ── 8. KEY HIGHLIGHTS GRID ── */
/* ********** Premium About card & hero tweaks ********** */
.premium-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #ffffff);
    box-shadow: 0 18px 50px rgba(11, 11, 30, 0.08);
    border-radius: 14px;
    padding: 36px;
    margin-top: -60px
}

.premium-card .section-heading-sm {
    color: var(--primary)
}

.premium-card .values-row {
    gap: 14px
}

@media (max-width: 991px) {
    .premium-card {
        margin-top: 0;
        padding: 28px
    }
}

/* Minimal hero presentation — single line title */
.about-hero {
    background-position: center center;
    min-height: 180px;
    display: flex;
    align-items: center
}

.about-hero .section-heading {
    color: #fff;
    font-size: 2.4rem;
    letter-spacing: 1px
}

/* ************************************************** */

/* ── 8. KEY HIGHLIGHTS GRID ── */
.highlights-section {
    background: linear-gradient(180deg, #f8fafd 0%, #f1f5f9 100%);
    border-radius: 24px;

}

.highlights-grid .highlight-card {
    background: var(--white);
    border: 1px solid rgba(15, 23, 42, 0.03);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.015);
}

.highlights-grid .highlight-card:hover {
    background: var(--white);
    border-color: rgba(230, 0, 92, 0.2);
    box-shadow: var(--shadow-hover);
}

.highlight-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    color: var(--accent);
}

.highlight-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--heading);
}

/* ── 9. SERVICES MODULE ── */
#services {
    position: relative;
}

/* Show navbar dropdown on hover for large screens (desktop) */
@media (min-width: 992px) {
    .nav-links .dropdown:hover>.dropdown-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .nav-links .dropdown .dropdown-menu {
        margin-top: 0.25rem;
    }

    /* Bridge the gap to prevent closing on hover transition */
    .nav-links .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -10px;
        left: 0;
        right: 0;
        height: 10px;
        background: transparent;
    }
}

/* Dropdown visual fixes */
.nav-links .nav-link.dropdown-toggle::after {
    display: none;
    /* hide bootstrap default caret */
}

.nav-caret {
    display: inline-block;
    vertical-align: middle;

    color: rgba(255, 255, 255, 0.95);
}

.nav-links .dropdown-menu {
    background: rgba(11, 11, 30, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(11, 11, 30, 0.4);
    padding: 8px 0;
    min-width: 260px;
}

.nav-links .dropdown-menu .dropdown-item {
    color: rgba(255, 255, 255, 0.95);
    padding: 8px 20px;
}

.nav-links .dropdown-menu .dropdown-item:hover,
.nav-links .dropdown-menu .dropdown-item:focus {
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
}


/* Place the decorative background in a separate layer so we can control its opacity */
#services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/wave_bg.png') center/cover no-repeat;
    opacity: 0.55;
    /* adjust this value to increase/decrease background visibility */
    pointer-events: none;
    z-index: 0;
}

/* Ensure section content sits above the background layer */
#services>.container {
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--white);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-top: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    height: 100%;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: var(--shadow-hover);
}

.service-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(230, 0, 92, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.3s;
}

.service-card:hover .service-icon-wrap {
    background: var(--accent);
}

.service-icon-wrap svg {
    color: var(--accent);
    transition: all 0.3s;
}

.service-card:hover .service-icon-wrap svg {
    color: var(--white);
    transform: scale(1.1);
}

.service-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--para);
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: 24px;
    transition: all 0.3s;
}

.service-card:hover .service-link {
    gap: 12px;
    color: var(--accent-hover);
}

/* Service Swiper slider offsets */
.service-swiper {
    padding: 20px 20px 80px 20px !important;
    margin: 0 -20px !important;
    position: relative;
    overflow: visible !important;
    /* Allow card hover translateY scale shadows to paint cleanly */
}

/* Rounded Navigation Glass Buttons (Centered at the bottom flanking pagination) */
.service-swiper .swiper-button-prev,
.service-swiper .swiper-button-next {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 50%;
    color: var(--primary) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
    top: auto;
    bottom: 15px;
    z-index: 10;
}

.service-swiper .swiper-button-prev {
    left: calc(50% - 80px);
    transform: translateX(-50%);
}

.service-swiper .swiper-button-next {
    left: calc(50% + 80px);
    transform: translateX(-50%);
}

.service-swiper .swiper-button-prev::after,
.service-swiper .swiper-button-next::after {
    font-size: 15px !important;
    font-weight: 900;
}

.service-swiper .swiper-button-prev:hover,
.service-swiper .swiper-button-next:hover {
    background: var(--accent);
    color: var(--white) !important;
    border-color: var(--accent);
    box-shadow: 0 8px 25px rgba(230, 0, 92, 0.3);
    transform: translateX(-50%) translateY(-2px) scale(1.05);
}

/* Swiper Pagination Bullets (Vertically centered with navigation arrows) */
.service-swiper .swiper-pagination {
    bottom: 27px !important;
    width: auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

/* ── 10. TESTIMONIALS MODULE ── */
.testimonial-video-placeholder {
    background: #f1f5f9;
    border-radius: var(--radius);
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonial-video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 0, 92, 0.03), rgba(43, 43, 94, 0.03));
}

.quote-icon {
    font-size: 4rem;
    line-height: 1;
    color: rgba(230, 0, 92, 0.15);
    font-family: Georgia, serif;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1.15rem;
    color: var(--heading);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #9a003c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 8px 20px rgba(230, 0, 92, 0.2);
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--heading);
}

.author-role {
    font-size: 0.85rem;
    color: var(--para);
    margin-top: 2px;
}

/* ── 11. ALTERNATING DEEP TRANSFORMATION MODULE ── */
.alternating-section {
    background: transparent;
    margin: 20px 0 40px;
}

.alternating-row {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 252, 0.98));
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 18px 40px rgba(11, 11, 30, 0.04);
    margin-bottom: 20px;
}

.alternating-image-placeholder {
    background: linear-gradient(135deg, rgba(43, 43, 94, 0.06), rgba(230, 0, 92, 0.03));
    border-radius: 14px;
    height: 340px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.04);
    background-size: cover;
    background-position: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.alternating-image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(230, 0, 92, 0.02));
    pointer-events: none;
}

.alternating-image-placeholder:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 30px 60px rgba(11, 11, 30, 0.06);
}

.case-meta {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.6px;
}

.alternating-heading {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--heading);
    line-height: 1.2;
}

.alternating-desc {
    color: var(--para);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 18px;
    margin-top: 12px;
}

.btn-alternating {
    display: inline-block;
    background: linear-gradient(90deg, var(--accent), #ff7aa7);
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    color: #fff !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.btn-alternating:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(230, 0, 92, 0.12);
}

.btn-alternating:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(230, 0, 92, 0.08);
}

/* ── 12. PREMIUM GLASS BLOG MODULE ── */
.blog-section {
    background: var(--primary) !important;
    position: relative;
    overflow: hidden;
}

.btn-blog-view {
    border-color: rgba(255, 255, 255, 0.25) !important;
    color: var(--white) !important;
    padding: 10px 32px !important;
    font-size: 0.9rem !important;
    transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1) !important;
}

.btn-blog-view:hover {
    border-color: var(--white) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 4px 15px rgba(230, 0, 92, 0.2) !important;
}

.btn-blog-view:active {
    background: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 2px 8px rgba(230, 0, 92, 0.1) !important;
}

.blog-card-custom {
    background: rgba(255, 255, 255, 0.035) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(16px);
    border-radius: var(--radius);
    padding: 20px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.blog-card-custom:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blog-card-img {
    height: 200px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.blog-img-1 {
    background: linear-gradient(135deg, #1b2e5c, #5c2b5c);
}

.blog-img-2 {
    background: linear-gradient(135deg, #2b5c43, #2b565c);
}

.blog-img-3 {
    background: linear-gradient(135deg, #5c432b, #5c2b3e);
}

.blog-body-custom {
    padding: 0 !important;
}

.blog-title-custom {
    color: var(--white) !important;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.35;
    margin-bottom: 12px;
}

.blog-excerpt-custom {
    font-size: 0.92rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.6;
}

.blog-link-custom {
    margin-top: 18px !important;
    color: var(--accent) !important;
    font-weight: 700;
}

.blog-link-custom:hover {
    color: #ff5c9d !important;
}

/* ── 13. YOUTUBE CHANNEL MODULE ── */
.youtube-section {
    background: var(--primary) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.youtube-placeholder-card {
    background: rgba(255, 255, 255, 0.04);
    height: 130px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

.youtube-placeholder-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 0, 92, 0.1), transparent);
    opacity: 0.5;
}

.youtube-placeholder-card:hover {
    transform: scale(1.04);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.btn-youtube-sub {
    background: var(--accent) !important;
    padding: 14px 44px !important;
    border-radius: 100px;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-flex;
    text-decoration: none;
    color: var(--white) !important;
}

.btn-youtube-sub:hover {
    background: var(--accent-hover) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 0, 92, 0.4);
}

/* ── 14. NEWS PR MEDIA MODULE ── */
.news-section {
    background: var(--white) !important;
}

.news-card-custom {
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    padding: 24px !important;
    background: var(--white);
    height: 100% !important;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.news-card-custom:hover {
    transform: translateY(-6px);
    border-color: rgba(230, 0, 92, 0.2) !important;
    box-shadow: var(--shadow-hover);
}

.news-img-placeholder {
    background: #f1f5f9;
    height: 160px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.news-img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 0, 92, 0.02), rgba(43, 43, 94, 0.02));
}

.news-title-custom {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: var(--heading) !important;
    line-height: 1.4;
}

/* ── 15. FAQ & LUXURY GLASS CONTACT FORM ── */
.faq-contact-section {
    background: #f8fafc !important;
}

.faq-accordion-item {
    border: none !important;
    border-radius: var(--radius-sm) !important;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03) !important;
    background: var(--white) !important;
    border: 1px solid rgba(15, 23, 42, 0.04) !important;
}

.faq-accordion-button {
    font-weight: 700 !important;
    color: var(--primary) !important;
    padding: 20px 24px !important;
    font-size: 1rem !important;
}

.faq-accordion-body {
    color: var(--para) !important;
    padding: 4px 24px 24px !important;
    line-height: 1.7 !important;
    font-size: 0.95rem !important;
}

/* Premium Pink/Navy Contact Card */
.contact-info-card {
    background: linear-gradient(135deg, var(--accent), #9a003c) !important;
    border-radius: var(--radius) !important;
    padding: 48px 40px !important;
    color: var(--white) !important;
    box-shadow: 0 15px 40px rgba(230, 0, 92, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card-title {
    font-weight: 600 !important;
    color: var(--white) !important;
    margin-bottom: 28px !important;
}

.contact-form-input {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    color: var(--white) !important;
    padding: 9px 20px !important;
    border-radius: var(--radius-sm) !important;
    font-size: 0.95rem !important;
    transition: all 0.3s !important;
}

.contact-form-input::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.contact-form-input:focus {
    background: rgba(255, 255, 255, 0.14) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1) !important;
    outline: none !important;
}

.btn-contact-submit {
    background: #f0f0f0 !important;
    color: var(--accent) !important;
    font-weight: 700 !important;
    padding: 14px !important;
    font-size: 1rem !important;
    border: 1px solid #f0f0f0 !important;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

.btn-contact-submit:hover {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 0, 92, 0.35) !important;
}

.btn-contact-submit:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(230, 0, 92, 0.25);
}

/* ── 16. ULTRA PREMIUM FOOTER ── */
.site-footer {
    background: #f8f9fa !important;
    padding-top: 0 !important;
    position: relative;
    overflow: hidden;
}

.site-footer .container {
    padding-top: 40px !important;
    padding-bottom: 10px !important;
}

.footer-consultation-banner {
    background: linear-gradient(135deg, var(--accent), #960039) !important;
    padding: 56px 0 !important;
    text-align: center;
    margin-bottom: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.footer-consultation-heading {
    font-weight: 700 !important;
    font-size: 1.8rem !important;
    margin-bottom: 12px !important;
    letter-spacing: -0.03em !important;
}

.footer-consultation-sub {
    font-size: 1rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 28px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
}

.btn-footer-audit {
    background: var(--white) !important;
    color: var(--accent) !important;
    padding: 12px 36px !important;
    border-radius: 100px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1) !important;
}

.btn-footer-audit:active {
    transform: scale(1.01) !important;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15) !important;
    color: var(--accent) !important;
    background: var(--white) !important;
}

@media (max-width: 768px) {
    .btn-footer-audit {
        width: auto !important;
        padding: 10px 28px !important;
        font-size: 0.9rem !important;
    }
}

.footer-logo-custom {
    font-weight: 700 !important;
    font-size: 1.6rem !important;
    color: #000 !important;
    letter-spacing: -0.03em !important;
    margin-bottom: 16px !important;
    background: var(--about-primary);
    padding: 0px 14px;
    border-radius: 4px;
}

.footer-desc-custom {
    color: #666 !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
}

.footer-heading-custom {
    font-weight: 700 !important;
    font-size: 1rem !important;
    color: #000 !important;
    text-transform: capitalize !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 20px !important;
}

.footer-links-list {
    line-height: 2 !important;
}

.footer-link-custom {
    color: #666 !important;
    text-decoration: none !important;
    font-size: 0.93rem !important;
    font-weight: 400 !important;
    transition: all 0.3s ease !important;
}

.footer-link-custom:hover {
    color: hsl(336, 100%, 45%) !important;
    padding-left: 4px !important;
}

.footer-contact-custom {
    color: #666 !important;
    font-size: 0.93rem !important;
    line-height: 1.8 !important;
    font-weight: 400 !important;
    margin-bottom: 14px !important;
}

.footer-contact-email,
.footer-contact-phone {
    color: #000 !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.footer-contact-email:hover,
.footer-contact-phone:hover {
    color: hsl(336, 100%, 45%) !important;
}

/* Footer Contact Items with Icons */
.footer-contact-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    line-height: 1.5 !important;
}

.footer-icon {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0 !important;
    stroke: hsl(336, 100%, 45%) !important;
    margin-top: 2px !important;
    transition: all 0.3s ease !important;
}

.footer-contact-item:hover .footer-icon {
    color: hsl(336, 100%, 45%) !important;
    transform: scale(1.1) !important;
}

.footer-contact-item strong {
    display: block !important;
    margin-bottom: 4px !important;
    color: #000 !important;
    font-weight: 600 !important;
}

.footer-address-text {
    display: block !important;
    line-height: 1.6 !important;
    font-size: 0.93rem !important;
    color: #666 !important;
}

/* Social Links */
.footer-social-links {
    display: flex !important;
    gap: 12px !important;
    margin-top: 24px !important;
}

.footer-social-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: #f0f0f0 !important;
    border: 1px solid #ddd !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: hsl(336, 100%, 45%) !important;
    transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1) !important;
    text-decoration: none !important;
}

.footer-social-icon svg {
    width: 18px !important;
    height: 18px !important;
}

.footer-social-icon:hover {
    background: hsl(336, 100%, 45%) !important;
    color: var(--white) !important;
    border-color: hsl(336, 100%, 45%) !important;
    transform: translateY(-4px) scale(1.1) !important;
    box-shadow: 0 8px 20px rgba(230, 0, 92, 0.3) !important;
}

.footer-quick-links-horizontal {
    display: none !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 24px !important;
    padding: 5px 0 !important;
}

.footer-quick-links-horizontal a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.footer-quick-links-horizontal a:hover {
    color: var(--accent) !important;
}

.footer-quick-links-horizontal svg {
    stroke: currentColor !important;
    transition: all 0.3s ease !important;
}

.footer-quick-links-horizontal a:hover svg {
    stroke: var(--accent) !important;
    transform: translateY(-2px) !important;
}

.footer-bottom-bar {
    border-top: 1px solid #ddd !important;
    color: #000 !important;
    font-size: 0.85rem !important;
    font-weight: 400 !important;
    letter-spacing: 0.5px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
}

.footer-bottom-left {
    flex: 1 !important;
    text-align: left !important;
    color: #000 !important;
}

.footer-bottom-right {
    flex: 1 !important;
    text-align: right !important;
    color: #000 !important;
}

.footer-credit-link {
    color: var(--accent) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: color 0.3s ease !important;
}

.footer-credit-link:hover {
    color: var(--accent) !important;
    text-decoration: underline !important;
}

/* ── 17. MOBILE MENU RESPONSIVE MODAL ── */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1500;
    background: rgba(10, 5, 20, 0.98);
    backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    padding: 100px 20px 40px 20px;
}

.mobile-menu.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
    width: 100%;
    text-align: left;
    padding: 8px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mobile-menu.open a {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.open a:nth-child(2) {
    animation-delay: 0.05s;
}

.mobile-menu.open a:nth-child(3) {
    animation-delay: 0.1s;
}

.mobile-menu.open a:nth-child(4) {
    animation-delay: 0.15s;
}

.mobile-menu.open a:nth-child(5) {
    animation-delay: 0.2s;
}

.mobile-menu.open a:nth-child(6) {
    animation-delay: 0.25s;
}

.mobile-menu.open a:nth-child(7) {
    animation-delay: 0.3s;
}

.mobile-menu.open a:nth-child(8) {
    animation-delay: 0.35s;
}

.mobile-menu.open a:nth-child(9) {
    animation-delay: 0.4s;
}

.mobile-menu.open a:nth-child(10) {
    animation-delay: 0.45s;
}

.mobile-menu.open a:nth-child(11) {
    animation-delay: 0.5s;
}

.mobile-menu.open a:nth-child(12) {
    animation-delay: 0.55s;
}

.mobile-menu.open a:nth-child(13) {
    animation-delay: 0.6s;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
}

.close-menu {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 2.4rem;
    color: var(--white);
    padding: 8px;
    transition: all 0.3s ease;
    z-index: 1501;
}

.close-menu:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

@media (max-width: 480px) {
    .mobile-menu {
        gap: 12px;
        padding: 80px 20px 20px 20px;
    }

    .mobile-menu a {
        font-size: 0.9rem;
        padding: 6px 16px;
    }

    .close-menu {
        font-size: 2rem;
    }
}

/* Swiper Styling Overrides */
.swiper-pagination-bullet-active {
    background: var(--accent) !important;
}

/* ── 19. PHILOSOPHY / ABOUT SECTION CARD ── */
.philosophy-card {
    background: linear-gradient(135deg, rgba(230, 0, 92, 0.05), rgba(43, 43, 94, 0.05));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px 40px;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.philosophy-card:hover {
    border-color: rgba(230, 0, 92, 0.2);
    box-shadow: 0 12px 40px rgba(230, 0, 92, 0.08);
    transform: translateY(-4px);
}

.philosophy-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--para);
    margin-bottom: 20px;
    font-weight: 400;
}

.philosophy-text:last-child {
    margin-bottom: 0;
}

/* RESPONSIVE LAYOUT MEDIA BREAKPOINTS */
@media (max-width: 991px) {
    .section-pad {
        padding: 70px 0;
    }

    .nav-links,
    .btn-nav {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
    }

    .hamburger span {
        width: 22px;
        height: 2px;
    }

    /* Avoid navbar overlay on mobile */
    #navbar {
        padding: 18px 0;
    }

    .hero-premium {
        padding: 110px 0 50px;
    }
}


@media (max-width: 575px) {
    .section-pad {
        padding: 60px 0;
    }

    .hero-heading {
        font-size: 2.6rem;
    }

    .contact-info-card {
        padding: 32px 24px !important;
    }
}

/* ------------------------- About page styles (migrated from about.css) ------------------------- */
:root {
    --about-primary: #2b0f4f;
    /* deep purple */
    --about-accent: #ff3b7a;
    /* bright pink */
    --about-muted: #6b6b7a;
}

.about-hero {
    padding: 120px 0 60px;
    /* Use a high-resolution 4k hero image (place file at assets/img/about-hero-4k.jpg) */
    background:
        linear-gradient(180deg, rgba(11, 8, 30, 0.55), rgba(11, 8, 30, 0.55)),
        url('../img/abt-hero.webp') center/cover no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 300px;
    color: #fff;
    text-align: center;
    position: relative;
}

.about-hero .section-heading {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
    color: #ffffff;
}

.about-hero .section-sub {
    max-width: 900px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem
}

/* Mobile fallback: use a lighter image for smaller screens to save bandwidth */
@media (max-width: 767px) {
    .about-hero {
        background-image: linear-gradient(180deg, rgba(11, 8, 30, 0.65), rgba(11, 8, 30, 0.65)), url('../img/about-hero-sm.jpg');
        padding: 80px 20px;
        min-height: 420px
    }

    .about-hero .section-heading {
        font-size: 28px
    }
}

.who-what-how {
    padding: 60px 0
}

.who-what-how .section-heading-sm {
    font-size: 22px;
    margin-bottom: 18px
}

.vision-mission {
    background: #fff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(10, 10, 20, 0.06)
}

.vision-mission .col-md-6 {
    padding: 18px
}

.vision-mission h3 {
    color: var(--about-primary);
    margin-bottom: 8px
}

.vision-mission p {
    color: var(--about-muted)
}

.values-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 24px
}

.value-card {
    flex: 1 1 160px;
    background: #fff;
    border-radius: 8px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(10, 10, 20, 0.04)
}

.value-card .icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--about-accent), #ff7aa8);
    color: #fff;
    margin-bottom: 10px
}

.value-card h5 {
    font-size: 15px;
    margin: 0
}

.milestones {
    background: var(--about-primary);
    color: #fff;
    padding: 48px 0
}

.milestones .milestone-track {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center
}

.milestone {
    background: linear-gradient(180deg, rgba(255, 59, 122, 0.12), rgba(255, 59, 122, 0.06));
    border-radius: 8px;
    padding: 20px 26px;
    min-width: 160px;
    text-align: center
}

.milestone h4 {
    font-size: 20px;
    margin: 0 0 6px
}

.milestone p {
    opacity: 0.9;
    margin: 0
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center
}

.client-box {
    background: #fff;
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(11, 11, 30, 0.06);
    min-width: 140px;
    text-align: center
}

.faq-contact {
    padding: 48px 0
}

.faq-accordion .accordion-button {
    background: #fff
}

.contact-card {
    background: linear-gradient(180deg, var(--about-accent), #ff7aa8);
    padding: 24px;
    border-radius: 10px;
    color: #fff
}

.contact-card input,
.contact-card textarea {
    background: rgba(255, 255, 255, 0.12);
    border: 0;
    color: #fff
}

.contact-card .btn {
    background: #fff;
    color: var(--about-primary);
    border-radius: 6px
}

@media (max-width:767px) {
    .about-hero {
        padding: 80px 20px
    }

    .about-hero .section-heading {
        font-size: 28px
    }

    .milestone {
        min-width: 120px
    }
}

/* small utilities */
.section-heading-sm {
    color: var(--about-primary);
    font-weight: 700
}

/* Problems We Solve Section */
.problems-section {
    background: linear-gradient(180deg, rgba(247, 246, 250, 0.98), #ffffff);
    position: relative;
    overflow: hidden;
}

.problem-card {
    background: #ffffff;
    border: 1px solid rgba(43, 43, 94, 0.08);
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #ff7aa7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-6px);
    border-color: rgba(230, 0, 92, 0.2);
    box-shadow: 0 20px 40px rgba(230, 0, 92, 0.06), 0 4px 12px rgba(0, 0, 0, 0.01);
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 0, 92, 0.05);
    color: var(--accent);
    margin-bottom: 20px;
    border: 1px solid rgba(230, 0, 92, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.problem-icon-wrap svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.8px;
}

.problem-card:hover .problem-icon-wrap {
    background: linear-gradient(135deg, var(--accent), #ff7aa7);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 6px 15px rgba(230, 0, 92, 0.2);
}

.problem-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.problem-card p {
    font-size: 0.92rem;
    color: var(--para);
    line-height: 1.6;
    margin: 0;
}



@media(max-width:767px) {
    .problem-card {
        padding: 24px;
    }

    .problems-section .row {
        gap: 0.75rem !important;
    }
}

/* Clean How We Do Section Styles */
.how-we-do-section-clean {
    background: #f8fafc;
    padding: 60px 0;
}

.how-nav-pills {
    gap: 6px;
}

.how-nav-pills .nav-link {
    background: transparent;
    border: none;
    border-left: 3px solid transparent;
    color: var(--para);
    font-weight: 600;
    font-size: 1rem;
    text-align: left;
    padding: 12px 16px;
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    align-items: center;
}

.how-nav-pills .nav-link .step-num {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(15, 23, 42, 0.35);
    margin-right: 12px;
    width: 20px;
    transition: color 0.3s;
}

.how-nav-pills .nav-link:hover {
    color: var(--primary) !important;
    background: rgba(43, 43, 94, 0.04) !important;
    transform: none !important;
    border-left-color: rgba(43, 43, 94, 0.2);
}

/* Cancel button-effects.css pink overlay on these nav buttons */
.how-nav-pills .nav-link::before {
    display: none !important;
}

.how-nav-pills .nav-link:hover .step-num {
    color: var(--primary) !important;
}

.how-nav-pills .nav-link.active {
    color: var(--accent) !important;
    background: rgba(230, 0, 92, 0.04) !important;
    border-left-color: var(--accent);
    padding-left: 20px;
}

.how-nav-pills .nav-link.active .step-num {
    color: var(--accent);
}

.how-tab-content {
    background: #ffffff;
    border: 1px solid rgba(43, 43, 94, 0.08);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(11, 11, 30, 0.02);
    min-height: 290px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tab-detail-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
}

.tab-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tab-detail-list li {
    font-size: 0.96rem;
    color: var(--para);
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.tab-detail-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

@media(max-width:767px) {
    .how-we-do-section-clean {
        padding: 50px 0;
    }

    .how-nav-pills {
        flex-direction: row !important;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        margin-bottom: 20px;
    }

    .how-nav-pills .nav-link {
        white-space: nowrap;
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 8px 14px;
    }

    .how-nav-pills .nav-link.active {
        border-left-color: transparent;
        border-bottom-color: var(--accent);
        padding-left: 14px;
    }

    .how-tab-content {
        padding: 24px;
        min-height: auto;
    }
}

/* ------------------------- End migrated about.css ------------------------- */

/* ── 25. PREMIUM CONTACT PAGE CUSTOM STYLES ── */
.contact-hero {
    background: linear-gradient(135deg, rgb(232 232 232 / 95%) 0%, rgb(241 241 241) 100%), url(../img/new-bnrr.webp) center / cover no-repeat;
    padding: 150px 0 80px;
    text-align: center;
    color: var(--heading);
    position: relative;
    overflow: hidden;
}

.contact-hero .hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.7;
    pointer-events: none;
}

.contact-hero .glow-orb-contact {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    mix-blend-mode: multiply;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 0, 92, 0.04) 0%, transparent 60%);
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
}

.contact-hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.contact-hero-sub {
    font-size: 1.1rem;
    color: var(--para);
    max-width: 600px;
    margin: 0 auto;
}

.contact-main-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-card-custom {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    padding: 40px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);
}

.contact-info-list {
    margin-top: 35px;
}

.contact-detail-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 10px;
    padding: 20px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.01);
    border: 1px solid rgba(15, 23, 42, 0.02);
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-detail-card:hover {
    background: rgba(230, 0, 92, 0.02);
    border-color: rgba(230, 0, 92, 0.1);
    transform: translateX(5px);
}

.contact-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(230, 0, 92, 0.08), rgba(230, 0, 92, 0.03));
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

.contact-detail-card:hover .contact-icon-box {
    background: var(--accent);
    color: var(--white);
}

.contact-icon-box svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.8;
}

.contact-detail-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--heading);
}

.contact-detail-content p {
    font-size: 0.95rem;
    color: var(--para);
    margin: 0;
    word-break: break-all;
}

.contact-social-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.contact-social-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--para);
    margin-bottom: 16px;
}

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

.contact-social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.04);
    color: var(--para);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.contact-social-icon:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(230, 0, 92, 0.25);
}

.contact-social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* CTA Box */
.contact-cta-card {
    background: linear-gradient(135deg, #1b1230 0%, #2b2b5e 100%);
    border-radius: 16px;
    padding: 30px;
    color: var(--white);
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(43, 43, 94, 0.15);
}

.contact-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at bottom right, rgba(230, 0, 92, 0.15), transparent 60%);
    pointer-events: none;
}

.contact-cta-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 12px;
}

.contact-cta-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.contact-cta-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.contact-cta-btn {
    background: var(--white);
    color: var(--primary) !important;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 10px 22px;
    border-radius: 100px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-cta-btn:hover {
    background: var(--accent);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 0, 92, 0.3);
}

.contact-cta-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(230, 0, 92, 0.2);
}

/* Contact form customization */
.contact-form-title-wrap {
    margin-bottom: 24px;
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--heading);
}

.contact-form-subtitle {
    font-size: 0.95rem;
    color: var(--para);
    margin: 0;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #fff7fb 50%, #fff2f6 100%);
    border-radius: 20px;
    border: 1px solid rgba(230, 0, 92, 0.08);
    padding: 40px;
    box-shadow: 0 15px 45px rgba(230, 0, 92, 0.03);
}

.contact-form-wrapper .contact-form-input {
    background: #ffffff !important;
    color: #8d8d8d !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
}

.contact-form-wrapper .contact-form-input::placeholder {
    color: rgba(15, 23, 42, 0.5) !important;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.01em;
    opacity: 0.95 !important;
}

.contact-form-wrapper .contact-form-input:focus {
    background: #ffffff !important;
    border-color: var(--accent) !important;
    box-shadow: 0 8px 30px rgba(230, 0, 92, 0.06) !important;
}

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

    .contact-main-section {
        padding: 50px 0;
    }

    .contact-card-custom,
    .contact-form-wrapper {
        padding: 24px;
    }

    .contact-cta-card {
        margin-top: 30px;
    }
}

/* ── VERTICAL TIMELINE SECTION ── */
.how-we-do-section {
    background: #f8fafc;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.how-we-do-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/wave_bg.png') center center repeat;
    background-size: contain;
    opacity: 0.35;
    pointer-events: none;
    z-index: -1;
}

.how-we-do-section>.container {
    position: relative;
    z-index: 1;
}

.timeline-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 24px;
    bottom: 24px;
    width: 3px;
    background: linear-gradient(180deg, var(--accent) 0%, rgba(230, 0, 92, 0.15) 100%);
    border-radius: 4px;
}

.timeline-item {
    display: flex;
    position: relative;
    margin-bottom: 50px;
    width: 100%;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
    padding-right: calc(50% + 48px);
    justify-content: flex-end;
}

.timeline-item:nth-child(even) {
    padding-left: calc(50% + 48px);
    justify-content: flex-start;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 34px;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--accent);
    box-shadow: 0 0 0 3px rgba(230, 0, 92, 0.1);
    z-index: 10;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-item:hover .timeline-marker {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateX(-50%) scale(1.3);
    box-shadow: 0 0 0 6px rgba(230, 0, 92, 0.2);
}

.timeline-content {
    background: var(--white);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.015);
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    max-width: 550px;
}


.timeline-content:hover {
    transform: translateY(-6px);
    border-color: rgba(230, 0, 92, 0.2);
    box-shadow: 0 20px 40px rgba(230, 0, 92, 0.08);
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.timeline-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.timeline-list li {
    font-size: 0.95rem;
    color: var(--para);
    position: relative;
    padding-left: 24px;
    line-height: 1.6;
}

.timeline-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.95rem;
}

/* Responsive Timeline */
@media (max-width: 1024px) {
    .timeline-container::before {
        left: 24px;
        transform: none;
        top: 20px;
        bottom: 20px;
    }

    .timeline-item {
        margin-bottom: 35px;
        padding-left: 56px !important;
        padding-right: 0 !important;
        justify-content: flex-start !important;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 56px !important;
        padding-right: 0 !important;
    }

    .timeline-marker {
        left: 24px;
        top: 26px;
        transform: translateX(-50%);
        width: 14px;
        height: 14px;
    }

    .timeline-item:hover .timeline-marker {
        transform: translateX(-50%) scale(1.3);
    }

    .timeline-content {
        max-width: 100%;
        padding: 24px;
    }

}

@media (max-width: 768px) {
    .how-we-do-section {
        padding: 60px 0;
    }

    .timeline-container::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 48px !important;
        margin-bottom: 30px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 48px !important;
    }

    .timeline-marker {
        left: 20px;
        top: 21px;
        width: 12px;
        height: 12px;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-title {
        font-size: 1.15rem;
        margin-bottom: 12px;
    }

    .timeline-list li {
        font-size: 0.9rem;
    }
}

/* ── FLOATING CONTACT BUTTONS (Call & WhatsApp) ── */
.floating-contact-btns {
    position: fixed;
    bottom: 28px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9990;
    align-items: flex-end;
}

.floating-btn {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    outline: none;
}

/* WhatsApp Button */
.floating-btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

.floating-btn-whatsapp:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.6);
}

/* Call Button */
.floating-btn-call {
    background: linear-gradient(135deg, #2b5ce6 0%, #1a3ab8 100%);
    box-shadow: 0 8px 28px rgba(43, 92, 230, 0.45);
}

.floating-btn-call:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 16px 40px rgba(43, 92, 230, 0.6);
}

/* Icon inside buttons */
.floating-btn svg {
    pointer-events: none;
}

/* Tooltip label */
.floating-btn-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(12px);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 8px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    transform: translateY(-50%) translateX(6px);
}

/* ── WHY OMNISCALE SECTION STYLES ── */
.why-omniscale-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.why-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    text-align: center;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(230, 0, 92, 0.08);
    border-color: rgba(230, 0, 92, 0.15);
}

.why-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(230, 0, 92, 0.1) 0%, rgba(5, 160, 138, 0.1) 100%);
    border-radius: 12px;
    color: var(--accent);
}

.why-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

.why-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.95rem;
    color: var(--para);
    line-height: 1.6;
}

/* ── OUR FOUNDERS SECTION STYLES ── */
.our-founders-section {
    background: #ffffff;
    padding: 60px 0;
}

.founder-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    text-align: center;
}

.founder-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(230, 0, 92, 0.08);
}

.founder-image-placeholder {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, rgba(43, 43, 94, 0.05) 0%, rgba(230, 0, 92, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(43, 43, 94, 0.3);
    font-size: 4rem;
}

.founder-image-placeholder svg {
    width: 80px;
    height: 80px;
    color: rgba(43, 43, 94, 0.2);
}

.founder-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.founder-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--heading);
    margin-top: 24px;
    margin-bottom: 8px;
}

.founder-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 12px;
}

.founder-bio {
    font-size: 0.9rem;
    color: var(--para);
    line-height: 1.6;
    padding: 0 16px 24px;
}

/* ── FOUNDER'S MESSAGE SECTION STYLES ── */
.founders-message-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.message-container {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.03);
    padding: 40px;
    overflow: hidden;
}

.message-content {
    text-align: center;
}

.video-placeholder {
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    border-radius: 12px;
    padding: 60px 20px;
    color: #999;
    font-size: 18px;
}

.floating-btn-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(15, 23, 42, 0.88);
}

.floating-btn:hover .floating-btn-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Pulse ring animation */
.floating-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    animation: floatPulse 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    pointer-events: none;
}

.floating-btn-whatsapp::before {
    background: rgba(37, 211, 102, 0.3);
}

.floating-btn-call::before {
    background: rgba(43, 92, 230, 0.3);
    animation-delay: 1.2s;
}

@keyframes floatPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    60% {
        transform: scale(1.55);
        opacity: 0;
    }

    100% {
        transform: scale(1.55);
        opacity: 0;
    }
}

/* Mobile responsive */
@media (max-width: 480px) {
    .floating-contact-btns {
        bottom: 20px;
        right: 16px;
        gap: 10px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }

    .floating-btn svg {
        width: 22px;
        height: 22px;
    }
}

/* ── 17. CUSTOM PREMIUM LOGO STYLING ── */
.nav-logo {
    display: inline-flex !important;
    align-items: center;
}

.nav-logo-img {
    height: 40px !important;
    /* Elegant size for navbar */
    width: auto !important;
    display: block !important;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.04) !important;
    filter: brightness(1.05) !important;
}

.footer-logo-custom {
    display: inline-flex !important;
    align-items: center;
}

.footer-logo-img {
    height: 48px !important;
    /* Elegant size for footer */
    width: auto !important;
    display: block !important;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

.footer-logo-custom:hover .footer-logo-img {
    transform: scale(1.04) !important;
    filter: brightness(1.05) !important;
}

.footer-contact-phone {
    color: var(--heading) !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.footer-contact-phone:hover {
    color: var(- -accent) !important;
}

/* ── 18. PLATFORMS CAROUSEL SECTION ── */
.platforms-carousel-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.platforms-carousel-section .section-heading {
    margin-bottom: 16px;
}

.platforms-carousel-section .section-sub {
    margin-bottom: 50px;
}

/* Swiper Container */
.platforms-swiper {
    position: relative;
    padding: 20px 50px;
    /* Make room for navigation buttons */
}

.swiper-wrapper {
    padding: 20px 0;
}

/* Platform Logo Card */
.platform-logo-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    border: 1.5px solid rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 192px;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    cursor: pointer;
}

.platform-logo-card:hover {
    border-color: rgba(230, 0, 92, 0.3);
    box-shadow: 0 16px 40px rgba(230, 0, 92, 0.12);
    transform: translateY(-8px);
}

.platform-logo-container {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(43, 43, 94, 0.03) 0%, rgba(230, 0, 92, 0.02) 100%);
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.platform-logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.platform-logo-card:hover .platform-logo-container img {
    filter: grayscale(0%);
    transform: scale(1.08);
}

.d2c-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.15));
}

.platform-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--heading);
    text-align: center;
    letter-spacing: -0.01em;
}

.platform-logo-card:hover .platform-name {
    color: var(--accent);
}

/* Swiper Navigation Buttons */
.platforms-button-prev,
.platforms-button-next {
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1.5px solid rgba(15, 23, 42, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--heading);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
    position: absolute;
    top: 50%;
    z-index: 10;
}

.platforms-button-prev::after,
.platforms-button-next::after {
    font-size: 20px;
    font-weight: 700;
}

.platforms-button-prev {
    left: 16px;
    transform: translateY(-50%);
}

.platforms-button-next {
    right: 16px;
    transform: translateY(-50%);
}

.platforms-button-prev:hover,
.platforms-button-next:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(230, 0, 92, 0.25);
    transform: translateY(-50%) scale(1.08);
}

/* Swiper Pagination */
.platforms-pagination {
    display: flex !important;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    position: relative !important;
}

.platforms-pagination .swiper-pagination-bullet {
    background: rgba(15, 23, 42, 0.15) !important;
    opacity: 1 !important;
    width: 10px !important;
    height: 10px !important;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.platforms-pagination .swiper-pagination-bullet-active {
    background: var(--accent) !important;
    width: 28px !important;
    border-radius: 10px !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .platforms-carousel-section {
        padding: 60px 0;
    }

    .platforms-swiper {
        padding: 20px 20px;
    }

    .platform-logo-card {
        height: 240px;
        padding: 30px 20px;
    }

    .platform-logo-container {
        width: 100px;
        height: 100px;
    }

    .platform-name {
        font-size: 0.9rem;
    }

    .platforms-button-prev,
    .platforms-button-next {
        width: 40px;
        height: 40px;
        opacity: 0.7;
    }

    .platforms-button-prev {
        left: 8px;
    }

    .platforms-button-next {
        right: 8px;
    }
}

@media (max-width: 480px) {
    .platforms-carousel-section .section-heading {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .platforms-carousel-section .section-sub {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .platforms-swiper {
        padding: 15px 0;
    }

    .platform-logo-card {
        height: 200px;
        padding: 20px 15px;
        gap: 12px;
    }

    .platform-logo-container {
        width: 80px;
        height: 80px;
    }

    .platforms-button-prev,
    .platforms-button-next {
        display: none;
    }

    .platforms-pagination {
        margin-top: 20px;
    }

    .section-heading {
        font-size: 28px;
        font-weight: 700;
        color: var(--heading);
        margin-bottom: 24px;
        line-height: 1.15;
    }
}