:root {
    --bg: #f2f6fb;
    --surface: #ffffff;
    --surface-alt: #f7fbff;
    --text: #112138;
    --muted: #607089;
    --line: #d6e0ed;
    --primary: #0d7df2;
    --primary-deep: #0b4db3;
    --primary-soft: #eaf4ff;
    --green-soft: #e8fbf3;
    --orange-soft: #fff4db;
    --dark: #071a2f;
    --shadow: 0 24px 60px rgba(17, 33, 56, 0.1);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --wrap: min(1200px, calc(100% - 28px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: "Hind Siliguri", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(13, 125, 242, 0.16), transparent 28%),
        radial-gradient(circle at top right, rgba(21, 185, 127, 0.12), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, #f2f6fb 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

h1,
h2,
h3,
h4 {
    font-family: "Sora", sans-serif;
}

.wrap {
    width: var(--wrap);
    margin: 0 auto;
}

.topbar {
    background: var(--dark);
    color: #d7e8ff;
    font-size: 14px;
}

.topbar-inner,
.nav-inner,
.hero-grid,
.metric-grid,
.quick-grid,
.section-head,
.product-grid,
.service-grid,
.trust-grid,
.brand-grid,
.footer-grid,
.contact-grid,
.feature-grid,
.cta-row,
.split-grid {
    display: flex;
    gap: 18px;
}

.topbar-inner {
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.inline-links,
.nav-links,
.hero-pills,
.meta-row,
.card-actions,
.float-actions,
.slider-dots,
.footer-links,
.page-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.inline-links a,
.inline-links span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-shell {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: rgba(248, 251, 255, 0.88);
    border-bottom: 1px solid rgba(17, 33, 56, 0.06);
}

.nav-inner {
    min-height: 80px;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Sora", sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #12b8ff);
    box-shadow: 0 14px 28px rgba(13, 125, 242, 0.28);
}

.nav-links a,
.page-links a {
    padding: 11px 15px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 600;
}

.nav-links a.active,
.nav-links a:hover,
.nav-links a:focus-visible,
.page-links a.active,
.page-links a:hover,
.page-links a:focus-visible {
    background: var(--primary-soft);
    color: var(--primary-deep);
    outline: none;
}

.btn,
.btn-outline,
.btn-dark {
    border: none;
    border-radius: 999px;
    padding: 13px 20px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn-outline:hover,
.btn-dark:hover,
.product-card:hover,
.service-card:hover,
.trust-card:hover,
.brand-card:hover,
.feature-card:hover,
.contact-card:hover {
    transform: translateY(-3px);
}

.btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: #fff;
    box-shadow: 0 16px 30px rgba(13, 125, 242, 0.24);
}

.btn-outline {
    background: #fff;
    color: var(--primary-deep);
    border: 1px solid rgba(13, 125, 242, 0.16);
}

.btn-dark {
    background: var(--dark);
    color: #fff;
    box-shadow: 0 16px 30px rgba(7, 26, 47, 0.22);
}

.hero,
.page-hero {
    padding: 30px 0 22px;
}

.hero-grid {
    align-items: stretch;
}

.hero-copy,
.hero-panel,
.split-main,
.split-side {
    flex: 1 1 0;
    min-width: 0;
}

.hero-copy,
.page-banner {
    padding: 36px;
    border-radius: var(--radius-xl);
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 30%),
        linear-gradient(135deg, #071a2f 0%, #0b4db3 54%, #0ebeff 100%);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero-copy::after,
.page-banner::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -70px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 13px;
    font-weight: 700;
}

.dark-text .eyebrow {
    background: var(--primary-soft);
    color: var(--primary-deep);
}

h1 {
    margin: 18px 0 14px;
    font-size: clamp(34px, 6vw, 60px);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.hero-copy p,
.page-banner p {
    margin: 0 0 22px;
    max-width: 60ch;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.hero-pills span {
    padding: 10px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 14px;
}

.hero-panel {
    display: grid;
    gap: 18px;
}

.slider-box {
    position: relative;
    min-height: 336px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--dark);
    box-shadow: var(--shadow);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.45s ease;
    padding: 28px;
    display: grid;
    align-content: end;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 26, 47, 0.06), rgba(7, 26, 47, 0.84));
}

.slide.active {
    opacity: 1;
}

.slide-body {
    position: relative;
    z-index: 1;
}

.slide h2 {
    margin: 10px 0 8px;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.slide p {
    margin: 0;
    max-width: 32ch;
    color: rgba(255, 255, 255, 0.86);
}

.slider-dots {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;
}

.slider-dots button {
    width: 11px;
    height: 11px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.36);
    cursor: pointer;
}

.slider-dots button.active {
    background: #fff;
}

.mini-banner,
.metric-card,
.quick-card,
.product-card,
.service-card,
.trust-card,
.brand-card,
.contact-card,
.footer-card,
.feature-card,
.page-card {
    background: var(--surface);
    border: 1px solid rgba(17, 33, 56, 0.07);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.mini-banner,
.page-card {
    padding: 24px;
}

.mini-banner strong {
    display: block;
    margin-top: 8px;
    font-size: 30px;
    color: var(--primary-deep);
    letter-spacing: -0.05em;
}

.metric-grid,
.quick-grid,
.product-grid,
.service-grid,
.trust-grid,
.brand-grid,
.footer-grid,
.contact-grid,
.feature-grid,
.cta-row,
.split-grid {
    flex-wrap: wrap;
}

.metric-card {
    flex: 1 1 180px;
    padding: 20px;
}

.metric-card span {
    display: block;
    font-size: 13px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.metric-card strong {
    font-family: "Sora", sans-serif;
    font-size: 30px;
    letter-spacing: -0.05em;
}

.quick-card,
.feature-card {
    flex: 1 1 220px;
    padding: 22px;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.image-card {
    overflow: hidden;
}

.image-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 16px;
}

.image-card img.brand-photo {
    object-fit: contain;
    background: linear-gradient(180deg, #f4faff, #eaf4ff);
    padding: 18px;
}

.quick-card strong {
    display: block;
    margin-top: 10px;
    font-size: 24px;
    color: var(--primary-deep);
}

.ticker {
    margin-top: 18px;
    padding: 18px 20px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #081b31, #11355a);
    color: #e4f0ff;
    box-shadow: var(--shadow);
}

.ticker-track {
    display: flex;
    gap: 28px;
    min-width: max-content;
    animation: ticker 25s linear infinite;
}

@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-22%); }
}

.section {
    padding: 26px 0;
}

.section-head {
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 18px;
}

.section-head h3 {
    margin: 0;
    font-size: clamp(24px, 4vw, 34px);
    letter-spacing: -0.04em;
}

.section-head p,
.mini-banner p,
.page-card p,
.feature-card p {
    margin: 6px 0 0;
    max-width: 60ch;
    color: var(--muted);
}

.product-card,
.service-card,
.trust-card,
.contact-card {
    flex: 1 1 250px;
    padding: 22px;
    transition: transform 0.2s ease;
}

.brand-card {
    flex: 1 1 150px;
    padding: 20px 16px;
    text-align: center;
    transition: transform 0.2s ease;
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 18px;
}

.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 22px;
    color: var(--primary-deep);
    background: linear-gradient(135deg, #e7f2ff, #dbfff0);
}

.tag {
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--green-soft);
    color: #0d8c60;
    font-size: 13px;
    font-weight: 700;
}

.warn {
    background: var(--orange-soft);
    color: #a76400;
}

.product-card h4,
.service-card h4,
.trust-card h4,
.brand-card h4,
.contact-card h4,
.footer-card h4,
.feature-card h4,
.page-card h4 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.16;
}

.product-card p,
.service-card p,
.trust-card p,
.brand-card p,
.contact-card p,
.footer-card p,
.meta-row span,
.feature-card p,
.page-card p,
.service-list span {
    color: var(--muted);
}

.price {
    margin: 16px 0;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price strong {
    font-family: "Sora", sans-serif;
    font-size: 34px;
    color: var(--primary-deep);
    letter-spacing: -0.05em;
}

.meta-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.card-actions {
    margin-top: 18px;
}

.card-actions a {
    flex: 1 1 auto;
    text-align: center;
}

.service-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.service-list li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--line);
}

.service-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.form-grid {
    display: grid;
    gap: 14px;
    margin-top: 16px;
}

.field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--text);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    color: var(--text);
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13, 125, 242, 0.12);
}

.rate-box {
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #eff7ff, #f6fcff);
    border: 1px solid rgba(13, 125, 242, 0.12);
    color: var(--primary-deep);
    font-weight: 700;
}

.inline-value {
    font-family: "Sora", sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.profile-stats {
    display: grid;
    gap: 14px;
    margin-top: 14px;
}

.profile-note {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

button.btn:disabled,
button.btn-outline:disabled,
button.btn-dark:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.brand-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    font-size: 24px;
    color: #fff;
    background: linear-gradient(135deg, var(--dark), var(--primary));
}

.contact-card.primary-card {
    color: #fff;
    background: linear-gradient(135deg, #071a2f 0%, #0b4db3 100%);
}

.contact-card.primary-card p,
.contact-card.primary-card .meta-row span {
    color: rgba(255, 255, 255, 0.86);
}

.page-banner.dark-text {
    color: var(--text);
    background: linear-gradient(135deg, #ffffff 0%, #f3f9ff 100%);
}

.page-banner.dark-text p {
    color: var(--muted);
}

.footer {
    padding: 10px 0 82px;
}

.footer-card {
    flex: 1 1 250px;
    padding: 24px;
}

.footer-links a {
    padding: 10px 12px;
    border-radius: 12px;
    background: var(--surface-alt);
    color: var(--muted);
    font-weight: 700;
}

.copyright {
    margin-top: 16px;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
}

.float-actions {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 50;
    flex-direction: column;
}

.float-actions a {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: 0 16px 30px rgba(7, 26, 47, 0.25);
}

.float-actions a:nth-child(1) { background: #25d366; }
.float-actions a:nth-child(2) { background: #229ed9; }
.float-actions a:nth-child(3) { background: linear-gradient(135deg, #ff8e2b, #f05252); }

@media (max-width: 1020px) {
    .hero-grid,
    .nav-inner,
    .split-grid {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .topbar-inner,
    .section-head,
    .contact-grid {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-copy,
    .page-banner,
    .mini-banner,
    .product-card,
    .service-card,
    .trust-card,
    .brand-card,
    .contact-card,
    .footer-card,
    .feature-card,
    .page-card {
        padding: 20px;
    }

    .slider-box {
        min-height: 320px;
    }

    .card-actions {
        flex-direction: column;
    }
}
