/* ============================================================
   home.css — Medvac Infotech Homepage Styles
   Design system: Inter, Navy #091E3E, Blue #0A6EBD, White
   ============================================================ */

/* ---------- GLOBAL RESET for enterprise look ---------- */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a2e;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

/* ---------- NAVBAR ---------- */
.mi-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: #1e4080;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.mi-navbar.scrolled {
    background: #091E3E;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.mi-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 16px;
}
.mi-logo img { display: block; filter: brightness(0) invert(1); opacity: 0.95; }

.mi-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0; padding: 0;
}
.mi-nav-link {
    background: none;
    border: none;
    color: rgba(255,255,255,0.88);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}
.mi-nav-link:hover, .mi-nav-link.active {
    color: #ffffff;
    background: rgba(255,255,255,0.1);
    text-decoration: none;
}
.mi-nav-link.active { color: #4db8f0; }

/* Dropdown */
.mi-dropdown { position: relative; }
.mi-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(9,30,62,0.18);
    padding: 8px;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-8px);
    transition: all 0.2s ease;
    z-index: 100;
}
.mi-dropdown:hover .mi-dropdown-menu,
.mi-dropdown:focus-within .mi-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.mi-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #1a1a2e;
    transition: background 0.15s;
}
.mi-dropdown-item:hover { background: #f0f6ff; text-decoration: none; color: #0A6EBD; }
.mi-dropdown-item strong { display: block; font-size: 14px; font-weight: 600; }
.mi-dropdown-item small { display: block; font-size: 12px; color: #6b7280; margin-top: 1px; }
.mi-drop-icon {
    width: 36px; height: 36px;
    background: #f0f6ff;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #0A6EBD;
    font-size: 16px;
    flex-shrink: 0;
}
.mi-badge-live {
    margin-left: auto;
    background: #dcfce7; color: #16a34a;
    font-size: 10px; font-weight: 700;
    padding: 2px 8px; border-radius: 20px;
    flex-shrink: 0;
}
.mi-badge-soon {
    margin-left: auto;
    background: #fef9c3; color: #ca8a04;
    font-size: 10px; font-weight: 700;
    padding: 2px 8px; border-radius: 20px;
    flex-shrink: 0;
}

/* Nav Action Buttons */
.mi-nav-actions { display: flex; align-items: center; gap: 10px; }
.mi-btn-ghost {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    font-size: 14px; font-weight: 500;
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex; align-items: center;
}
.mi-btn-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.7); text-decoration: none; }
.mi-btn-primary {
    background: #0A6EBD;
    border: none;
    color: #fff;
    font-size: 14px; font-weight: 600;
    padding: 9px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-flex; align-items: center;
}
.mi-btn-primary:hover { background: #085fa3; color: #fff; text-decoration: none; transform: translateY(-1px); }

/* Hamburger */
.mi-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.mi-hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}
@media (max-width: 991px) {
    .mi-hamburger { display: flex; }
    .mi-nav-links {
        display: none;
        position: absolute;
        top: 72px; left: 0; right: 0;
        background: #091E3E;
        flex-direction: column;
        padding: 16px;
        gap: 4px;
        align-items: stretch;
    }
    .mi-nav-links.open { display: flex; }
    .mi-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: rgba(255,255,255,0.06);
        margin-top: 4px;
        opacity: 1;
        visibility: visible;
        border-radius: 10px;
    }
    .mi-dropdown-item { color: rgba(255,255,255,0.85); }
    .mi-dropdown-item:hover { background: rgba(255,255,255,0.1); color: #fff; }
    .mi-drop-icon { background: rgba(255,255,255,0.1); color: #4db8f0; }
    .mi-dropdown-item small { color: rgba(255,255,255,0.5); }
}

/* ---------- HERO ---------- */
.mi-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #091E3E 0%, #0d3875 60%, #0A6EBD 100%);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}
.mi-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.mi-hero-content { position: relative; z-index: 1; }

/* FORCE ALL HERO TEXT WHITE */
.mi-hero h1,
.mi-hero h2,
.mi-hero h3,
.mi-hero p,
.mi-hero span:not(.mi-badge-text) { color: #ffffff !important; }

.mi-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff !important;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
}
.mi-trust-badge-dot {
    width: 7px; height: 7px;
    background: #4ade80;
    border-radius: 50%;
    flex-shrink: 0;
}
.mi-hero-h1 {
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: #ffffff !important;
}
.mi-hero-sub {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255,255,255,0.82) !important;
    max-width: 600px;
    margin-bottom: 36px;
}
.mi-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 56px;
}
.mi-cta-primary {
    background: #ffffff;
    color: #0A6EBD !important;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.mi-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.25); text-decoration: none; color: #085fa3 !important; }

.mi-cta-secondary {
    background: transparent;
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(255,255,255,0.5);
    transition: all 0.2s;
}
.mi-cta-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); text-decoration: none; color: #fff !important; transform: translateY(-2px); }

/* Client logos strip */
.mi-logos-strip p { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.45) !important; margin-bottom: 14px; }
.mi-logos-row { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.mi-client-logo {
    opacity: 0.4;
    filter: brightness(0) invert(1);
    height: 24px;
    object-fit: contain;
    transition: opacity 0.2s;
}
.mi-client-logo:hover { opacity: 0.7; }

/* Hero right visual */
.mi-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mi-device-frame {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(10px);
    max-width: 380px;
    width: 100%;
}
.mi-device-screen {
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mi-device-screen img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.mi-device-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0f0ff, #c7e3ff);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #0A6EBD !important;
    border-radius: 12px;
}
.mi-device-placeholder i { font-size: 48px; color: #0A6EBD !important; }
.mi-device-placeholder span { font-size: 14px; font-weight: 600; color: #0A6EBD !important; }

/* ---------- STATS BAR ---------- */
.mi-stats {
    background: #fff;
    padding: 48px 0;
    border-bottom: 1px solid #f1f5f9;
}
.mi-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
}
.mi-stat-item {
    flex: 1;
    text-align: center;
    padding: 8px 24px;
    border-right: 1px solid #e2e8f0;
}
.mi-stat-item:last-child { border-right: none; }
.mi-stat-num {
    font-size: 42px;
    font-weight: 800;
    color: #0A6EBD;
    line-height: 1;
    display: block;
    margin-bottom: 6px;
}
.mi-stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}
@media (max-width: 576px) {
    .mi-stats-row { flex-wrap: wrap; }
    .mi-stat-item { flex: 1 1 50%; border-right: none; border-bottom: 1px solid #e2e8f0; }
    .mi-stat-item:nth-child(odd) { border-right: 1px solid #e2e8f0; }
    .mi-stat-item:last-child, .mi-stat-item:nth-last-child(2) { border-bottom: none; }
    .mi-stat-num { font-size: 32px; }
}

/* ---------- SECTION SHARED STYLES ---------- */
.mi-section { padding: 80px 0; }
.mi-section-grey { background: #F5F7FA; }
.mi-section-dark { background: #091E3E; }

.mi-section-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #0A6EBD;
    display: block;
    margin-bottom: 12px;
}
.mi-section-dark .mi-section-label { color: #4db8f0; }

.mi-section-title {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    color: #091E3E;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.mi-section-dark .mi-section-title { color: #fff; }

.mi-section-sub {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.7;
    max-width: 560px;
}
.mi-section-dark .mi-section-sub { color: rgba(255,255,255,0.65); }

/* ---------- PRODUCT CARDS ---------- */
.mi-product-card {
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
}
.mi-product-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0A6EBD, #4db8f0);
    transform: scaleX(0);
    transition: transform 0.25s;
}
.mi-product-card:hover { box-shadow: 0 12px 40px rgba(10,110,189,0.12); transform: translateY(-4px); border-color: #c7dfff; }
.mi-product-card:hover::after { transform: scaleX(1); }

.mi-product-icon {
    width: 52px; height: 52px;
    background: #e8f4ff;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    color: #0A6EBD;
    margin-bottom: 20px;
}
.mi-product-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
}
.mi-product-badge.live { background: #dcfce7; color: #16a34a; }
.mi-product-badge.soon { background: #fef9c3; color: #ca8a04; }
.mi-product-badge.service { background: #e0f2fe; color: #0369a1; }

.mi-product-card h3 { font-size: 20px; font-weight: 700; color: #091E3E; margin-bottom: 10px; }
.mi-product-card p { font-size: 15px; color: #6b7280; line-height: 1.65; margin-bottom: 20px; }

.mi-product-features {
    list-style: none;
    padding: 0; margin: 0 0 24px;
    display: flex; flex-direction: column; gap: 8px;
}
.mi-product-features li {
    font-size: 13px;
    color: #374151;
    display: flex; align-items: center; gap: 8px;
}
.mi-product-features li::before {
    content: '';
    width: 6px; height: 6px;
    background: #0A6EBD;
    border-radius: 50%;
    flex-shrink: 0;
}

.mi-card-link {
    color: #0A6EBD;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}
.mi-card-link:hover { gap: 10px; text-decoration: none; color: #085fa3; }

/* ---------- INDUSTRY TILES ---------- */
.mi-industry-tile {
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: default;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    height: 100%;
}
.mi-industry-tile:hover { box-shadow: 0 8px 30px rgba(10,110,189,0.1); transform: translateY(-3px); border-color: #c7dfff; }
.mi-industry-icon {
    width: 48px; height: 48px;
    background: #e8f4ff;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: #0A6EBD;
}
.mi-industry-tile h4 { font-size: 16px; font-weight: 700; color: #091E3E; margin: 0; }
.mi-industry-tile p { font-size: 13px; color: #6b7280; margin: 0; line-height: 1.55; }

/* ---------- WHY US PILLARS ---------- */
.mi-pillar {
    padding: 28px;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    height: 100%;
    transition: background 0.2s;
}
.mi-pillar:hover { background: rgba(255,255,255,0.09); }
.mi-pillar-icon {
    width: 48px; height: 48px;
    background: rgba(10,110,189,0.25);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: #4db8f0;
    margin-bottom: 18px;
}
.mi-pillar h4 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.mi-pillar p { font-size: 14px; color: rgba(255,255,255,0.62); line-height: 1.65; margin: 0; }

/* ---------- DEMO SECTION ---------- */
.mi-demo-frame {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(9,30,62,0.1);
    max-width: 760px;
    margin: 0 auto;
}
.mi-demo-bar {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mi-demo-dot { width: 10px; height: 10px; border-radius: 50%; }
.mi-demo-placeholder {
    min-height: 360px;
    background: linear-gradient(135deg, #e8f4ff, #d4edff);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px;
    text-align: center;
}
.mi-play-btn {
    width: 72px; height: 72px;
    background: #0A6EBD;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 30px rgba(10,110,189,0.4);
    text-decoration: none;
}
.mi-play-btn:hover { transform: scale(1.08); box-shadow: 0 12px 40px rgba(10,110,189,0.5); }
.mi-play-btn i { font-size: 28px; color: #fff; margin-left: 4px; }
.mi-demo-placeholder h4 { font-size: 20px; font-weight: 700; color: #091E3E; margin: 0; }
.mi-demo-placeholder p { font-size: 14px; color: #6b7280; max-width: 380px; margin: 0; }

/* ---------- TESTIMONIALS ---------- */
.mi-testimonial-card {
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    height: 100%;
}
.mi-testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px; right: 24px;
    font-size: 80px;
    line-height: 1;
    color: #e8f4ff;
    font-family: Georgia, serif;
}
.mi-stars { color: #f59e0b; font-size: 15px; margin-bottom: 16px; }
.mi-testimonial-card blockquote {
    font-size: 15px;
    color: #374151;
    line-height: 1.75;
    margin: 0 0 20px;
    font-style: italic;
}
.mi-testimonial-author { display: flex; align-items: center; gap: 12px; }
.mi-author-avatar {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, #0A6EBD, #4db8f0);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.mi-author-name { font-size: 14px; font-weight: 700; color: #091E3E; display: block; }
.mi-author-role { font-size: 12px; color: #6b7280; display: block; margin-top: 1px; }

/* ---------- MID-PAGE CTA BANNER ---------- */
.mi-cta-banner {
    background: linear-gradient(135deg, #0A6EBD 0%, #091E3E 100%);
    border-radius: 20px;
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.mi-cta-banner::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 250px; height: 250px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.mi-cta-banner::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -40px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}
.mi-cta-banner h2, .mi-cta-banner p, .mi-cta-banner * { color: #ffffff !important; }
.mi-cta-banner h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; margin-bottom: 14px; position: relative; z-index: 1; }
.mi-cta-banner p { font-size: 17px; margin-bottom: 32px; opacity: 0.85; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.mi-cta-banner-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.mi-cta-banner .mi-cta-primary { color: #0A6EBD !important; }
.mi-cta-banner .mi-cta-secondary { border-color: rgba(255,255,255,0.6); }

/* ---------- FAQ ---------- */
.mi-faq-item {
    border-bottom: 1px solid #e8edf5;
}
.mi-faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 600;
    color: #091E3E;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color 0.2s;
}
.mi-faq-question:hover { color: #0A6EBD; }
.mi-faq-question.open { color: #0A6EBD; }
.mi-faq-chevron { font-size: 14px; color: #9ca3af; transition: transform 0.25s; flex-shrink: 0; }
.mi-faq-question.open .mi-faq-chevron { transform: rotate(180deg); color: #0A6EBD; }
.mi-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 15px;
    color: #6b7280;
    line-height: 1.75;
}
.mi-faq-answer.open { max-height: 300px; padding-bottom: 20px; }

/* ---------- CONTACT SECTION ---------- */
.mi-contact-info h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; color: #091E3E; margin-bottom: 16px; }
.mi-contact-info p { font-size: 16px; color: #6b7280; line-height: 1.7; margin-bottom: 28px; }
.mi-contact-detail {
    display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px;
}
.mi-contact-detail-icon {
    width: 40px; height: 40px;
    background: #e8f4ff;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #0A6EBD;
    font-size: 17px;
    flex-shrink: 0;
}
.mi-contact-detail-text strong { display: block; font-size: 13px; color: #6b7280; font-weight: 500; margin-bottom: 2px; }
.mi-contact-detail-text a, .mi-contact-detail-text span { font-size: 15px; color: #091E3E; font-weight: 600; text-decoration: none; }
.mi-contact-detail-text a:hover { color: #0A6EBD; }
.mi-wa-direct {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 20px;
    transition: background 0.2s, transform 0.2s;
}
.mi-wa-direct:hover { background: #1ebe5b; text-decoration: none; color: #fff !important; transform: translateY(-2px); }

/* Contact Form */
.mi-form-card {
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 40px rgba(9,30,62,0.07);
}
.mi-form-card h3 { font-size: 22px; font-weight: 700; color: #091E3E; margin-bottom: 24px; }
.mi-form-group { margin-bottom: 18px; }
.mi-form-label { display: block; font-size: 13px; font-weight: 600; color: #374151; margin-bottom: 6px; }
.mi-form-control {
    width: 100%;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.mi-form-control:focus { border-color: #0A6EBD; box-shadow: 0 0 0 3px rgba(10,110,189,0.12); }
.mi-form-submit {
    width: 100%;
    background: #0A6EBD;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.mi-form-submit:hover { background: #085fa3; transform: translateY(-1px); }

/* ---------- FOOTER ---------- */
.mi-footer {
    background: #091E3E;
    padding: 72px 0 0;
    color: rgba(255,255,255,0.75);
}
.mi-footer-logo { display: inline-block; margin-bottom: 16px; }
.mi-footer-tagline { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.55); max-width: 280px; margin-bottom: 24px; }
.mi-social-links { display: flex; gap: 10px; }
.mi-social-links a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.mi-social-links a:hover { background: #0A6EBD; color: #fff; }

.mi-footer-heading { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.mi-footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.mi-footer-links li a { font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.mi-footer-links li a:hover { color: #fff; }
.mi-footer-contact { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.mi-footer-contact li { font-size: 14px; color: rgba(255,255,255,0.55); display: flex; gap: 10px; align-items: flex-start; }
.mi-footer-contact li i { color: #4db8f0; margin-top: 2px; flex-shrink: 0; }
.mi-footer-contact li a { color: rgba(255,255,255,0.55); text-decoration: none; }
.mi-footer-contact li a:hover { color: #fff; }

.mi-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 56px;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.mi-footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); margin: 0; }
.mi-footer-bottom div { display: flex; gap: 20px; }
.mi-footer-bottom a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; }
.mi-footer-bottom a:hover { color: rgba(255,255,255,0.75); }

/* ---------- BACK TO TOP ---------- */
.mi-back-top {
    position: fixed;
    bottom: 100px; right: 24px;
    width: 42px; height: 42px;
    background: #0A6EBD;
    color: #fff;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    text-decoration: none;
    z-index: 999;
    opacity: 0; visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(10,110,189,0.35);
}
.mi-back-top.visible { opacity: 1; visibility: visible; }
.mi-back-top:hover { background: #085fa3; color: #fff; transform: translateY(-3px); }

/* ---------- WHATSAPP WIDGET ---------- */
.wa-widget {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}
.wa-fab {
    width: 58px; height: 58px;
    background: #25D366;
    border: none;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }
.wa-fab i { font-size: 26px; color: #fff; position: absolute; transition: opacity 0.2s, transform 0.2s; }
.wa-icon-close { opacity: 0; transform: rotate(-90deg); font-size: 20px; }
.wa-widget.open .wa-icon-open { opacity: 0; transform: rotate(90deg); }
.wa-widget.open .wa-icon-close { opacity: 1; transform: rotate(0); }

.wa-popup {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 16px 60px rgba(9,30,62,0.2);
    width: 320px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.96);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: bottom right;
}
.wa-widget.open .wa-popup { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

.wa-popup-header {
    background: #25D366;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.wa-popup-avatar {
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
}
.wa-popup-info { flex: 1; }
.wa-popup-info strong { display: block; font-size: 15px; font-weight: 700; color: #fff; }
.wa-popup-info span { font-size: 12px; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 5px; }
.wa-close {
    background: none; border: none;
    color: rgba(255,255,255,0.7);
    font-size: 15px; cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
    flex-shrink: 0;
}
.wa-close:hover { color: #fff; }

.wa-popup-body { padding: 16px; }
.wa-greeting { font-size: 14px; color: #374151; margin-bottom: 12px; }

.wa-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.wa-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #f8fafc;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid #e8edf5;
    transition: background 0.15s, border-color 0.15s;
}
.wa-option:hover { background: #e8f4ff; border-color: #c7dfff; text-decoration: none; }
.wa-option > i:first-child { font-size: 18px; color: #25D366; flex-shrink: 0; }
.wa-option div { flex: 1; }
.wa-option strong { display: block; font-size: 13px; font-weight: 600; color: #091E3E; }
.wa-option small { display: block; font-size: 11px; color: #9ca3af; margin-top: 1px; }
.wa-arrow { font-size: 12px; color: #9ca3af; flex-shrink: 0; }

.wa-hours { font-size: 11px; color: #9ca3af; text-align: center; margin: 0; }

@media (max-width: 400px) {
    .wa-popup { width: calc(100vw - 32px); }
}

/* ============================================================
   ENTERPRISE TRANSFORMATION UPGRADES
   ============================================================ */

/* 1. Hero Trust Badges */
.mi-hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}
.mi-hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #e2e8f0;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 6px 14px;
    border-radius: 20px;
}
.mi-hero-trust-badge i { color: #4ade80; }

/* 2. Interactive Demo Mockup & Tabs */
.mi-demo-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.mi-demo-tab {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.04);
}
.mi-demo-tab:hover, .mi-demo-tab.active {
    background: #0A6EBD;
    color: #ffffff;
    border-color: #0A6EBD;
    box-shadow: 0 4px 12px rgba(10,110,189,0.25);
}
.mi-demo-screen-content {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
    width: 100%;
}
.mi-demo-screen-content.active {
    display: block;
}
.mi-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.mi-play-btn-lg {
    width: 72px;
    height: 72px;
    background: #0A6EBD;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(10,110,189,0.4);
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    border: 4px solid #fff;
}
.mi-play-btn-lg:hover {
    transform: scale(1.08);
    background: #091E3E;
    color: #fff;
}

/* 3. Tech Stack Section */
.mi-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
    margin-top: 32px;
}
.mi-tech-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 22px 14px;
    text-align: center;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.mi-tech-card:hover {
    transform: translateY(-4px);
    border-color: #0A6EBD;
    box-shadow: 0 12px 24px rgba(10,110,189,0.12);
}
.mi-tech-icon {
    font-size: 30px;
    color: #0A6EBD;
    margin-bottom: 10px;
}
.mi-tech-name {
    font-size: 14px;
    font-weight: 700;
    color: #091E3E;
}
.mi-tech-slider {
    margin-top: 36px;
    padding: 10px 0 30px;
}
.mi-tech-slider .owl-stage {
    display: flex;
    align-items: stretch;
}
.mi-tech-slider .owl-item {
    display: flex;
}
.mi-tech-slider .mi-tech-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 140px;
}
.mi-tech-slider .owl-dots {
    text-align: center;
    margin-top: 24px;
}
.mi-tech-slider .owl-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #cbd5e1 !important;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.25s ease;
}
.mi-tech-slider .owl-dot.active {
    width: 32px;
    border-radius: 6px;
    background: #0A6EBD !important;
}

/* 4. Development Process Timeline */
.mi-timeline {
    position: relative;
    max-width: 960px;
    margin: 40px auto 0;
    padding: 20px 0;
}
.mi-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #e2e8f0;
    transform: translateX(-50%);
}
@media (max-width: 768px) {
    .mi-timeline::before { left: 24px; }
}
.mi-timeline-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}
.mi-timeline-step:nth-child(even) {
    flex-direction: row-reverse;
}
@media (max-width: 768px) {
    .mi-timeline-step, .mi-timeline-step:nth-child(even) {
        flex-direction: row;
        justify-content: flex-start;
        padding-left: 60px;
    }
}
.mi-timeline-content {
    width: 44%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: transform 0.2s;
}
.mi-timeline-content:hover {
    transform: translateY(-3px);
    border-color: #0A6EBD;
}
@media (max-width: 768px) {
    .mi-timeline-content { width: 100%; }
}
.mi-timeline-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: #0A6EBD;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    border: 4px solid #f8fafc;
    box-shadow: 0 0 0 4px #e2e8f0;
    z-index: 2;
}
@media (max-width: 768px) {
    .mi-timeline-badge { left: 24px; }
}
.mi-timeline-step-num {
    font-size: 12px;
    font-weight: 700;
    color: #0A6EBD;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

/* 5. Why Choose Us Equal Height & Hover */
.mi-pillar {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.mi-pillar:hover {
    transform: translateY(-6px);
    border-color: #0A6EBD;
    box-shadow: 0 16px 32px rgba(0,0,0,0.25);
}

/* 6. Google Reviews Banner */
.mi-google-review-banner {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
}
.mi-google-stat {
    text-align: center;
    padding: 10px 20px;
}
.mi-google-stat h3 {
    font-size: 36px;
    font-weight: 800;
    color: #091E3E;
    margin-bottom: 4px;
}
.mi-google-stat p {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
    margin: 0;
}

/* 7. Blog Preview Cards */
.mi-blog-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
}
.mi-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.08);
    border-color: #cbd5e1;
}
.mi-blog-img {
    height: 180px;
    background: linear-gradient(135deg, #091E3E, #0A6EBD);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 40px;
}
.mi-blog-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.mi-blog-cat {
    font-size: 11px;
    font-weight: 700;
    color: #0A6EBD;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
}
.mi-blog-title {
    font-size: 18px;
    font-weight: 700;
    color: #091E3E;
    margin-bottom: 14px;
    line-height: 1.4;
}
.mi-blog-link {
    font-size: 14px;
    font-weight: 700;
    color: #0A6EBD;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}
.mi-blog-link:hover { text-decoration: underline; color: #085fa3; }

/* ============================================================
   OUR WORK SECTION & PROJECT CARDS
   ============================================================ */
.mi-work-grid {
    margin-top: 40px;
}
.mi-work-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.mi-work-card:hover {
    transform: translateY(-8px);
    border-color: #0A6EBD;
    box-shadow: 0 20px 40px rgba(10, 110, 189, 0.15);
}
.mi-work-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
}
.mi-work-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.mi-work-card:hover .mi-work-img {
    transform: scale(1.08);
}
.mi-work-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(9, 30, 62, 0.85);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}
.mi-work-type-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #0A6EBD;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 2;
}
.mi-work-pending-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(239, 68, 68, 0.9);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 5;
}
.mi-work-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}
.mi-work-title {
    font-size: 20px;
    font-weight: 800;
    color: #091E3E;
    margin-bottom: 10px;
    line-height: 1.3;
}
.mi-work-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.mi-work-tech {
    font-size: 12px;
    color: #475569;
    background: #f1f5f9;
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
}
.mi-work-tech span {
    color: #0A6EBD;
    font-weight: 700;
}
.mi-work-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: #091E3E;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}
.mi-work-btn:hover {
    background: #0A6EBD;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(10, 110, 189, 0.3);
}

/* Modal Styling */
.mi-project-modal .modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.mi-project-modal .modal-header {
    background: #091E3E;
    color: #ffffff;
    padding: 20px 28px;
    border: none;
}
.mi-project-modal .modal-title {
    font-size: 22px;
    font-weight: 800;
    color: #60a5fa;
}
.mi-project-modal .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}
.mi-project-modal .modal-body {
    padding: 28px;
    background: #ffffff;
}
.mi-project-meta-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 16px;
    text-align: center;
}
.mi-project-meta-item strong {
    display: block;
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.mi-project-meta-item span {
    font-size: 14px;
    font-weight: 700;
    color: #091E3E;
}
.mi-project-section-title {
    font-size: 16px;
    font-weight: 800;
    color: #091E3E;
    margin-top: 18px;
    margin-bottom: 8px;
    border-left: 4px solid #0A6EBD;
    padding-left: 10px;
}
.mi-project-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}
.mi-project-features-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}
.mi-project-features-list li {
    font-size: 13px;
    color: #334155;
    background: #f1f5f9;
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}
.mi-project-features-list li i {
    color: #0A6EBD;
    font-size: 16px;
}
