/* =========================================
   NEXVOLT HOSTING - CUSTOM WHMCS THEME
   Blue + Orange / Dark Hosting Style
   ========================================= */

/* ---------- GLOBAL ---------- */

:root {
    --nexvolt-bg: #07111f;
    --nexvolt-bg-light: #0c1a2d;
    --nexvolt-card: #10233d;
    --nexvolt-card-hover: #152c4a;

    --nexvolt-blue: #168cff;
    --nexvolt-blue-light: #55b2ff;

    --nexvolt-orange: #ff7a18;
    --nexvolt-orange-light: #ff9a44;

    --nexvolt-text: #ffffff;
    --nexvolt-muted: #9eb3c9;
    --nexvolt-border: rgba(255, 255, 255, 0.08);
}

body {
    background: var(--nexvolt-bg);
    color: var(--nexvolt-text);
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

/* ---------- LINKS ---------- */

a {
    color: var(--nexvolt-blue-light);
    transition: all 0.2s ease;
}

a:hover {
    color: var(--nexvolt-orange);
    text-decoration: none;
}

/* ---------- HEADER / NAVIGATION ---------- */

header,
.navbar,
.navbar-default {
    background: rgba(7, 17, 31, 0.96) !important;
    border: none !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.navbar a,
.navbar-nav > li > a {
    color: #ffffff !important;
    font-weight: 600;
}

.navbar a:hover,
.navbar-nav > li > a:hover {
    color: var(--nexvolt-orange) !important;
}

/* ---------- MAIN CONTENT ---------- */

.main-content,
section#main-body,
.container-fluid {
    background: transparent;
}

section#main-body {
    padding-top: 40px;
    padding-bottom: 60px;
}

/* ---------- PANELS / CARDS ---------- */

.card,
.panel,
.panel-default {
    background: var(--nexvolt-card) !important;
    border: 1px solid var(--nexvolt-border) !important;
    border-radius: 16px !important;
    color: var(--nexvolt-text);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover,
.panel:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.3);
}

.card-header,
.panel-heading {
    background: rgba(255, 255, 255, 0.03) !important;
    color: #ffffff !important;
    border-bottom: 1px solid var(--nexvolt-border) !important;
}

/* ---------- BUTTONS ---------- */

.btn-primary {
    background: linear-gradient(
        135deg,
        var(--nexvolt-blue),
        #0068d9
    ) !important;

    border: none !important;
    border-radius: 10px !important;
    font-weight: 700;
    padding: 10px 20px;
    box-shadow: 0 8px 22px rgba(22, 140, 255, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(
        135deg,
        var(--nexvolt-orange),
        #e85d00
    ) !important;

    transform: translateY(-2px);
}

.btn-success {
    background: var(--nexvolt-orange) !important;
    border-color: var(--nexvolt-orange) !important;
    border-radius: 10px;
}

.btn-success:hover {
    background: #e9680d !important;
}

/* ---------- FORMS ---------- */

.form-control {
    background: #0c1a2d !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 10px !important;
}

.form-control:focus {
    border-color: var(--nexvolt-blue) !important;
    box-shadow: 0 0 0 3px rgba(22, 140, 255, 0.15) !important;
}

.form-control::placeholder {
    color: #7189a3;
}

/* ---------- TABLES ---------- */

.table {
    color: #ffffff;
}

.table > thead > tr > th {
    border-color: var(--nexvolt-border);
    color: var(--nexvolt-blue-light);
}

.table > tbody > tr > td {
    border-color: var(--nexvolt-border);
}

/* ---------- ALERTS ---------- */

.alert {
    border-radius: 12px;
    border: none;
}

/* ---------- CLIENT AREA SIDEBAR ---------- */

.list-group-item {
    background: var(--nexvolt-card) !important;
    color: #ffffff !important;
    border-color: var(--nexvolt-border) !important;
}

.list-group-item:hover {
    background: var(--nexvolt-card-hover) !important;
    color: var(--nexvolt-orange) !important;
}

.list-group-item.active {
    background: var(--nexvolt-blue) !important;
    border-color: var(--nexvolt-blue) !important;
}

/* ---------- DROPDOWNS ---------- */

.dropdown-menu {
    background: #0c1a2d !important;
    border: 1px solid var(--nexvolt-border) !important;
    border-radius: 12px !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.dropdown-menu > li > a,
.dropdown-item {
    color: #ffffff !important;
}

.dropdown-menu > li > a:hover,
.dropdown-item:hover {
    background: rgba(22, 140, 255, 0.12) !important;
    color: var(--nexvolt-orange) !important;
}

/* ---------- MODALS ---------- */

.modal-content {
    background: var(--nexvolt-bg-light) !important;
    color: #ffffff;
    border: 1px solid var(--nexvolt-border);
    border-radius: 16px;
}

/* ---------- FOOTER ---------- */

footer,
.footer {
    background: #040b14 !important;
    color: var(--nexvolt-muted) !important;
    border-top: 1px solid var(--nexvolt-border);
}

footer a,
.footer a {
    color: #ffffff;
}

footer a:hover,
.footer a:hover {
    color: var(--nexvolt-orange);
}

/* ---------- HEADINGS ---------- */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #ffffff;
    font-weight: 700;
}

/* ---------- NEXVOLT ACCENT ---------- */

.text-primary {
    color: var(--nexvolt-blue-light) !important;
}

.text-success {
    color: var(--nexvolt-orange) !important;
}

/* ---------- SCROLLBAR ---------- */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #07111f;
}

::-webkit-scrollbar-thumb {
    background: #1a4772;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--nexvolt-orange);
}

/* ---------- MOBILE ---------- */

@media (max-width: 768px) {
    section#main-body {
        padding-top: 20px;
    }

    .card,
    .panel {
        border-radius: 12px !important;
    }
}
/* =========================================
   NEXVOLT HOMEPAGE
   ========================================= */

.nexvolt-home {
    overflow: hidden;
}

/* HERO */

.nv-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 90px 20px;
    background:
        radial-gradient(circle at 20% 20%, rgba(22, 140, 255, 0.14), transparent 35%),
        radial-gradient(circle at 80% 70%, rgba(255, 122, 24, 0.12), transparent 35%),
        linear-gradient(180deg, #07111f 0%, #091729 100%);
}

.nv-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.nv-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(22, 140, 255, 0.35);
    background: rgba(22, 140, 255, 0.08);
    color: #55b2ff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.2px;
    margin-bottom: 24px;
}

.nv-hero h1 {
    font-size: clamp(46px, 7vw, 84px);
    line-height: 1;
    margin-bottom: 24px;
    font-weight: 900;
    letter-spacing: -2px;
}

.nv-hero h1 span {
    background: linear-gradient(90deg, #168cff, #55b2ff, #ff7a18);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nv-hero p {
    max-width: 700px;
    margin: 0 auto 34px;
    color: #9eb3c9;
    font-size: 19px;
    line-height: 1.7;
}

.nv-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.nv-main-btn,
.nv-outline-btn {
    min-width: 160px;
    padding: 13px 22px !important;
    border-radius: 12px !important;
    font-weight: 800 !important;
}

.nv-outline-btn {
    border: 1px solid rgba(255,255,255,0.14) !important;
    background: rgba(255,255,255,0.04) !important;
    color: #fff !important;
}

.nv-outline-btn:hover {
    border-color: #ff7a18 !important;
    color: #ff7a18 !important;
}

.nv-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
}

.nv-glow-blue {
    background: #168cff;
    top: 60px;
    left: -100px;
}

.nv-glow-orange {
    background: #ff7a18;
    right: -100px;
    bottom: 40px;
}

/* SECTION HEADING */

.nv-section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
}

.nv-section-heading > span {
    display: inline-block;
    color: #ff7a18;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.nv-section-heading h2 {
    font-size: clamp(34px, 5vw, 52px);
    margin-bottom: 14px;
}

.nv-section-heading p {
    color: #9eb3c9;
    font-size: 17px;
    line-height: 1.7;
}

/* SERVICES */

.nv-services {
    padding: 90px 20px;
    background: #081422;
}

.nv-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1180px;
    margin: 0 auto;
}

.nv-service-card {
    position: relative;
    background: linear-gradient(180deg, #10233d 0%, #0d1d33 100%);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.25);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.nv-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(22,140,255,0.45);
    box-shadow: 0 25px 70px rgba(0,0,0,0.38);
}

.nv-featured-card {
    border-color: rgba(255,122,24,0.45);
    transform: scale(1.03);
}

.nv-featured-card:hover {
    transform: scale(1.03) translateY(-8px);
}

.nv-popular {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255,122,24,0.12);
    color: #ff9a44;
    border: 1px solid rgba(255,122,24,0.3);
}

.nv-service-icon {
    font-size: 38px;
    margin-bottom: 18px;
}

.nv-service-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
}

.nv-service-card p {
    color: #9eb3c9;
    line-height: 1.7;
    min-height: 88px;
}

.nv-service-card ul {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.nv-service-card li {
    margin: 12px 0;
    color: #d9e6f2;
}

.nv-card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(22,140,255,0.1);
    border: 1px solid rgba(22,140,255,0.28);
    color: #55b2ff !important;
    font-weight: 800;
}

.nv-card-button:hover {
    background: #168cff;
    color: #fff !important;
}

/* WHY SECTION */

.nv-why {
    padding: 90px 20px;
    background: #07111f;
}

.nv-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1180px;
    margin: 0 auto;
}

.nv-feature {
    text-align: center;
    padding: 28px 22px;
    border-radius: 18px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
}

.nv-feature > div {
    font-size: 34px;
    margin-bottom: 14px;
}

.nv-feature h4 {
    font-size: 19px;
    margin-bottom: 10px;
}

.nv-feature p {
    color: #9eb3c9;
    line-height: 1.6;
}

/* CTA */

.nv-cta {
    max-width: 1180px;
    margin: 0 auto 90px;
    padding: 44px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(22,140,255,0.16), rgba(255,122,24,0.10)),
        #0d1d33;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nv-cta span {
    color: #ff7a18;
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 12px;
}

.nv-cta h2 {
    margin: 6px 0 8px;
    font-size: 36px;
}

.nv-cta p {
    color: #9eb3c9;
    margin: 0;
}

/* MOBILE */

@media (max-width: 991px) {
    .nv-service-grid {
        grid-template-columns: 1fr;
    }

    .nv-featured-card {
        transform: none;
    }

    .nv-featured-card:hover {
        transform: translateY(-8px);
    }

    .nv-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nv-cta {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .nv-hero {
        min-height: 520px;
        padding: 70px 16px;
    }

    .nv-feature-grid {
        grid-template-columns: 1fr;
    }

    .nv-service-card {
        padding: 24px;
    }

    .nv-cta {
        margin: 0 16px 60px;
        padding: 30px 20px;
    }
}