:root {
    --primary: #0758d1;
    --primary-2: #00a3ff;
    --accent: #ff8a00;
    --green: #13b86c;
    --dark: #07152f;
    --dark-2: #0d2448;
    --text: #1c2d46;
    --muted: #687891;
    --line: #dce8f5;
    --soft: #f4f8ff;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(7, 21, 47, .14);
    --shadow-soft: 0 14px 36px rgba(7, 21, 47, .10);
    --radius: 28px;
    --container: 1180px;
    --font-main: Arial, Helvetica, Tahoma, Verdana, "Noto Sans", "Liberation Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text);
    font-family: var(--font-main) !important;
    line-height: 1.65;
    background: #fff;
    overflow-x: hidden;
}
/* Font safety fix: avoids junk/symbol characters if a local icon font or browser extension tries to override normal website text. */
.site-header, .site-header *, main, main *, .site-footer, .site-footer * {
    font-family: var(--font-main) !important;
}
svg, svg * {
    font-family: initial !important;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font-family: var(--font-main) !important; }
.container { width: min(var(--container), calc(100% - 36px)); margin-inline: auto; }
.icon, .service-svg { width: 1.15em; height: 1.15em; fill: currentColor; flex: 0 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.skip-link { position: absolute; left: -999px; top: 10px; z-index: 9999; background: var(--primary); color: white; padding: 10px 14px; border-radius: 10px; }
.skip-link:focus { left: 10px; }

/* Header */
.site-header {
    position: sticky;
    inset-block-start: 0;
    z-index: 999;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(7, 21, 47, .08);
}
.topbar {
    background: linear-gradient(90deg, #07152f 0%, #0d2448 52%, #0758d1 100%);
    color: #fff;
    font-size: 14px;
}
.topbar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.topbar-note { margin: 0; color: rgba(255,255,255,.86); font-weight: 650; }
.topbar-links { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar-link { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.92); font-weight: 700; transition: color .2s ease, transform .2s ease; }
.topbar-link:hover { color: #fff; transform: translateY(-1px); }
.topbar-link .icon { color: var(--accent); }
.main-nav { background: #fff; }
.nav-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; width: min(330px, 56vw); }
.brand img { width: 100%; object-fit: contain; }
.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 0;
    background: transparent;
    color: var(--dark);
    padding: 12px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .05em;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}
.nav-link:hover, .nav-link.active { background: #eef5ff; color: var(--primary); }
.nav-dropdown { position: relative; }
.arrow-icon { width: 18px; height: 18px; transition: transform .25s ease; }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 350px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .23s ease;
}
.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -9px;
    right: 28px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    transform: rotate(45deg);
}
.nav-dropdown:hover .dropdown-menu, .nav-dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown:hover .arrow-icon, .nav-dropdown.open .arrow-icon { transform: rotate(180deg); }
.dropdown-menu a { display: block; padding: 12px 14px; border-radius: 14px; color: var(--text); font-weight: 760; font-size: 14px; }
.dropdown-menu a:hover { background: #eef5ff; color: var(--primary); }
.nav-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 14px; color: #fff; background: var(--dark); cursor: pointer; place-items: center; }
.nav-toggle .icon { width: 25px; height: 25px; }

/* Reusable */
.mini-label, .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: var(--primary);
    background: rgba(7, 88, 209, .09);
    border: 1px solid rgba(7, 88, 209, .15);
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.section-kicker .icon { color: var(--accent); }
.section { padding: 92px 0; }
.section-heading { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.section-heading h2, .section-content h2, .cta-box h2, .footer-cta-panel h2 {
    margin: 14px 0 14px;
    color: var(--dark);
    line-height: 1.08;
    font-size: clamp(32px, 4vw, 52px);
    letter-spacing: -.04em;
}
.section-heading p, .section-content p { margin: 0 0 18px; color: var(--muted); font-size: 17px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 13px 23px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 900;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-small { min-height: 42px; padding: 10px 17px; font-size: 14px; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #fff; }
.btn-soft { background: #eef5ff; color: var(--primary); border-color: #d9e9ff; }
.btn-light { background: #fff; color: var(--primary); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-green { background: #15b86b; color: #fff; }
.btn-outline-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.28); }
.btn-outline-light:hover { background: #fff; color: var(--primary); }
.full-btn { width: 100%; border-radius: 16px; }
.text-link { display: inline-flex; align-items: center; color: var(--primary); font-weight: 900; }
.text-link:hover { color: var(--dark); }
.split-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 58px; align-items: center; }
.alt-bg { background: #f6f9ff; }

/* Hero inspired by Bajaj style */
.hero-bajaj {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: radial-gradient(circle at 86% 12%, rgba(0,163,255,.32), transparent 30%), linear-gradient(135deg, #07152f 0%, #0a2754 52%, #074ca8 100%);
    padding: 92px 0 0;
}
.hero-bajaj::after {
    content: "";
    position: absolute;
    width: 780px;
    height: 780px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    right: -300px;
    bottom: -430px;
}
.hero-bg-photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .12;
    mix-blend-mode: screen;
}
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .96fr; align-items: center; gap: 54px; }
.hero-copy .mini-label { color: #fff; border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.11); }
.hero-copy h1 { margin: 18px 0 18px; max-width: 730px; line-height: .98; font-size: clamp(44px, 6vw, 80px); letter-spacing: -.06em; }
.hero-copy p { margin: 0 0 30px; max-width: 660px; color: rgba(255,255,255,.82); font-size: 18px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-showcase { position: relative; min-height: 520px; }
.dashboard-card {
    position: absolute;
    inset: 18px 0 auto auto;
    width: min(560px, 92%);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 30px;
    background: rgba(255,255,255,.1);
    box-shadow: 0 34px 90px rgba(0,0,0,.28);
    backdrop-filter: blur(12px);
}
.dashboard-top { display: flex; align-items: center; gap: 8px; height: 38px; padding: 0 18px; background: rgba(0,0,0,.26); }
.dashboard-top span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.7); }
.dashboard-card img { width: 100%; height: 365px; object-fit: cover; }
.dashboard-caption { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 20px; background: rgba(255,255,255,.95); color: var(--dark); }
.dashboard-caption strong { color: var(--primary); font-size: 20px; }
.dashboard-caption small { color: var(--muted); font-weight: 800; }
.floating-service-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 18px;
    background: #fff;
    color: var(--dark);
    font-weight: 900;
    box-shadow: 0 18px 44px rgba(0,0,0,.22);
}
.floating-service-card .icon { color: var(--accent); width: 24px; height: 24px; }
.card-one { left: 0; top: 82px; }
.card-two { right: 16px; bottom: 78px; }
.hero-service-tabs {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    transform: translateY(72px);
}
.hero-service-tabs article {
    min-height: 230px;
    padding: 30px;
    border-radius: 28px;
    background: #fff;
    color: var(--text);
    box-shadow: var(--shadow);
    border: 1px solid rgba(220,232,245,.9);
    transition: transform .2s ease, box-shadow .2s ease;
}
.hero-service-tabs article:hover { transform: translateY(-6px); box-shadow: 0 30px 80px rgba(7,21,47,.17); }
.hero-service-tabs article span { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 18px; color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary-2)); margin-bottom: 20px; }
.hero-service-tabs article span .icon { width: 30px; height: 30px; }
.hero-service-tabs h2 { margin: 0 0 10px; color: var(--dark); font-size: 23px; line-height: 1.15; }
.hero-service-tabs p { margin: 0 0 18px; color: var(--muted); }
.hero-service-tabs a { color: var(--primary); font-weight: 900; }

/* Intro / About */
.case-intro-section { padding-top: 150px; background: linear-gradient(180deg, #fff, #f8fbff); }
.case-intro-grid { grid-template-columns: 1fr .9fr; }
.stacked-photos { position: relative; min-height: 540px; }
.stacked-photos img { object-fit: cover; border-radius: 30px; box-shadow: var(--shadow); }
.photo-large { width: 86%; height: 470px; }
.photo-small { position: absolute; right: 0; bottom: 0; width: 48%; height: 300px; border: 10px solid #fff; }
.feature-pills { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 28px; }
.feature-pills span { display: inline-flex; align-items: center; gap: 8px; padding: 11px 14px; border-radius: 999px; color: var(--dark); font-weight: 800; background: #fff; border: 1px solid var(--line); box-shadow: 0 10px 26px rgba(7,21,47,.06); }
.feature-pills .icon { color: var(--green); }
.owner-card { display: inline-grid; gap: 2px; padding: 18px 22px; border-radius: 20px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.owner-card strong { color: var(--primary); font-size: 22px; }
.owner-card span { color: var(--muted); font-weight: 750; }

/* Services */
.services-showcase { background: #fff; }
.bajaj-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bajaj-service-card {
    overflow: hidden;
    min-height: 100%;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(7,21,47,.08);
    transition: transform .2s ease, box-shadow .2s ease;
}
.bajaj-service-card:hover { transform: translateY(-6px); box-shadow: 0 30px 76px rgba(7,21,47,.13); }
.service-image { height: 218px; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.bajaj-service-card:hover .service-image img { transform: scale(1.05); }
.service-meta { position: relative; padding: 42px 26px 26px; }
.service-icon {
    position: absolute;
    top: -32px;
    left: 24px;
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    border: 6px solid #fff;
    box-shadow: 0 12px 26px rgba(7,88,209,.24);
}
.service-icon .service-svg { width: 30px; height: 30px; }
.service-meta h3 { margin: 0 0 10px; color: var(--dark); font-size: 23px; line-height: 1.18; }
.service-meta p { margin: 0 0 16px; color: var(--muted); }
.service-meta a { color: var(--primary); font-weight: 900; }

/* Case studies / why */
.case-study-section { background: #f5f8ff; }
.case-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.case-card {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 22px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}
.case-logo { display: grid; place-items: center; width: 82px; height: 82px; border-radius: 24px; color: #fff; background: linear-gradient(135deg, var(--dark), var(--primary)); }
.case-logo .icon { width: 40px; height: 40px; }
.case-card h3 { margin: 0 0 12px; color: var(--dark); font-size: 26px; }
.case-card p { margin: 0 0 9px; color: var(--muted); }
.why-choose-section { background: linear-gradient(135deg, #07152f 0%, #0c2447 100%); color: #fff; }
.why-choose-section.alt-bg { background: #f5f8ff; color: var(--text); }
.why-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: center; }
.why-choose-section .section-content h2 { color: #fff; }
.why-choose-section.alt-bg .section-content h2 { color: var(--dark); }
.why-choose-section .section-content p { color: rgba(255,255,255,.76); }
.why-choose-section.alt-bg .section-content p { color: var(--muted); }
.why-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.why-card {
    padding: 26px;
    min-height: 210px;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.08);
    box-shadow: 0 18px 44px rgba(0,0,0,.13);
}
.alt-bg .why-card { background: #fff; border-color: var(--line); box-shadow: var(--shadow-soft); }
.why-card > .icon { width: 44px; height: 44px; color: var(--accent); margin-bottom: 18px; }
.why-card h3 { margin: 0 0 10px; color: #fff; font-size: 22px; }
.alt-bg .why-card h3 { color: var(--dark); }
.why-card p { margin: 0; color: rgba(255,255,255,.74); }
.alt-bg .why-card p { color: var(--muted); }
.why-card-grid.compact .why-card { min-height: 180px; }

/* Insights */
.insight-section { background: linear-gradient(180deg, #fff, #f6f9ff); }
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.insight-card { overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow-soft); }
.insight-card img { width: 100%; height: 210px; object-fit: cover; }
.insight-card div { padding: 24px; }
.insight-card small { color: var(--primary); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.insight-card h3 { margin: 10px 0 10px; color: var(--dark); line-height: 1.2; font-size: 22px; }
.insight-card p { margin: 0; color: var(--muted); }

/* Page hero */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: 108px 0;
    color: #fff;
    background: linear-gradient(135deg, #07152f, #0758d1);
}
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,21,47,.94), rgba(7,21,47,.7)), var(--page-hero-bg) center/cover no-repeat; }
.page-hero::after { content: ""; position: absolute; width: 560px; height: 560px; border-radius: 50%; right: -180px; bottom: -260px; background: rgba(255,255,255,.08); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero .mini-label { color: #fff; border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.10); }
.page-hero h1 { margin: 18px 0 16px; max-width: 920px; color: #fff; line-height: 1.02; font-size: clamp(42px, 5vw, 68px); letter-spacing: -.05em; }
.page-hero p { max-width: 760px; margin: 0; color: rgba(255,255,255,.82); font-size: 18px; }

/* About inner */
.mission-panel { overflow: hidden; border-radius: 32px; background: #fff; box-shadow: var(--shadow); border: 1px solid var(--line); }
.mission-panel img { width: 100%; height: 380px; object-fit: cover; }
.mission-panel div { padding: 28px; }
.mission-panel h3 { margin: 0 0 10px; color: var(--dark); font-size: 28px; }
.mission-panel p { margin: 0; color: var(--muted); }
.process-section { background: #f6f9ff; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-card { padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow-soft); }
.process-card span { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 18px; border-radius: 18px; color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary-2)); font-weight: 950; }
.process-card h3 { margin: 0 0 10px; color: var(--dark); font-size: 22px; line-height: 1.18; }
.process-card p { margin: 0; color: var(--muted); }
.tech-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery-card { margin: 0; overflow: hidden; border-radius: 28px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.gallery-card img { width: 100%; height: 265px; object-fit: cover; }
.gallery-card figcaption { padding: 20px 22px; color: var(--dark); font-weight: 850; }

/* Services inner */
.inner-services { background: #fff; }
.services-visual-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 34px; }
.services-visual-strip img { width: 100%; height: 230px; object-fit: cover; border-radius: 26px; box-shadow: var(--shadow-soft); }
.services-detail-grid { display: grid; gap: 24px; }
.detail-card {
    scroll-margin-top: 140px;
    display: grid;
    grid-template-columns: 360px 1fr;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-soft);
}
.detail-photo { margin: 0; min-height: 100%; }
.detail-photo img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.detail-content { position: relative; padding: 36px; }
.detail-icon { display: grid; place-items: center; width: 72px; height: 72px; border-radius: 22px; color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary-2)); margin-bottom: 18px; }
.detail-icon .service-svg { width: 36px; height: 36px; }
.detail-content h2 { margin: 0 0 10px; color: var(--dark); font-size: clamp(26px, 3vw, 38px); line-height: 1.12; }
.detail-content p { margin: 0 0 14px; color: var(--muted); font-size: 17px; }
.compact-list { display: grid; gap: 7px; margin: 16px 0 18px; padding-left: 20px; list-style: disc; color: var(--text); }
.package-section { background: #f6f9ff; }
.feature-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-card { display: flex; align-items: center; gap: 12px; min-height: 92px; padding: 18px; border-radius: 20px; background: #fff; border: 1px solid var(--line); box-shadow: 0 10px 24px rgba(7,21,47,.06); font-weight: 900; color: var(--dark); }
.feature-card .icon { color: var(--green); }

/* Contact */
.contact-section { background: linear-gradient(180deg, #fff, #f6f9ff); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; align-items: start; }
.contact-info, .form-card, .map-card { background: #fff; border: 1px solid var(--line); border-radius: 30px; padding: 32px; box-shadow: var(--shadow); }
.contact-info h2, .form-card h2, .map-heading h2 { margin: 12px 0; color: var(--dark); font-size: clamp(30px, 3vw, 42px); line-height: 1.12; }
.contact-info p { color: var(--muted); margin: 0 0 18px; }
.contact-photo { overflow: hidden; border-radius: 24px; margin: 22px 0; }
.contact-photo img { width: 100%; height: 250px; object-fit: cover; }
.contact-list { display: grid; gap: 13px; }
.contact-list a, .contact-list p { display: flex; align-items: flex-start; gap: 12px; margin: 0; padding: 15px; border-radius: 18px; background: #f5f9ff; border: 1px solid var(--line); color: var(--primary); }
.contact-list span { display: grid; gap: 2px; color: var(--text); }
.contact-list strong { color: var(--primary); }
.contact-list .icon { width: 22px; height: 22px; color: var(--accent); margin-top: 4px; }
.payment-card { display: grid; grid-template-columns: 1fr 150px; gap: 18px; align-items: center; margin-top: 22px; padding: 20px; border-radius: 24px; background: linear-gradient(135deg, var(--dark), var(--primary)); color: #fff; }
.payment-card h3 { margin: 0 0 6px; font-size: 22px; }
.payment-card p { color: rgba(255,255,255,.84); margin: 0; }
.payment-card img { background: #fff; padding: 8px; border-radius: 16px; width: 150px; }
.contact-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 7px; color: var(--dark); font-weight: 850; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 13px 14px; color: var(--text); background: #fff; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--primary-2); box-shadow: 0 0 0 4px rgba(0,163,255,.12); }
.contact-form textarea { min-height: 138px; resize: vertical; }
.hp-field { position: absolute; left: -9999px; visibility: hidden; }
.captcha-row { align-items: end; }
.captcha-box { display: grid; gap: 3px; padding: 12px 14px; border: 1px dashed rgba(7,88,209,.32); border-radius: 14px; background: #f5f9ff; color: var(--primary); font-weight: 950; }
.captcha-box small { color: var(--muted); font-weight: 700; }
.alert { padding: 14px 16px; border-radius: 14px; margin-bottom: 18px; font-weight: 700; }
.alert ul { list-style: disc; padding-left: 20px; margin-top: 8px; }
.alert-success { background: #e9fbf1; color: #0b6d3f; border: 1px solid #bce9cf; }
.alert-warning { background: #fff8e5; color: #7d4a00; border: 1px solid #f6d288; }
.alert-error { background: #fff1f1; color: #9f1d1d; border: 1px solid #ffd0d0; }
.map-section { padding: 0 0 92px; background: #f6f9ff; }
.map-card { padding: 0; overflow: hidden; }
.map-heading { padding: 30px 32px 12px; }
.map-heading p { display: flex; align-items: center; gap: 8px; color: var(--muted); margin: 0 0 14px; }
.map-card iframe { display: block; min-height: 360px; }

/* CTA and footer */
.cta-section { padding: 80px 0; background: #fff; }
.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    overflow: hidden;
    position: relative;
    padding: 44px;
    border-radius: 34px;
    color: #fff;
    background: radial-gradient(circle at 86% 20%, rgba(255,138,0,.24), transparent 26%), linear-gradient(135deg, var(--primary), var(--dark));
    box-shadow: var(--shadow);
}
.cta-box::after { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; right: -110px; bottom: -180px; background: rgba(255,255,255,.10); }
.cta-box > * { position: relative; z-index: 1; }
.cta-box .section-kicker { color: #fff; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.18); }
.cta-box h2 { color: #fff; max-width: 720px; }
.cta-box p { margin: 0; color: rgba(255,255,255,.82); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.site-footer { position: relative; overflow: hidden; padding: 0 0 24px; color: #fff; background: #07152f; }
.footer-shape { position: absolute; width: 620px; height: 620px; border-radius: 50%; background: rgba(0,163,255,.12); top: -280px; right: -220px; }
.footer-cta-panel { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 24px; transform: translateY(-42px); margin-bottom: -10px; padding: 34px; border-radius: 30px; background: linear-gradient(135deg, #0a3d89, #0758d1); box-shadow: var(--shadow); }
.footer-cta-panel .mini-label { color: #fff; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); }
.footer-cta-panel h2 { color: #fff; margin-bottom: 0; font-size: clamp(28px, 3vw, 42px); }
.footer-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .65fr .9fr 1.05fr; gap: 34px; align-items: start; padding-top: 52px; }
.footer-brand img { width: min(320px, 100%); background: #fff; border-radius: 18px; padding: 9px 12px; margin-bottom: 18px; }
.footer-brand p { margin: 0 0 20px; color: rgba(255,255,255,.76); }
.footer-socials { display: flex; gap: 10px; }
.footer-socials span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.10); color: #fff; font-weight: 900; text-transform: uppercase; font-size: 12px; }
.footer-col h2, .footer-contact h2 { margin: 0 0 18px; color: #fff; font-size: 20px; }
.footer-col a { display: block; padding: 6px 0; color: rgba(255,255,255,.73); transition: color .2s ease, transform .2s ease; }
.footer-col a:hover { color: #fff; transform: translateX(3px); }
.footer-contact p { display: flex; align-items: flex-start; gap: 10px; margin: 0 0 12px; color: rgba(255,255,255,.76); }
.footer-contact a { color: rgba(255,255,255,.9); }
.footer-contact .icon { color: var(--accent); margin-top: 4px; }
.footer-bottom { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.12); margin-top: 42px; padding-top: 20px; color: rgba(255,255,255,.58); font-size: 14px; }
.footer-bottom p { margin: 0; }
.floating-whatsapp { position: fixed; z-index: 998; right: 22px; bottom: 22px; display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; color: #fff; background: #18a852; border: 4px solid #fff; box-shadow: 0 14px 34px rgba(18,140,74,.36); transition: transform .2s ease; }
.floating-whatsapp:hover { transform: translateY(-4px) scale(1.04); }
.floating-whatsapp .icon { width: 34px; height: 34px; }

/* Animation */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-0 { transition-delay: 0s; }

@media (max-width: 1080px) {
    .hero-layout, .split-grid, .case-intro-grid, .why-layout, .contact-grid { grid-template-columns: 1fr; }
    .hero-showcase { min-height: 500px; }
    .dashboard-card { left: 0; right: auto; }
    .hero-service-tabs, .bajaj-service-grid, .insight-grid, .tech-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid, .feature-card-grid { grid-template-columns: repeat(2, 1fr); }
    .detail-card { grid-template-columns: 300px 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
    .topbar-inner { justify-content: center; text-align: center; padding: 8px 0; }
    .topbar-note { display: none; }
    .topbar-links { justify-content: center; gap: 12px; }
    .nav-inner { min-height: 72px; }
    .nav-toggle { display: grid; }
    .nav-menu {
        position: fixed;
        display: none;
        flex-direction: column;
        align-items: stretch;
        top: 116px;
        left: 16px;
        right: 16px;
        max-height: calc(100vh - 138px);
        overflow: auto;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 22px;
        background: #fff;
        box-shadow: var(--shadow);
    }
    .nav-menu.open { display: flex; }
    .nav-link, .dropdown-button { width: 100%; justify-content: space-between; border-radius: 14px; }
    .nav-cta { width: 100%; }
    .nav-cta .btn { width: 100%; }
    .dropdown-menu { position: static; width: 100%; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-radius: 16px; display: none; margin-top: 4px; }
    .dropdown-menu::before { display: none; }
    .nav-dropdown.open .dropdown-menu { display: block; }
    .hero-bajaj { padding-top: 70px; }
    .hero-copy h1 { font-size: clamp(38px, 11vw, 60px); }
    .hero-service-tabs, .bajaj-service-grid, .case-card-grid, .why-card-grid, .insight-grid, .tech-gallery-grid, .services-visual-strip { grid-template-columns: 1fr; }
    .hero-service-tabs { transform: translateY(44px); }
    .case-intro-section { padding-top: 110px; }
    .detail-card { grid-template-columns: 1fr; }
    .detail-photo img { min-height: 240px; }
    .footer-cta-panel, .cta-box { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
    .container { width: min(100% - 28px, var(--container)); }
    .section { padding: 68px 0; }
    .hero-showcase { min-height: 400px; }
    .dashboard-card { width: 100%; }
    .dashboard-card img { height: 260px; }
    .floating-service-card { position: static; margin-top: 12px; width: fit-content; }
    .card-one, .card-two { position: absolute; }
    .card-one { left: 8px; top: 282px; }
    .card-two { right: 8px; bottom: 14px; }
    .hero-service-tabs article { min-height: auto; padding: 24px; }
    .stacked-photos { min-height: auto; }
    .photo-large { width: 100%; height: 330px; }
    .photo-small { position: static; width: 82%; height: 210px; margin: -60px auto 0; }
    .process-grid, .feature-card-grid { grid-template-columns: 1fr; }
    .form-row, .payment-card { grid-template-columns: 1fr; }
    .payment-card img { width: 170px; }
    .contact-info, .form-card { padding: 24px; }
    .cta-box { padding: 30px 24px; border-radius: 26px; }
    .footer-cta-panel { transform: translateY(-28px); padding: 26px; }
    .footer-grid { grid-template-columns: 1fr; padding-top: 28px; }
    .footer-bottom { display: grid; }
    .floating-whatsapp { right: 16px; bottom: 16px; width: 58px; height: 58px; }
}
