/*
Theme Name: Server Hulk Theme
Author: Server Hulk
Version: 1.0
*/

/* =========================================================
   Brand Color Variables
   Change any value below to re-theme the entire site at once.
   ========================================================= */
:root {
    /* Unified green palette — matches logo */
    --brand-primary:        #16a34a;   /* Primary buttons, borders, active states */
    --brand-primary-rgb:    22, 163, 74;
    --brand-primary-hover:  #15803d;   /* Button hover / pressed state */
    --brand-green-light:  #4ade80;   /* Lighter green accent - text/icons on dark backgrounds, link hovers */
    --brand-green-light-rgb: 34, 197, 94;

    /* Accent — used sparingly for standout moments (badges, ribbons, highlights) */
    --accent-amber:       #f0b429;
    --accent-amber-rgb:   240, 180, 41;
    --accent-amber-dark:  #4a2e02;   /* for text on amber background */

    /* Dark backgrounds (header, footer, hero, dark sections) */
    --dark-bg:            #0b1310;
    --dark-bg-rgb:        11, 19, 16;
    --dark-bg-alt:        #0f1715;
    --dark-bg-deep:       #0d1613;
    --dark-bg-deep-rgb:   13, 22, 19;
    --border-dark:        #1e2923;
    --dropdown-hover-bg:  #16221e;

    /* Dark-themed card sections (MikroTik feature/pricing cards) */
    --card-dark-bg:       #14221d;
    --card-dark-border:   #273830;
    --card-dark-header:   #1a2c26;

    /* Light theme neutrals */
    --body-bg:            #f4f6f8;
    --white:              #ffffff;
    --border-light:       #e2e8f0;
    --border-dashed:      #f1f5f9;
    --bg-lightest:        #f8fafc;
    --green-bg-light:     #f0fdf4;
    --green-border-light: #bbf7d0;

    /* Text colors */
    --text-body:          #333;
    --text-secondary:     #334155;
    --text-body-alt:      #475569;
    --text-muted:         #94a3b8;
    --text-muted-dark:    #64748b;
    --text-muted-light:   #cbd5e1;
    --heading-dark:       #0f172a;
    --heading-darkest:    #111;
}

/* =========================================================
   Global Reset & Base Styles
   ========================================================= */
/* =========================================================
   Web Fonts
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', Arial, Helvetica, sans-serif;
    color: var(--text-body);
    background-color: var(--body-bg);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: 'Plus Jakarta Sans', Arial, Helvetica, sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

/* Base Paragraph & List text sizing across all pages */
p {
    font-size: 15px;
    line-height: 1.7;
}

li {
    font-size: 15px;
}

/* =========================================================
   Top Utility Bar
   ========================================================= */
.top-utility-bar {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 8px 40px;
    font-size: 13px;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    border-bottom: 1px solid var(--border-dark);
}

.top-utility-bar a {
    color: var(--white);
    text-decoration: none;
}

.top-utility-bar a:hover {
    color: var(--brand-green-light);
    text-decoration: underline;
}

/* =========================================================
   Header & Navigation
   ========================================================= */
header {
    background-color: var(--dark-bg-alt);
    border-bottom: 1px solid var(--border-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo-container {
    display: flex;
    align-items: center;
    height: auto;
    padding: 0;
}

header .brand-logo {
    height: 45px;
    max-height: 45px;
    width: auto;
    object-fit: contain;
    display: block;
}

nav .menu {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

nav .menu > li {
    position: relative;
}

nav .menu > li > a {
    text-decoration: none;
    color: var(--border-light);
    font-size: 13px;
    font-weight: bold;
    padding: 10px 0;
    transition: color 0.2s;
}

nav .menu > li > a:hover {
    color: var(--brand-green-light);
}

/* Dropdown Menu */
nav .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--dark-bg-alt);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    list-style: none;
    min-width: 240px;
    display: none;
    padding: 10px 0;
    border-radius: 4px;
    border: 1px solid var(--border-dark);
}

nav .menu > li:hover .dropdown {
    display: block;
}

nav .dropdown li a {
    display: block;
    padding: 8px 20px;
    color: var(--text-muted-light);
    text-decoration: none;
    font-size: 12px;
    font-weight: normal;
}

nav .dropdown li a:hover {
    background-color: var(--dropdown-hover-bg);
    color: var(--brand-green-light);
}

/* =========================================================
   Hero & Banners
   ========================================================= */
.hero {
    background-color: var(--dark-bg);
    background-image: linear-gradient(rgba(var(--dark-bg-rgb), 0.45), rgba(var(--dark-bg-rgb), 0.65)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    text-align: center;
    padding: 130px 20px;
    position: relative;
    overflow: hidden;
    
    /* Yeh naya flex layout add karein taake content properly center ho */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 34px;
    max-width: 850px;
    margin: 0 auto 15px auto;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 25px auto;
    color: var(--border-light);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.btn-detail {
    display: inline-block;
    background-color: var(--brand-primary);
    color: var(--white);
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(var(--brand-primary-rgb), 0.35);
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-detail:hover {
    background-color: var(--brand-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--brand-primary-rgb), 0.4);
}

.sub-header-banner {
    background: var(--dark-bg-alt);
    border-bottom: 2px solid var(--brand-primary);
    color: var(--white);
    padding: 40px 20px;
    text-align: left;
}

.sub-header-banner h1 {
    margin: 0;
    font-size: 26px;
}

.sub-header-banner p {
    margin: 5px 0 0 0;
    font-size: 13px;
    color: var(--text-muted);
}

/* =========================================================
   OS Switch Toggle Button Styling
   ========================================================= */
.os-switch-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 0 auto 30px auto;
}

.os-btn {
    background: var(--white);
    border: 2px solid var(--border-light);
    color: var(--text-secondary);
    padding: 10px 24px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.os-btn.active, .os-btn:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(var(--brand-primary-rgb), 0.3);
}

/* =========================================================
   Areas of Expertise
   ========================================================= */
.expertise-section {
    background-color: var(--dark-bg-deep);
    background-image: linear-gradient(rgba(var(--dark-bg-deep-rgb), 0.92), rgba(var(--dark-bg-deep-rgb), 0.92)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 70px 20px;
    color: var(--white);
    text-align: center;
}

.expertise-overlay {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(var(--dark-bg-rgb), 0.9);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-dark);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.expertise-section h2 {
    font-size: 26px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.expertise-section .subtitle {
    font-size: 13px;
    color: var(--brand-green-light);
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.expertise-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-dark);
    border-radius: 6px;
}

.expertise-item .icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.expertise-item p {
    font-size: 13px;
    font-weight: bold;
    color: var(--white);
    line-height: 1.4;
}

/* =========================================================
   PARTNERS & LOGO STYLING
   ========================================================= */
.partners-section {
    background: var(--white);
    padding: 60px 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
}

.partners-header {
    max-width: 1100px;
    margin: 0 auto 30px auto;
    padding: 0 20px;
    text-align: left;
}

.partners-header h2 {
    font-size: 22px;
    color: var(--heading-dark);
    line-height: 1.2;
}

.yellow-line {
    width: 70px;
    height: 4px;
    background-color: var(--brand-primary);
    margin-top: 8px;
}

.partners-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: scrollLogos 25s linear infinite;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-logo {
    width: 180px !important;
    height: 90px !important;
    background: var(--white) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px !important;
    margin: 0 10px !important;
}

.partner-logo img {
    max-width: 100% !important;
    max-height: 50px !important;
    object-fit: contain !important;
}
.industries-grid {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            gap: 15px;
            flex-wrap: nowrap;
            max-width: 1250px;
            margin: 0 auto;
        }
        .industry-item {
            text-align: center;
            flex: 1;
            min-width: 0;
        }
        .industry-icon-wrap {
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
        }
        .industry-icon-wrap img {
            max-height: 95px;
            max-width: 95px;
            width: auto;
            height: auto;
            display: block;
        }
        .industry-item h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            color: var(--heading-darkest);
            line-height: 1.3;
        }

/* =========================================================
   VPS Hosting Grid & Card Styles
   ========================================================= */
.vps-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 30px auto 50px auto;
}

.vps-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 32px 24px 24px 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 20px rgba(0,0,0,0.04);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.vps-card:hover {
    border-color: var(--brand-primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.06), 0 16px 32px rgba(var(--brand-primary-rgb), 0.12);
}

.featured-vps {
    border: 2px solid var(--brand-primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05), 0 16px 36px rgba(var(--brand-primary-rgb), 0.14);
}

.popular-ribbon {
    position: absolute;
    top: -12px;
    right: 15px;
    background: var(--accent-amber);
    color: var(--accent-amber-dark);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 4px 12px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(var(--accent-amber-rgb), 0.4);
}

.vps-card-header h3 {
    font-size: 21px;
    font-weight: 700;
    color: var(--heading-dark);
}

.discount-badge {
    font-size: 11px;
    color: var(--brand-primary);
    background: var(--green-bg-light);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
}

.vps-price {
    margin: 20px 0;
    color: var(--heading-dark);
}

.vps-price .currency {
    font-size: 18px;
    font-weight: bold;
    vertical-align: top;
}

.vps-price .amount {
    font-size: 38px;
    font-weight: bold;
    line-height: 1;
}

.vps-price .period {
    font-size: 12px;
    color: var(--text-muted-dark);
}

.vps-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
    font-size: 13px;
    color: var(--text-secondary);
}

.vps-specs li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-dashed);
}

.vps-renewal {
    font-size: 11px;
    color: var(--text-muted-dark);
    margin-bottom: 12px;
}

.btn-vps-order {
    display: block;
    background: var(--dark-bg-alt);
    color: var(--white);
    padding: 10px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    text-align: center;
}

.btn-vps-order:hover {
    background: var(--brand-primary);
}

.custom-quote-banner {
    background: var(--dark-bg);
    color: var(--white);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    text-align: left;
    max-width: 1100px;
    margin: 0 auto;
}

.btn-quote {
    background: var(--brand-primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
}

.btn-quote:hover {
    background: var(--brand-primary-hover);
}

/* =========================================================
   VPS Informational Sections
   ========================================================= */
.vps-content-section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.vps-content-block {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.vps-content-block h2 {
    font-size: 24px;
    color: var(--heading-dark);
    margin-bottom: 15px;
}

.vps-content-block p {
    font-size: 14px;
    color: var(--text-body-alt);
    line-height: 1.7;
}

.vps-badge {
    display: inline-block;
    background: var(--green-bg-light);
    color: var(--brand-primary);
    border: 1px solid var(--green-border-light);
    font-size: 12px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
}

/* =========================================================
   MikroTik CHR VPS Page - High Contrast & Brighter Visibility
   ========================================================= */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.mikrotik-hero {
    padding: 60px 0 50px 0;
    background: var(--dark-bg-deep);
    border-bottom: 1px solid var(--border-dark);
}

.mikrotik-hero .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.mikrotik-hero h1 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.mikrotik-hero .subtitle {
    color: var(--brand-green-light);
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.mikrotik-hero .description {
    color: var(--text-muted-light);
    font-size: 14px;
    line-height: 1.7;
}

.mikrotik-features {
    padding: 60px 0;
    background: var(--dark-bg-alt);
    border-bottom: 1px solid var(--border-dark);
}

.mikrotik-features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.mikrotik-features .feature-card {
    background: var(--card-dark-bg);
    border: 1px solid var(--card-dark-border);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.mikrotik-features .feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-green-light);
}

.mikrotik-features .feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px auto;
    background: rgba(var(--brand-green-light-rgb), 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-green-light);
}

.mikrotik-features .feature-card h3 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 12px;
}

.mikrotik-features .feature-card p {
    color: var(--text-muted-light);
    font-size: 13px;
    line-height: 1.6;
}

/* Pricing Section High Contrast Overhaul */
.mikrotik-pricing {
    padding: 70px 0;
    background: var(--dark-bg);
}

.mikrotik-pricing .section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 35px;
    color: var(--white);
}

.mikrotik-pricing .table-responsive {
    overflow-x: auto;
}

.mikrotik-pricing .pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-dark-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--card-dark-border);
}

.mikrotik-pricing .pricing-table th, 
.mikrotik-pricing .pricing-table td {
    padding: 16px 12px;
    text-align: center;
    border-bottom: 1px solid var(--card-dark-border);
    font-size: 14px;
    color: var(--bg-lightest);
}

.mikrotik-pricing .pricing-table th {
    background: var(--card-dark-header);
    color: var(--white);
    font-size: 16px;
    font-weight: bold;
}

.mikrotik-pricing .pricing-table th.feature-head {
    background: var(--card-dark-bg);
    text-align: left;
    padding-left: 20px;
    color: var(--brand-green-light);
}

.mikrotik-pricing .pricing-table td.feature-name {
    text-align: left;
    padding-left: 20px;
    font-weight: bold;
    color: var(--white);
    background: var(--card-dark-bg);
}

.mikrotik-pricing .pricing-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.03);
}

.mikrotik-pricing .price-box {
    padding: 8px 0;
}

.mikrotik-pricing .old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 13px;
    margin-right: 4px;
}

.mikrotik-pricing .current-price {
    font-size: 26px;
    font-weight: bold;
    color: var(--brand-green-light);
}

.mikrotik-pricing .period {
    font-size: 12px;
    color: var(--text-muted-light);
}

.mikrotik-pricing .btn-order {
    display: inline-block;
    background-color: var(--brand-primary);
    color: var(--white);
    font-weight: bold;
    padding: 8px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    transition: background-color 0.2s ease;
}

.mikrotik-pricing .btn-order:hover {
    background-color: var(--brand-primary-hover);
}

/* Footer */
.site-footer {
    background-color: var(--dark-bg);
    color: var(--text-muted);
    padding: 50px 40px 20px 40px;
    font-size: 13px;
    border-top: 1px solid var(--border-dark);
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 40px auto;
    text-align: left;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--brand-primary);
    padding-bottom: 6px;
    display: inline-block;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--white);
    text-decoration: underline;
}

.contact-col p {
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    font-size: 12px;
    color: var(--text-muted-dark);
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 850px) {
    .mikrotik-hero .hero-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   Product / Laptop Catalog Styles (Fixing the layout)
   ========================================================= */
.page-section {
    padding: 50px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.product-img-box {
    background: var(--bg-lightest);
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.product-img-box img {
    max-width: 100%;
    height: 140px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.product-details {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.product-tag {
    font-size: 11px;
    font-weight: bold;
    color: var(--brand-primary);
    background: var(--green-bg-light);
    padding: 3px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
    width: fit-content;
}

.product-details h3 {
    font-size: 20px;
    color: var(--heading-dark);
    margin-bottom: 15px;
}

.specs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    font-size: 13px;
    color: var(--text-secondary);
}

.specs-list li {
    padding: 7px 0;
    border-bottom: 1px dashed var(--border-dashed);
}

.price-bar {
    margin-bottom: 15px;
}

.price {
    font-size: 22px;
    font-weight: bold;
    color: var(--heading-dark);
}

.btn-buy {
    display: block;
    text-align: center;
    background: var(--brand-primary);
    color: var(--white);
    padding: 12px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 13px;
    transition: background 0.2s;
}

.btn-buy:hover {
    background: var(--brand-primary-hover);
}

/* =========================================================
   About Us / Company Profile Vertical Layout Fix
   ========================================================= */
.about-section, .company-profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.about-section img, .company-profile-container img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.page-content-wrapper, .site-main {
    min-height: 60vh; /* Screen ka bada hissa cover karega */
    padding-bottom: 50px;
}
/* =========================================================
   3D Visual Effects
   Add these classes to your existing card markup (VPS plan
   cards, MikroTik cards, feature boxes) to enable each effect.
   ========================================================= */

/* 1. Tilt-on-hover — add class="tilt-card" to any pricing/feature card */
.tilt-card {
    transition: transform 0.1s ease, box-shadow 0.2s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.tilt-card:hover {
    box-shadow: 0 12px 24px rgba(var(--dark-bg-rgb), 0.18);
}

/* 2. Flip card — wrap content in .flip-outer > .flip-inner > .flip-front + .flip-back */
.flip-outer {
    perspective: 1000px;
    cursor: pointer;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 220px;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-outer.is-flipped .flip-inner {
    transform: rotateY(180deg);
}

.flip-front, .flip-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.flip-front {
    background: var(--white);
    border: 1px solid var(--border-light);
}

.flip-back {
    background: var(--dark-bg-alt);
    color: var(--white);
    transform: rotateY(180deg);
}

/* 3. Layered depth — wrap card content, add a large faded icon absolutely positioned inside */
.depth-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.depth-card .depth-icon {
    position: absolute;
    font-size: 100px;
    opacity: 0.08;
    right: -10px;
    bottom: -16px;
    pointer-events: none;
}

.depth-card .depth-content {
    position: relative;
    z-index: 1;
}

/* 4. Rotating 3D graphic (hero/decorative use only, not for repeated cards) */
.cube-3d-wrap {
    perspective: 500px;
}

.cube-3d {
    position: relative;
    transform-style: preserve-3d;
    animation: cube-spin 8s linear infinite;
}

.cube-3d .cube-face {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-primary);
    color: var(--white);
    border: 1px solid var(--brand-primary-hover);
    font-size: 11px;
    text-align: center;
    padding: 4px;
}

@keyframes cube-spin {
    from { transform: rotateX(-15deg) rotateY(0deg); }
    to   { transform: rotateX(-15deg) rotateY(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .tilt-card, .flip-inner, .cube-3d {
        transition: none;
        animation: none;
    }
}

/* =========================================================
   Rotating Circular Badge (SVG textPath, spinning)
   ========================================================= */
.rotating-badge-svg {
    animation: badge-spin 14s linear infinite;
    transform-origin: 60px 60px;
}

.rotating-badge-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-amber);
    color: var(--accent-amber-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(var(--accent-amber-rgb), 0.4);
}

@keyframes badge-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* =========================================================
   Infinite Logo/Tech Marquee
   ========================================================= */
.tech-marquee-section {
    background: var(--dark-bg-alt);
    padding: 30px 0;
    overflow: hidden;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.tech-marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 25s linear infinite;
    gap: 60px;
}

.tech-marquee-track span {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-muted-light);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-marquee-track span:hover {
    color: var(--brand-green-light);
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* =========================================================
   Animated Stat Counters
   ========================================================= */
.stats-section {
    background: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item .stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--brand-primary);
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 14px;
    color: var(--text-muted-dark);
    margin-top: 8px;
}

@media (prefers-reduced-motion: reduce) {
    .rotating-badge-svg, .tech-marquee-track {
        animation: none;
    }
}

/* =========================================================
   Trust Badge Row
   ========================================================= */
.trust-badge-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin: 24px 0 36px;
}

.trust-badge {
    background: var(--green-bg-light);
    color: var(--brand-primary);
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--green-border-light);
}

/* =========================================================
   FAQ Accordion
   ========================================================= */
.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--heading-dark);
    padding: 18px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-toggle {
    font-size: 18px;
    color: var(--brand-primary);
    transition: transform 0.25s ease;
}

.faq-item.is-open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-muted-dark);
    padding-bottom: 18px;
}

.faq-item.is-open .faq-answer {
    max-height: 200px;
}

/* =========================================================
   Animated Network Diagram
   ========================================================= */
.net-pulse {
    animation: net-pulse-anim 2s ease-in-out infinite;
}

.net-pulse-delay-1 { animation-delay: 0.3s; }
.net-pulse-delay-2 { animation-delay: 0.6s; }
.net-pulse-delay-3 { animation-delay: 0.9s; }

@keyframes net-pulse-anim {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .net-pulse {
        animation: none;
    }
}

/* =========================================================
   3D Isometric Server Rack Visual
   ========================================================= */
.server-rack-3d-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
    perspective: 800px;
}

.server-rack-unit {
    width: 260px;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--card-dark-header), var(--card-dark-bg));
    border: 1px solid var(--card-dark-border);
    border-radius: 8px;
    color: var(--text-muted-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    transform: rotateX(8deg) rotateY(-10deg);
    box-shadow: 6px 10px 20px rgba(0,0,0,0.35);
    animation: rack-float 4s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rack-led {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-green-light);
    box-shadow: 0 0 8px var(--brand-green-light);
    flex-shrink: 0;
    animation: rack-led-blink 2s ease-in-out infinite;
}

.unit-1 { animation-delay: 0s; }
.unit-2 { animation-delay: 0.3s; }
.unit-3 { animation-delay: 0.6s; }
.unit-4 { animation-delay: 0.9s; }

@keyframes rack-float {
    0%, 100% { transform: rotateX(8deg) rotateY(-10deg) translateY(0); }
    50% { transform: rotateX(8deg) rotateY(-10deg) translateY(-6px); }
}

@keyframes rack-led-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@media (prefers-reduced-motion: reduce) {
    .server-rack-unit, .rack-led {
        animation: none;
    }
}

/* =========================================================
   How It Works — 3D Step Cards
   ========================================================= */
.how-it-works-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.how-step {
    flex: 1;
    min-width: 220px;
    max-width: 260px;
    padding: 20px;
}

.how-step-number {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--brand-primary), var(--brand-primary-hover));
    color: var(--white);
    font-size: 26px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(var(--brand-primary-rgb), 0.35), inset 0 2px 4px rgba(255,255,255,0.3);
    transform: perspective(300px) rotateX(10deg);
    transition: transform 0.3s ease;
}

.how-step:hover .how-step-number {
    transform: perspective(300px) rotateX(0deg) scale(1.08);
}

.how-step-connector {
    width: 60px;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--brand-primary) 0, var(--brand-primary) 6px, transparent 6px, transparent 12px);
    margin-top: 32px;
    align-self: flex-start;
}

@media (max-width: 700px) {
    .how-step-connector {
        display: none;
    }
}

/* =========================================================
   Security Badges & Data Center Facts
   ========================================================= */
.security-badge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.security-badge {
    background: var(--card-dark-bg);
    border: 1px solid var(--card-dark-border);
    border-radius: 10px;
    padding: 20px 10px;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.security-badge:hover {
    transform: translateY(-4px);
    border-color: var(--brand-green-light);
}

.security-badge-icon {
    font-size: 26px;
    display: block;
    margin-bottom: 8px;
}

.security-badge p {
    font-size: 12px;
    color: var(--text-muted-light);
    font-weight: 700;
    margin: 0;
}

.datacenter-facts-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    border-top: 1px solid var(--border-dark);
    padding-top: 30px;
}

.datacenter-fact {
    text-align: center;
}

.datacenter-fact-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.datacenter-fact-value {
    display: block;
    font-size: 15px;
    color: var(--brand-green-light);
    font-weight: 700;
}

/* =========================================================
   Comparison Table
   ========================================================= */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.compare-table th, .compare-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.compare-table th {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-muted-dark);
    letter-spacing: 0.03em;
}

.compare-col-us {
    background: var(--green-bg-light);
    color: var(--brand-primary);
    font-weight: 700;
    border-radius: 6px;
}

/* =========================================================
   Bandwidth & Network Specs
   ========================================================= */
.network-spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.network-spec-card {
    background: var(--body-bg);
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
}

.network-spec-icon {
    font-size: 30px;
    display: block;
}

.network-gauge {
    position: relative;
    width: 100px;
    height: 60px;
    margin: 0 auto;
}

.network-gauge-svg {
    width: 100%;
    height: 100%;
}

.network-gauge-fill {
    stroke-dasharray: 126;
    stroke-dashoffset: 0;
    animation: gauge-fill-in 1.5s ease-out;
}

@keyframes gauge-fill-in {
    from { stroke-dashoffset: 126; }
    to { stroke-dashoffset: 0; }
}

.network-gauge-label {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15px;
    font-weight: 800;
    color: var(--brand-primary);
}

@media (prefers-reduced-motion: reduce) {
    .network-gauge-fill {
        animation: none;
    }
}

/* =========================================================
   Hero Parallax Orbs & Depth Layers
   ========================================================= */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
    transition: transform 0.15s ease-out;
    animation: orb-drift 8s ease-in-out infinite;
}

.hero-orb-1 {
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(var(--brand-green-light-rgb), 0.25), transparent 70%);
    top: 15%;
    left: 8%;
}

.hero-orb-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(var(--brand-primary-rgb), 0.2), transparent 70%);
    bottom: 10%;
    right: 10%;
    animation-delay: 1.5s;
}

.hero-orb-3 {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(var(--brand-green-light-rgb), 0.3), transparent 70%);
    top: 55%;
    left: 45%;
    animation-delay: 3s;
}

@keyframes orb-drift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -14px); }
}

/* ============================================
   AURORA MESH GRADIENT BACKGROUND (Hero)
   Large, slow-drifting blurred color blobs sitting
   behind the hero content, blended with the dark bg.
   ============================================ */
.aurora-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    mix-blend-mode: soft-light;
    opacity: 0.9;
    will-change: transform;
}

.aurora-blob-1 {
    width: 520px;
    height: 520px;
    top: -160px;
    left: -120px;
    background: radial-gradient(circle, rgba(var(--brand-green-light-rgb), 0.9), transparent 65%);
    animation: aurora-drift-a 18s ease-in-out infinite;
}

.aurora-blob-2 {
    width: 460px;
    height: 460px;
    top: -80px;
    right: -140px;
    background: radial-gradient(circle, rgba(240, 180, 41, 0.75), transparent 65%);
    animation: aurora-drift-b 22s ease-in-out infinite;
    animation-delay: 2s;
}

.aurora-blob-3 {
    width: 400px;
    height: 400px;
    bottom: -180px;
    left: 20%;
    background: radial-gradient(circle, rgba(var(--brand-primary-rgb), 0.8), transparent 65%);
    animation: aurora-drift-c 20s ease-in-out infinite;
    animation-delay: 4s;
}

.aurora-blob-4 {
    width: 340px;
    height: 340px;
    top: 30%;
    right: 15%;
    background: radial-gradient(circle, rgba(var(--brand-green-light-rgb), 0.65), transparent 65%);
    animation: aurora-drift-a 16s ease-in-out infinite reverse;
    animation-delay: 1s;
}

@keyframes aurora-drift-a {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, 40px) scale(1.12); }
}

@keyframes aurora-drift-b {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 60px) scale(1.08); }
}

@keyframes aurora-drift-c {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -50px) scale(1.15); }
}

.hero > *:not(.aurora-mesh):not(.hero-orb):not(.cursor-glow) {
    position: relative;
    z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
    .aurora-blob {
        animation: none;
    }
}

.hero h1, .hero-3d-row {
    transition: transform 0.15s ease-out;
}

@media (prefers-reduced-motion: reduce) {
    .hero-orb {
        animation: none;
    }
    .hero-3d-row, .hero-orb, .hero h1 {
        transition: none;
    }
}

/* =========================================================
   Client Login Button (header)
   ========================================================= */
.btn-client-login {
    position: static;
    flex-shrink: 0;
    white-space: nowrap;
    margin-left: 20px;
    background: var(--brand-primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.2s;
}

.btn-client-login:hover {
    background: var(--brand-primary-hover);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    header {
        flex-wrap: wrap;
    }
    .btn-client-login {
        margin-left: 0;
        margin-top: 10px;
    }
}

/* =========================================================
   Scroll-Reveal Animation
   ========================================================= */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Directional slide-in variants — combine with class="reveal" */
.reveal.slide-left {
    transform: translateX(-70px);
}
.reveal.slide-left.is-visible {
    transform: translateX(0);
}

.reveal.slide-right {
    transform: translateX(70px);
}
.reveal.slide-right.is-visible {
    transform: translateX(0);
}

@media (max-width: 768px) {
    .reveal.slide-left,
    .reveal.slide-right {
        transform: translateY(28px);
    }
    .reveal.slide-left.is-visible,
    .reveal.slide-right.is-visible {
        transform: translateY(0);
    }
}

/* Staggered cascade for grouped items */
.expertise-grid .reveal:nth-child(1),
.security-badge-grid .reveal:nth-child(1),
.how-it-works-row .reveal:nth-child(1),
.stats-grid .reveal:nth-child(1) { transition-delay: 0s; }

.expertise-grid .reveal:nth-child(2),
.security-badge-grid .reveal:nth-child(2),
.stats-grid .reveal:nth-child(2) { transition-delay: 0.1s; }

.expertise-grid .reveal:nth-child(3),
.security-badge-grid .reveal:nth-child(3),
.how-it-works-row .reveal:nth-child(3),
.stats-grid .reveal:nth-child(3) { transition-delay: 0.2s; }

.expertise-grid .reveal:nth-child(4),
.security-badge-grid .reveal:nth-child(4),
.stats-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

.expertise-grid .reveal:nth-child(5) { transition-delay: 0.4s; }
.expertise-grid .reveal:nth-child(6) { transition-delay: 0.5s; }

.faq-item.reveal:nth-child(1) { transition-delay: 0s; }
.faq-item.reveal:nth-child(2) { transition-delay: 0.08s; }
.faq-item.reveal:nth-child(3) { transition-delay: 0.16s; }
.faq-item.reveal:nth-child(4) { transition-delay: 0.24s; }
.faq-item.reveal:nth-child(5) { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* =========================================================
   Interesting Animations Set
   ========================================================= */

/* 1. Magnetic buttons — JS applies transform, this just smooths it */
.btn-detail, .btn-vps-order {
    transition: transform 0.15s ease-out, background-color 0.2s, box-shadow 0.2s;
}

/* 2. Sliding nav underline */
nav {
    position: relative;
}

.nav-indicator {
    position: absolute;
    bottom: 6px;
    height: 2px;
    background: var(--brand-green-light);
    border-radius: 2px;
    transition: left 0.3s ease, width 0.3s ease, opacity 0.2s ease;
    opacity: 0;
    pointer-events: none;
}

.nav-indicator.is-active {
    opacity: 1;
}

/* 3. Rotating hero text */
.hero-rotator {
    display: inline-block;
    color: var(--brand-green-light);
    font-weight: 700;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-rotator.is-fading {
    opacity: 0;
    transform: translateY(6px);
}

/* 4. Animated glow border on featured plan */
.featured-vps {
    animation: featured-glow 4s ease-in-out infinite;
}

@keyframes featured-glow {
    0%, 100% {
        border-color: var(--brand-primary);
        box-shadow: 0 4px 10px rgba(0,0,0,0.05), 0 16px 36px rgba(var(--brand-primary-rgb), 0.14);
    }
    50% {
        border-color: var(--accent-amber);
        box-shadow: 0 4px 10px rgba(0,0,0,0.05), 0 16px 36px rgba(var(--accent-amber-rgb), 0.25);
    }
}

/* 5. Cursor glow trail (hero only) */
.cursor-glow {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--brand-green-light-rgb), 0.18), transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.cursor-glow.is-active {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .featured-vps {
        animation: none;
    }
    .nav-indicator, .hero-rotator, .cursor-glow {
        transition: none;
    }
}

/* ============================================
   LIVE INFRASTRUCTURE VISUAL SECTION
   ============================================ */
.live-console-section {
    background: var(--dark-bg-deep);
    padding: 90px 20px;
    overflow: hidden;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.live-console-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 900px) {
    .live-console-inner {
        grid-template-columns: 1fr;
    }
}

.live-console-tag {
    display: inline-block;
    color: var(--brand-green-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.live-console-copy h2 {
    color: var(--white);
    font-size: 2.1rem;
    margin: 0 0 16px;
    line-height: 1.25;
}

.live-console-copy p {
    color: var(--text-muted-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 440px;
}

.live-console-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Fake terminal */
.fake-terminal {
    background: #0a1310;
    border: 1px solid var(--card-dark-border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.fake-terminal-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--card-dark-header);
    border-bottom: 1px solid var(--card-dark-border);
}

.fake-terminal-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}
.dot-red { background: #ff5f57; }
.dot-amber { background: #febc2e; }
.dot-green { background: #28c840; }

.fake-terminal-title {
    margin-left: 8px;
    color: var(--text-muted);
    font-size: 12px;
    font-family: 'Courier New', monospace;
}

.fake-terminal-body {
    padding: 22px 18px;
    min-height: 90px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--brand-green-light);
}

.terminal-line {
    display: inline;
    white-space: pre-wrap;
    word-break: break-word;
}

.terminal-cursor {
    display: inline-block;
    color: var(--brand-green-light);
    animation: term-blink 1s steps(1) infinite;
    margin-left: 2px;
}

@keyframes term-blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

/* Network diagram */
.network-diagram {
    background: var(--card-dark-bg);
    border: 1px solid var(--card-dark-border);
    border-radius: 10px;
    padding: 14px 16px 10px;
}

.net-path {
    stroke: var(--border-dark);
    stroke-width: 2;
}

.net-node {
    fill: var(--dark-bg);
    stroke: var(--brand-green-light);
    stroke-width: 2;
}

.net-pulse {
    fill: var(--brand-green-light);
    filter: drop-shadow(0 0 4px rgba(var(--brand-green-light-rgb), 0.9));
}

.network-caption {
    text-align: center;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Uptime ring */
.uptime-ring-wrap {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.uptime-ring-track {
    fill: none;
    stroke: var(--border-dark);
    stroke-width: 8;
}

.uptime-ring-fill {
    fill: none;
    stroke: var(--brand-green-light);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset 1.4s ease;
}

.uptime-ring-wrap.is-visible .uptime-ring-fill {
    stroke-dashoffset: 3; /* ~99.9% of 314 */
}

.uptime-ring-label {
    position: absolute;
    text-align: center;
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

.uptime-ring-label span {
    display: block;
    font-size: 9px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

@media (max-width: 900px) {
    .uptime-ring-wrap {
        position: static;
        margin-top: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .terminal-cursor {
        animation: none;
    }
    .net-pulse animateMotion {
        display: none;
    }
}
/* Hero Text Animations */
@keyframes slideDownFromTop {
    0% {
        opacity: 0;
        transform: translateY(-40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUpFromBottom {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Classes to apply on elements */
.hero-title-anim {
    display: block;
    opacity: 0;
    animation: slideDownFromTop 0.9s ease-out forwards;
}

.hero-desc-anim {
    opacity: 0;
    animation: slideUpFromBottom 0.9s ease-out 0.25s forwards;
}

@media (prefers-reduced-motion: reduce) {
    .hero-title-anim, .hero-desc-anim {
        animation: none;
        opacity: 1;
        transform: none;
    }
}
.datacenter-matrix-section {
    background-color: #0b0f19;
    padding: 60px 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.matrix-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.matrix-title {
    color: #ffffff; 
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 1px;
    font-family: sans-serif;
}

.canvas-wrapper {
    width: 100%;
    height: 450px; 
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.canvas-wrapper canvas {
    width: 100% !important;
    height: 100% !important;
}