:root {
    --primary: #071b2f;
    --primary-2: #0c2a4d;
    --primary-3: #123d68;
    --accent: #2f8cff;
    --accent-2: #74d0ff;
    --accent-soft: rgba(47, 140, 255, 0.14);
    --bg: #edf4fb;
    --surface: #ffffff;
    --text: #12263d;
    --muted: #5d718b;
    --border: rgba(11, 31, 58, 0.1);
    --success: #16b67a;
    --warning: #f5b942;
    --danger: #ef476f;
    --shadow: 0 28px 80px rgba(7, 27, 47, 0.14);
    --shadow-soft: 0 15px 35px rgba(47, 140, 255, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(98, 173, 255, 0.14), transparent 28%),
        linear-gradient(180deg, #edf4fb 0%, #f6f9fd 100%);
    color: var(--text);
    line-height: 1.7;
}
body.admin-body { background: #eef4f8; }
.admin-layout { min-height: 100vh; display: flex; }
.admin-sidebar { width: 255px; flex: 0 0 255px; display: flex; flex-direction: column; padding: 1.5rem 1rem; background: linear-gradient(180deg, #071b2f, #0c3154); color: #fff; }
.admin-brand { display: flex; align-items: center; gap: 0.65rem; color: #fff; font-size: 0.78rem; font-weight: 900; letter-spacing: 0.08em; margin-bottom: 2rem; }
.admin-brand .brand-mark { width: 38px; height: 38px; font-size: 0.78rem; }
.admin-logo { display: block; width: auto; height: auto; max-width: 200px; max-height: 60px; object-fit: contain; object-position: left center; }
.settings-preview { display: block; max-width: 180px; max-height: 70px; object-fit: contain; border: 1px solid var(--border); border-radius: 8px; padding: 0.25rem; }
.settings-favicon-preview { display: block; width: 48px; height: 48px; object-fit: contain; border: 1px solid var(--border); border-radius: 8px; padding: 0.25rem; }
.theme-swatch { display: inline-block; width: 18px; height: 18px; border: 1px solid rgba(0,0,0,0.18); border-radius: 4px; }
.admin-nav { display: grid; gap: 0.35rem; }
.admin-nav a, .admin-sidebar-footer a { display: flex; align-items: center; gap: 0.7rem; padding: 0.75rem 0.85rem; border-radius: 10px; color: rgba(255,255,255,0.75); font-weight: 700; font-size: 0.92rem; }
.admin-nav a:hover, .admin-nav a.active, .admin-sidebar-footer a:hover { color: #fff; background: rgba(116,208,255,0.15); }
.admin-sidebar-link { width: 100%; border: 0; text-align: left; background: transparent; cursor: pointer; }
.admin-nav i, .admin-sidebar-footer i { width: 1.15rem; text-align: center; color: var(--accent-2); }
.admin-sidebar-footer { margin-top: auto; display: grid; gap: 0.25rem; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1rem; }
.admin-main { min-width: 0; flex: 1; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 2rem clamp(1rem, 4vw, 3rem) 1.25rem; background: #fff; border-bottom: 1px solid var(--border); }
.admin-topbar h1 { margin: 0.25rem 0 0; color: var(--primary); font-size: clamp(1.45rem, 3vw, 2.1rem); }
.admin-user { color: var(--muted); font-weight: 700; white-space: nowrap; }
.admin-user i { color: var(--accent); margin-right: 0.35rem; }
.admin-content { padding: 1.5rem clamp(1rem, 4vw, 3rem) 3rem; }
.admin-login-screen { min-height: 100vh; display: grid; place-items: center; padding: 1.5rem; background: radial-gradient(circle at top right, rgba(116,208,255,0.25), transparent 35%), #eef4f8; }
.admin-login-card { width: min(100%, 460px); padding: clamp(1.5rem, 5vw, 2.5rem); border: 1px solid var(--border); border-radius: 20px; background: #fff; box-shadow: 0 24px 70px rgba(7,27,47,0.14); }
.admin-login-card h1 { color: var(--primary); font-size: 1.7rem; margin: 0.4rem 0; }
.admin-stat { min-height: 130px; padding: 1.25rem; border: 1px solid var(--border); border-radius: 16px; background: #fff; box-shadow: 0 12px 28px rgba(7,27,47,0.06); }
.admin-stat i { color: var(--accent); font-size: 1.2rem; }
.admin-stat strong { display: block; color: var(--primary); font-size: 1.8rem; line-height: 1.2; margin-top: 0.7rem; }
.admin-stat span { color: var(--muted); font-weight: 700; font-size: 0.85rem; }
.admin-panel { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 1.35rem; box-shadow: 0 12px 28px rgba(7,27,47,0.05); }
.admin-panel h2 { color: var(--primary); font-size: 1.15rem; margin: 0 0 1rem; }
.admin-table th { color: var(--muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; }
.admin-table td, .admin-table th { vertical-align: middle; }
@media (max-width: 800px) {
    .admin-layout { display: block; }
    .admin-sidebar { width: 100%; padding: 1rem; }
    .admin-brand { margin-bottom: 1rem; }
    .admin-nav { display: flex; overflow-x: auto; }
    .admin-nav a { white-space: nowrap; }
    .admin-sidebar-footer { display: flex; margin-top: 0.75rem; padding-top: 0.75rem; }
    .admin-topbar { align-items: flex-start; flex-direction: column; }
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--primary);
    /* simplified: solid color with subtle border */
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-shell {
    position: relative;
}
.navbar {
    padding: 0.9rem 0;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 800;
    color: #fff !important;
    letter-spacing: 0.03em;
    white-space: nowrap;
}
.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--accent);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 900;
}
.site-logo { display: block; width: auto; height: auto; max-width: min(270px, 30vw); max-height: 72px; object-fit: contain; object-position: left center; }
.brand-text {
    font-size: 0.86rem;
    letter-spacing: 0.05em;
}
@media (max-width: 575px) {
    .site-logo { max-width: 190px; max-height: 60px; }
    .navbar { padding: 0.65rem 0; }
}
.nav-menu {
    gap: 0.2rem;
}
.navbar-nav .nav-link {
    color: rgba(255,255,255,0.92) !important;
    font-weight: 600;
    padding: 0.55rem 0.9rem !important;
    border-radius: 8px;
    transition: background-color 160ms ease, color 160ms ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
    color: #fff !important;
    background: rgba(0,0,0,0.08);
}
.navbar-toggler {
    border: 1px solid rgba(255,255,255,0.12);
    padding: 0.4rem 0.6rem;
}
.navbar-toggler:focus { box-shadow: none; }

.btn {
    border-radius: 10px;
    font-weight: 700;
    padding: 0.65rem 1.05rem;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.btn:hover {
    transform: translateY(-2px);
}
.btn-primary {
    background: var(--accent);
    border: none;
    color: #fff;
}
.btn-outline-light {
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    background: rgba(255,255,255,0.04);
}
.btn-link {
    color: var(--primary);
    background: transparent;
    padding: 0;
}
.pulse-btn {
    animation: pulseGlow 1.15s infinite ease-in-out;
    box-shadow: 0 0 0 0 rgba(116, 208, 255, 0.9), 0 0 60px rgba(47, 140, 255, 0.8), 0 14px 34px rgba(47, 140, 255, 0.42);
}
.pulse-btn:hover,
.pulse-btn:focus-visible {
    animation-play-state: paused;
    box-shadow: 0 0 0 7px rgba(116, 208, 255, 0.28), 0 0 34px rgba(116, 208, 255, 0.95), 0 16px 48px rgba(116, 208, 255, 0.65);
}

@media (hover: hover) and (min-width: 577px) {
    .pulse-btn {
        position: relative;
        z-index: 2;
    }
    .pulse-btn::after {
        content: "💡 Have an idea? Let’s turn it into reality!\A Share your project with NEXTRION SOLUTIONS and let our expertise build your solution.";
        position: absolute;
        left: 50%;
        top: calc(100% + 14px);
        width: min(320px, 78vw);
        padding: 0.85rem 1rem;
        border: 1px solid rgba(116, 208, 255, 0.48);
        border-radius: 12px;
        background: rgba(7, 27, 47, 0.97);
        box-shadow: 0 14px 35px rgba(7, 27, 47, 0.28), 0 0 24px rgba(47, 140, 255, 0.34);
        color: #fff;
        font-size: 0.82rem;
        font-weight: 600;
        line-height: 1.5;
        text-align: center;
        white-space: pre-line;
        pointer-events: none;
        opacity: 0;
        transform: translate(-50%, -6px);
        transition: opacity 180ms ease, transform 180ms ease;
    }
    .pulse-btn::before {
        content: "";
        position: absolute;
        left: 50%;
        top: calc(100% + 7px);
        width: 12px;
        height: 12px;
        border-top: 1px solid rgba(116, 208, 255, 0.48);
        border-left: 1px solid rgba(116, 208, 255, 0.48);
        background: rgba(7, 27, 47, 0.97);
        opacity: 0;
        transform: translate(-50%, -6px) rotate(45deg);
        transition: opacity 180ms ease, transform 180ms ease;
    }
    .pulse-btn:hover::before,
    .pulse-btn:hover::after,
    .pulse-btn:focus-visible::before,
    .pulse-btn:focus-visible::after {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--hero) 0%, var(--primary) 48%, var(--primary) 100%);
    color: #fff;
    padding: 3.1rem 0 3rem;
    overflow: hidden;
}
.homepage-banner-section {
    padding: 2.5rem 0 0;
    background: linear-gradient(180deg, #fff 0%, #f2f7fc 100%);
}
.homepage-banner {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-radius: 28px;
    aspect-ratio: 16 / 13;
    background: #071a31;
    box-shadow: 0 24px 60px rgba(7, 27, 47, 0.22), 0 0 0 8px rgba(116, 208, 255, 0.04);
}
.hero-visual .homepage-banner {
    width: min(100%, 620px);
}
.hero-visual .homepage-banner .carousel-item {
    min-height: 390px;
}
.homepage-banner .carousel-item {
    position: relative;
    height: 100%;
    min-height: 180px;
    overflow: hidden;
}
.homepage-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.homepage-banner .carousel-item.active img {
    animation: bannerZoom 5.2s ease-out both;
}
.homepage-banner .carousel-indicators {
    z-index: 3;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1rem;
}
.homepage-banner .carousel-indicators [data-bs-target] {
    width: 24px;
    height: 4px;
    margin: 0;
    border: 0;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.55);
    opacity: 1;
    transition: width 0.25s ease, background-color 0.25s ease;
}
.homepage-banner .carousel-indicators .active {
    width: 42px;
    background-color: #74d0ff;
}
.homepage-banner .carousel-control-prev,
.homepage-banner .carousel-control-next {
    z-index: 3;
    width: 12%;
}
.homepage-banner .carousel-control-prev-icon,
.homepage-banner .carousel-control-next-icon {
    width: 2.4rem;
    height: 2.4rem;
    padding: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background-color: rgba(7, 26, 49, 0.52);
    background-size: 55% 55%;
    backdrop-filter: blur(8px);
}
@keyframes bannerZoom {
    from { transform: scale(1.03); }
    to { transform: scale(1); }
}
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.7), transparent 90%);
}
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.42;
}
.hero-glow-one {
    width: 260px;
    height: 260px;
    background: rgba(47, 140, 255, 0.45);
    top: 40px;
    left: 8%;
}
.hero-glow-two {
    width: 220px;
    height: 220px;
    background: rgba(116, 208, 255, 0.3);
    right: 12%;
    bottom: 30px;
}
.hero-copy,
.hero-visual {
    position: relative;
    z-index: 1;
}
.hero-copy h1 {
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 1.04;
    max-width: 720px;
    margin: 1.1rem 0 1rem;
    font-weight: 900;
    letter-spacing: -0.04em;
}
.hero-copy p {
    font-size: 1.12rem;
    max-width: 700px;
    color: rgba(255,255,255,0.8);
}
.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--accent-2);
}
.text-primary { color: var(--accent) !important; }
.hero-actions { margin-top: 1.8rem !important; }
.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.6rem;
}
.hero-metrics div {
    min-width: 120px;
}
.hero-metrics strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
}
.hero-metrics span {
    color: rgba(255,255,255,0.7);
}
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 0;
}
.tech-panel {
    width: min(100%, 430px);
    background: rgba(7, 16, 29, 0.72);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 28px;
    padding: 1rem;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
    transform: rotate(2deg);
    animation: floatCard 6s ease-in-out infinite;
}
.panel-header { display: flex; gap: 0.5rem; padding: 0.5rem 0.2rem 1rem; }
.dot {
    display: inline-block;
    width: 12px; height: 12px; border-radius: 50%;
}
.dot.red { background: #ff5f57; }
.dot.amber { background: #febc2e; }
.dot.green { background: #28c840; }
.panel-body {
    background: linear-gradient(180deg, rgba(17,36,62,0.96) 0%, rgba(9,20,34,0.96) 100%);
    border-radius: 20px;
    padding: 1.5rem 1.2rem;
    border: 1px solid rgba(116,208,255,0.08);
}
.signal-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.signal-row span {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(47,140,255,0.14);
    color: var(--accent-2);
    font-size: 0.72rem;
    font-weight: 700;
}
.mini-chart {
    display: flex; align-items: end; gap: 0.8rem; height: 150px; margin-bottom: 1.5rem;
    padding: 1rem 0.2rem 0;
}
.mini-chart span {
    flex: 1;
    border-radius: 12px 12px 0 0;
    background: linear-gradient(180deg, #6ad0ff 0%, #2f8cff 100%);
    box-shadow: 0 12px 18px rgba(47, 140, 255, 0.22);
    transform-origin: bottom center;
    animation: chartRise 3.5s ease-in-out infinite alternate;
}
.mini-chart span:nth-child(2) { animation-delay: 0.18s; }
.mini-chart span:nth-child(3) { animation-delay: 0.36s; }
.mini-chart span:nth-child(4) { animation-delay: 0.54s; }
.mini-chart span:nth-child(5) { animation-delay: 0.72s; }
.feature-list {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 0.8rem;
    color: rgba(255,255,255,0.82);
}
.feature-list li { display: flex; align-items: center; gap: 0.7rem; }
.feature-list i { color: var(--accent-2); }
.floating-badge {
    position: absolute;
    z-index: 2;
    background: rgba(10, 20, 32, 0.74);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 999px;
    padding: 0.7rem 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
    animation: floatBadge 4.5s ease-in-out infinite;
}
.badge-one { top: 25px; right: 10%; }
.badge-two { bottom: 35px; left: 4%; animation-delay: 1.4s; }

.trusted-band {
    background: rgba(13, 27, 46, 0.96);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.78);
    padding: 1.2rem 0;
}
.trusted-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
}

.section { padding: 4.25rem 0; }
.section-alt { background: #edf3fb; }
.info-band-section {
    position: relative;
    padding-top: 3.75rem;
}
.section-header { margin-bottom: 1.15rem; }
.section-header h2 {
    color: var(--primary);
    font-weight: 900;
    font-size: clamp(2rem, 3vw, 2.9rem);
    margin-top: 0.6rem;
    letter-spacing: -0.04em;
}
.lead-copy {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 560px;
}
.metrics-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.2rem;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #edf4fb);
    border: 1px solid var(--border);
    box-shadow: 0 12px 28px rgba(11,31,58,0.04);
}
.mini-stat {
    padding: 1.1rem 0.8rem;
    border-radius: 16px;
    background: rgba(47,140,255,0.05);
    text-align: center;
}
.mini-stat strong {
    display: block;
    font-size: 1.7rem;
    color: var(--primary);
    font-weight: 900;
}
.mini-stat span {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 600;
}
.capability-card {
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(238,247,254,0.9));
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 1.6rem;
    box-shadow: 0 12px 28px rgba(11,31,58,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.capability-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(18,56,90,0.09);
}
.capability-card i {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    background: rgba(47,140,255,0.12);
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}
.capability-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.18rem;
    color: var(--primary);
}
.capability-card p {
    margin: 0;
    color: var(--muted);
}
.service-card, .info-card, .portfolio-card, .step-card, .card-box {
    background: rgba(255,255,255,0.8);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 1.8rem;
    box-shadow: 0 18px 40px rgba(16,45,91,0.05);
    height: 100%;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.service-card:hover, .info-card:hover, .portfolio-card:hover, .step-card:hover, .card-box:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 60px rgba(16,45,91,0.1);
    border-color: rgba(47,140,255,0.22);
}
.icon-box {
    width: 64px; height: 64px; border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(47,140,255,0.16), rgba(116,208,255,0.26));
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: inset 0 0 0 1px rgba(47,140,255,0.1);
}
.service-card h3, .info-card h3, .portfolio-card h3, .step-card h3 { font-size: 1.28rem; margin-bottom: 0.8rem; color: var(--primary); }
.service-card p, .portfolio-card p { color: var(--muted); }
.service-card {
    display: flex;
    flex-direction: column;
}
.service-card-action {
    align-self: flex-start;
    margin-top: auto;
    padding: 0.55rem 0.9rem;
    font-size: 0.86rem;
    font-weight: 700;
}
.portfolio-card {
    display: flex;
    flex-direction: column;
}
.portfolio-card .card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
}
.portfolio-card-action {
    margin-top: auto;
    font-weight: 700;
}
.check-badge {
    width: 54px; height: 54px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
    background: rgba(22,182,122,0.13); color: var(--success); font-size: 1.2rem; margin-bottom: 1rem;
}
.why-choose-card, .process-card {
    padding: 1.15rem;
    border-radius: 14px;
}
.why-choose-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.why-choose-card .check-badge {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 0.9rem;
    margin: 0;
}
.why-choose-card h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.3;
}
.step-card { position: relative; overflow: hidden; }
.process-card h3 {
    margin: 0.45rem 0 0.35rem;
    font-size: 1.05rem;
    line-height: 1.35;
}
.process-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.5;
}
.step-card::before {
    content: attr(data-step);
    position: absolute; top: 1.1rem; right: 1.2rem; font-size: 2.8rem; font-weight: 900; color: rgba(47, 140, 255, 0.08);
}
.step-number { display: inline-block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; color: var(--accent); }
.portfolio-card img {
    border-radius: 18px; height: 220px; object-fit: cover; margin-bottom: 1rem;
    box-shadow: 0 10px 25px rgba(10,20,34,0.12);
}
.badge-soft {
    display: inline-block; background: var(--accent-soft); color: var(--accent); padding: 0.45rem 0.8rem; border-radius: 999px; font-size: 0.75rem; font-weight: 700;
}
.meta-row { margin: 1rem 0; color: var(--muted); font-size: 0.88rem; }
.cta-section { padding-top: 2rem; }
.cta-banner {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(230,243,255,0.94));
    border: 1px solid rgba(47,140,255,0.12);
    border-radius: 30px;
    box-shadow: 0 26px 60px rgba(14,34,61,0.08);
    padding: 2.2rem;
}
.cta-banner h2 {
    margin: 0.5rem 0 0;
    color: var(--primary);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.04em;
}
.cta-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn-outline-primary {
    border: 1px solid rgba(47, 140, 255, 0.35);
    background: rgba(47, 140, 255, 0.05);
    color: var(--primary);
}
.cta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.feature-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    background: rgba(7,27,47,0.04);
    border: 1px solid rgba(11,31,58,0.08);
    color: var(--primary);
    border-radius: 16px;
    padding: 0.9rem 1rem;
    font-weight: 700;
}
.feature-pill i { color: var(--accent); }
.site-footer {
    background: linear-gradient(180deg, #081b2f 0%, #061522 100%);
    color: rgba(255,255,255,0.8);
    padding: 3rem 0 1.5rem;
}
.site-footer h4, .site-footer h5 { color: #fff; }
.site-footer ul {
    list-style: none; padding: 0; margin: 0; display: grid; gap: 0.7rem;
}
.site-footer a { color: rgba(255,255,255,0.72); }
.site-footer a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 2rem; padding-top: 1.5rem;
    display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.social-links { display: inline-flex; gap: 0.8rem; }

.whatsapp-float {
    position: fixed; right: 25px; bottom: 25px; width: 58px; height: 58px;
    border-radius: 50%; background: linear-gradient(135deg, #25d366, #1fbf62); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; box-shadow: 0 18px 40px rgba(37,211,102,0.35); z-index: 1000; animation: floatBadge 3.4s ease-in-out infinite;
}

.page-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
    color: #fff; padding: 3rem 0 2.25rem;
}
.page-banner h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; }
.page-banner p { color: rgba(255,255,255,.8); }
.content-section { padding: 3.25rem 0; }
.form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px; padding: 2rem; box-shadow: var(--shadow);
}
.form-control, .form-select, textarea {
    border-radius: 12px; border: 1px solid var(--border); padding: 0.9rem 1rem; background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-control:focus, .form-select:focus, textarea:focus {
    border-color: rgba(47,140,255,0.5);
    box-shadow: 0 0 0 0.2rem rgba(47,140,255,0.12);
    outline: none;
}
.form-label { font-weight: 700; color: var(--primary); }
.page-shell { background: var(--surface); border: 1px solid var(--border); border-radius: 22px; padding: 2rem; box-shadow: 0 12px 28px rgba(16,45,91,0.04); }
.alert { border-radius: 14px; }
.table thead th { background: #eef4ff; }
.timeline { position: relative; }
.timeline-item { position: relative; padding-left: 2rem; margin-bottom: 1.3rem; }
.timeline-item::before { content: ''; position: absolute; left: 0; top: 0.45rem; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); }
.timeline-item.completed::before { background: var(--success); }
.timeline-item.pending::before { background: #dfe7f3; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(1.5deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes chartRise {
    0% { transform: scaleY(0.82); opacity: 0.8; }
    100% { transform: scaleY(1); opacity: 1; }
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(116, 208, 255, 0.82), 0 0 24px rgba(47, 140, 255, 0.72), 0 14px 34px rgba(47, 140, 255, 0.42); }
    50% { box-shadow: 0 0 0 12px rgba(116, 208, 255, 0), 0 0 42px rgba(116, 208, 255, 1), 0 16px 50px rgba(116, 208, 255, 0.72); }
}

@media (prefers-reduced-motion: reduce) {
    .pulse-btn {
        animation: none;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(7,27,47,0.98);
        padding: 1rem;
        border-radius: 18px;
        margin-top: 1rem;
    }
    .header-actions {
        margin-top: 1rem;
        display: flex;
        flex-wrap: wrap;
    }
    .navbar-nav { gap: 0.35rem; }
    .brand-text { font-size: 0.75rem; }
}
@media (max-width: 576px) {
    .section { padding: 3.25rem 0; }
    .hero-section {
        padding-top: 2.75rem;
        background: linear-gradient(135deg, #06172b 0%, #071b2f 48%, #071b2f 100%);
    }
    .hero-copy .d-flex { flex-direction: column; }
    .hero-metrics { gap: 1.2rem; }
    .btn { width: 100%; }
    .trusted-row { gap: 0.8rem; letter-spacing: 0.06em; }
    .cta-banner { padding: 1.5rem; }
    .cta-grid { grid-template-columns: 1fr; }
    .cta-actions { justify-content: stretch; }
    .cta-actions .btn { width: 100%; }
    .hero-visual {
        min-height: 0;
        padding: 0.75rem 0;
    }
    .tech-panel { transform: none; }
    .badge-one { top: 0; right: 2%; }
    .badge-two { bottom: 0; left: 2%; }
    .homepage-banner-section { padding-top: 1.25rem; }
    .homepage-banner { border-radius: 18px; }
    .homepage-banner .carousel-item { min-height: 150px; }
    .hero-visual .homepage-banner .carousel-item { min-height: 300px; }
    .homepage-banner .carousel-control-prev-icon,
    .homepage-banner .carousel-control-next-icon {
        width: 2rem;
        height: 2rem;
    }
    .counters-section .row {
        --bs-gutter-x: 0.75rem;
        --bs-gutter-y: 0.75rem;
    }
    .counters-section .counter-card {
        padding: 1rem 0.5rem;
        border-radius: 14px;
    }
    .counter {
        font-size: 1.7rem;
    }
    .counter-label {
        font-size: 0.78rem;
        line-height: 1.3;
    }
    .site-footer {
        padding-top: 2.25rem;
    }
    .site-footer .row {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1.5rem;
    }
    .site-footer h4,
    .site-footer h5 {
        margin-bottom: 0.65rem;
    }
    .site-footer ul {
        gap: 0.45rem;
        font-size: 0.9rem;
    }
}

/* Counters */
.counters-section .counter-card { background: linear-gradient(180deg,#fff,#f6fbff); border-radius:18px; padding:1.6rem; box-shadow:var(--shadow-soft); }
.counter { font-size:2.2rem; font-weight:900; color:var(--primary); }
.counter-label { color:var(--muted); font-weight:700; margin-top:0.45rem; }

/* Testimonials */
.testimonial-card { padding:2rem; background: linear-gradient(180deg,#ffffff,#f7fbff); border-radius:18px; box-shadow: 0 18px 40px rgba(16,45,91,0.04); }
.testimonial-card .quote { font-size:1.05rem; color:var(--primary-3); margin-bottom:0.8rem; }

/* Pricing */
.pricing-section .card-box { text-align:center; padding:2rem; }
.pricing-section .price { font-size:2rem; font-weight:900; color:var(--accent); margin:0.6rem 0; }
.pricing-features { list-style:none; padding:0; margin:1rem 0 1.25rem; display:grid; gap:0.55rem; }
.pricing-features li { color:var(--muted); }

/* Gallery slider */
.gallery-wrap { position:relative; overflow:hidden; padding:1rem 0; }
.gallery-track { display:flex; gap:1rem; transition:transform 0.45s ease; }
.gallery-item { min-width:280px; border-radius:14px; overflow:hidden; background:#fff; box-shadow:0 14px 40px rgba(7,27,47,0.06); }
.gallery-item img { width:100%; height:180px; object-fit:cover; display:block; }
.gallery-caption { padding:0.75rem 0.9rem; }
.gallery-prev, .gallery-next { position:absolute; top:50%; transform:translateY(-50%); background:rgba(255,255,255,0.9); border:1px solid var(--border); width:44px; height:44px; border-radius:10px; display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-soft); }
.gallery-prev { left:12px; }
.gallery-next { right:12px; }

/* Contact compact */
.contact-compact-section .contact-list { list-style:none; padding:0; margin:1rem 0 0; display:grid; gap:0.6rem; }
.contact-list li { display:flex; gap:0.6rem; align-items:center; color:var(--muted); }

@media (max-width: 768px) {
    .gallery-item { min-width:220px; }
}

/* Customer dashboard styles */
.dashboard-stats .stat-card {
    background: linear-gradient(180deg,#ffffff,#f6fbff);
    border: 1px solid var(--border);
    padding: 1rem 1.2rem;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(47,140,255,0.06);
}
.stat-number { font-size: 1.6rem; font-weight:900; color:var(--primary); }
.stat-label { color:var(--muted); font-weight:700; font-size:0.9rem; }
.projects-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.project-card { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); background: #fff; box-shadow: 0 18px 40px rgba(16,45,91,0.04); }
.project-card-body { padding: 1.2rem; }
.project-title { margin: 0; font-size: 1.05rem; }
.project-meta { color: var(--muted); font-size: 0.9rem; }
.project-amount { font-weight:700; color:var(--primary); }
.project-actions .btn { padding: 0.45rem 0.75rem; font-size:0.9rem; }
.empty-state { background: linear-gradient(180deg,#f8fbff,#ffffff); border:1px dashed var(--border); border-radius:12px; }

@media (min-width: 992px) {
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
}
