a { text-decoration: none; }

/* ==========================================================================
00. DESIGN TOKENS – BORDER RADIUS
========================================================================== */
:root {
  --radius-xs:   0.25rem;   /*  4px  – tiny accents, indicators */
  --radius-sm:   0.5rem;    /*  8px  – default for cards, buttons, inputs */
  --radius-md:   0.75rem;   /* 12px  – slightly softer cards / plan boxes */
  --radius-lg:   1rem;      /* 16px  – larger containers, modals */
  --radius-xl:   1.5rem;    /* 24px  – hero / special sections */
  --radius-full: 9999px;    /* pills / fully rounded */
}

/* ==========================================================================
01. TITLE BAR -------------------------------------------------------------------
========================================================================== */
.wit-section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.wit-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.07);
}

/* ==========================================================================
02. TEXT STYLES (TITLES, SUBTITLES & UTILITIES)
========================================================================== */
.wit-title {
    font-family: 'Roboto', sans-serif !important;
    font-style: normal !important;
    font-weight: 800 !important;
    /*font-size: 60px !important;*/
    font-size: clamp(28px, 7vw, 60px) !important;
    text-transform: uppercase !important;
    line-height: 1.1 !important;
    color: #ffffff !important;
    margin: 0;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    letter-spacing: -0.02em !important;
}
.wit-title em {
    font-style: normal !important;
}
.wit-subtitle {
    display: block !important;
    letter-spacing: 2px !important;
    margin-bottom: 5px !important;
    text-transform: uppercase !important;
}
.wit-subtitle-overlay {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important; 
    width: 100% !important; 
    z-index: 10 !important; 
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%) !important;
    backdrop-filter: blur(0px); 
    padding: 10px 40px !important;
    text-align: left;
    /*border-bottom-left-radius: var(--radius-xl) !important;
    border-bottom-right-radius: var(--radius-xl) !important;*/
}
.wit-twelve {
    font-style: normal !important;
    font-weight: 800 !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    line-height: 1.1 !important;
    margin: 0;
}
.wit-fourteen {
    font-style: normal !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    line-height: 1.1 !important;
    margin: 0;
}
.wit-eighteen {
    font-style: normal !important;
    font-weight: 800 !important;
    font-size: 18px !important;
    text-transform: uppercase !important;
    line-height: 1.1 !important;
    margin: 0;
}
.wit-twenty {
    font-family: 'Roboto', sans-serif !important;
    font-style: normal !important;
    font-weight: 800 !important;
    font-size: 20px !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    line-height: 1.1 !important;
    margin: 0;
}
.wit-thirty {
    font-family: 'Roboto', sans-serif !important;
    font-style: normal !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    font-size: 30px !important;
    text-transform: uppercase !important;
    line-height: 1.1 !important;
    margin: 0;
}
.wit-thirtysix {
    font-style: normal !important;
    font-weight: 800 !important;
    font-size: 36px !important;
    text-transform: uppercase !important;
    line-height: 1.1 !important;
    margin: 0;
}
.flat-twelve {
    font-style: normal !important;
    font-size: 12px !important;
    color: #ffffff !important;
    letter-spacing: 2px !important;
}
.flat-fourteen {
    font-size: 14px !important;    
}
.flat-eighteen {
    font-style: normal !important;
    font-size: 18px !important;
    letter-spacing: 2px !important;
}
.flat-twenty {
    font-style: normal !important;
    font-size: 20px !important;
}
.flat-thirty {
    font-style: normal !important;
    font-size: 30px !important;
}
.flat-thirtysix {
    font-style: normal !important;
    font-size: 36px !important;
}
.flat-sixtyeight {
    font-style: normal !important;
    font-size: 68px !important;
}
.bigsky {
    font-style: normal !important;
    font-size: 30px !important;
    font-weight: 800 !important;
}
.bigsky18 {
    font-style: normal !important;
    font-size: 18px !important;
}
/* --- RESPONSIVE TEXT --- */
.fluid-thirty {
    font-size: clamp(20px, 4.5vw, 30px) !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
}
/* --- UNIVERSAL TEXT CLASS EME --- */
.bold600 {font-weight: 600;}
.bold800 {font-weight: 800;}
.caps {text-transform: uppercase;}
.shadow-text {text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);}

/* --- UNIVERSAL FONT SIZES --- */
.sixty-eight { font-size: clamp(38px, 5vw, 68px) !important; }
.sixty { font-size: 60px !important; }
.forty-two   { font-size: 42px !important; }
.thirty-six  { font-size: 36px !important; }
.thirty-two  { font-size: 32px !important; }
.thirty { font-size: 30px !important; }
.twenty-four { font-size: 24px !important; }
.twenty { font-size: 20px !important; }
.eighteen    { font-size: 18px !important; }
.fifteen     { font-size: 15px !important; }
.fourteen    { font-size: 14px !important; }
.thirteen    { font-size: 13px !important; }
.twelve      { font-size: 12px !important; }
.eleven      { font-size: 11px !important; }
.ten         { font-size: 10px !important; }
.eight         { font-size: 8px !important; }

/* ==========================================================================
03. UNIVERSAL COLOR SYSTEM (TEXT / THEMESE EME)
========================================================================== */
.white { color: #ffffff !important; }
.lime  { color: greenyellow !important; }
.gray  { color: #9ca3af !important; }
.muted { color: rgba(255, 255, 255, 0.6) !important; }
.blue { color: dodgerblue !important; }
.orange {color: #FF991C !important;}
.bluetooth { color: #60a5fa !important;}
/*.green { color: #34d399; }*/
.border-lime {border-color:  greenyellow !important; }

/* ==========================================================================
04. UNIVERSAL BACKGROUND (SOLID LIQUID GAS / GLASS & WARP GRADIENTS)
========================================================================== */
/* DEEP SPACE */
.bg-dark      { background-color: #03070f !important; }
.bg-dark-upak { background-color: rgba(102, 102, 102, 0.3) !important; }
/* PURE BLACK */
.bg-black     { background-color: #000000 !important; }
/* LIGHT GRAY */
.bg-deep-gray { background-color: #0B0E14 !important; }
/* LIME JUICE */
.bg-lime { background-color: greenyellow !important; }
.bg-lime-upak { background-color: rgba(163, 230, 53, 0.3) !important; }
/* TAGAYAN GLASS EFFECT */
.bg-glass     { 
    background: rgba(0, 0, 0, 0.6) !important; 
    backdrop-filter: blur(10px); 
    border: 1px solid rgba(255, 255, 255, 0.1);
}
/* BLUE GRADIENT */
.blue-warp {
    font-family: 'DM Sans', sans-serif;
    background-color: #030712;
    background-image: 
      linear-gradient(to bottom, #030712 0%, rgba(3,7,18,0.88) 25%, rgba(3,7,18,0.88) 75%, #030712 100%),
      radial-gradient(ellipse at 60% 40%, rgba(29,86,238,0.12) 0%, transparent 60%),
      radial-gradient(ellipse at 20% 70%, rgba(101,188,97,0.06) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}
/* LIME GRADIENT */
.lime-warp {
    background-color: #030712;
    background-image: 
    linear-gradient(to bottom, #030712 0%, rgba(3,7,18,0.88) 25%, rgba(3,7,18,0.88) 75%, #030712 100%),
    radial-gradient(ellipse at 65% 35%, rgba(163, 230, 53, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 25% 65%, rgba(52, 211, 153, 0.661) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

/* ==========================================================================
05. UNIVERSAL SPACING & BOX (PADDING, MARGIN & HEIGHT)
========================================================================== */
.pad10 { padding: 10px !important; }
.pad20 { padding: 20px !important; }

.pt5 { padding-top: 5px !important; }
.pt10 { padding-top: 10px !important; }
.pt20 { padding-top: 20px !important; }
.pt40 { padding-top: 40px !important; }
.pt60 { padding-top: 60px !important; }
.pt80 { padding-top: 80px !important; }
.pt100 { padding-top: 100px !important; }
.pt120 { padding-top: 120px !important; }

/* --- PADDING (BOTTOM) --- */
.pb5 { padding-bottom: 5px !important; }
.pb10 { padding-bottom: 10px !important; }
.pb20 { padding-bottom: 20px !important; }
.pb30 { padding-bottom: 30px !important; }
.pb40 { padding-bottom: 40px !important; }
.pb60 { padding-bottom: 60px !important; }
.pb80 { padding-bottom: 80px !important; }

/* --- MARGIN (BOTTOM) --- */
.mb10 { margin-bottom: 10px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb25 { margin-bottom: 25px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb60 { margin-bottom: 60px !important; }
.mb80 { margin-bottom: 80px !important; }
@media (max-width: 768px) {
    .mb80 {
        margin-bottom: 1px;
    }
}

/* --- UNIVERSAL HEIGHTS --- */
.mh100vh { min-height: 100vh !important; } /*100%*/
.mh50vh { min-height: 50vh !important; } /* 50% height  */
.mh75vh { min-height: 75vh !important; } /* 75% screen height */
.mh88vh { min-height: 88vh !important; }
.mh-auto { min-height: auto !important; } /* AUTOHEIGHT */

/*UNIVERSAL DIVIDERS*/
.bs-divider { border: none; border-top: 1px solid #a3e635; margin: 24px 0; }
.bs-divider-gray {
    display: flex !important;
    justify-content: space-between !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11) !important;
    padding-bottom: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}
.bs-vertical-divider {
    background-color: #a3e635; 
    width: 2px;
    height: 88px;
    display: block;
    margin: auto 0;
}

/* ==========================================================================
06. COMPONENT STYLE: HERO EME / CARDS
========================================================================== */
.kilay {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 15px; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: #a3e635;
    margin-bottom: 20px;
}
.kilay-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #a3e635;
    box-shadow: 0 0 8px rgba(163,230,53,0.8);
    animation: heroBlink 2s infinite;
}
@keyframes heroBlink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.vert-line {
    position: relative;
    padding-left: 20px;
    max-width: 100%;
}
.vert-line::before {
    content: '';
    position: absolute;
    left: 0; top: 2px; bottom: 2px;
    width: 2px; border-radius: var(--radius-xs);
    background: #a3e635;
    box-shadow: 0 0 12px rgba(163,230,53,0.6);
}
.fly-video {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: #000;
    aspect-ratio: 16/9;
    box-shadow: 0 32px 80px rgba(0,0,0,0.6);
    transition: border-color 0.4s;
}
.fly-video video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --- GRID CARDS --- */
.cardo { display: flex; flex-direction: column; gap: 14px; }
.card {
    position: relative; 
    display: flex !important;
    flex-direction: row !important; 
    align-items: flex-start !important; 
    gap: 20px; 
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), 
                background 0.3s ease, 
                border-color 0.3s ease;
}
.card:hover { 
    transform: translateX(15px); 
    background: rgba(255,255,255,0.06); 
    border-color: rgba(255,255,255,0.2); 
}
.card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4%; 
    width: 4px;
    height: 90%; 
    background-color: transparent;
    transition: all 0.3s ease;
    z-index: 2;
    border-radius: var(--radius-sm);
    opacity: 0;
    transform: scaleY(0);
}
.card:hover::before {
    opacity: 1;
    transform: scaleY(1);
}
/* --- GRID CARDS HOVER INDICATOR--- */
.card.blue:hover::before { background-color: dodgerblue; }
.card.orange:hover::before { background-color: #FF991C; }
.card.lime:hover::before { background-color: #cddc39; }
.card.blue::before { background: dodgerblue }
.card.orange::before { background: #FF991C; }
.card.lime::before { background: greenyellow; }

.card-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0; 
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-icon img { width: 50px; height: 50px; object-fit: contain; opacity: 0.7; }
.card:hover .hero-card-icon img { opacity: 1; }

.glass-panel {
    background: rgba(11, 14, 20, 0.85);
    backdrop-filter: blur(12px);
    border: 1.25px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}


/*FOR REMOVAL??????*=================================/
.about-card {
    position: relative; 
    display: flex !important;
    flex-direction: row !important; 
    align-items: flex-start !important; 
    gap: 20px; 
    padding: 24px;
    background: rgba(0, 0, 0, 0.33);
    border: 1px solid rgba(255, 255, 255, 0.144);
    border-radius: var(--radius-md);
    transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), 
                background 0.3s ease, 
                border-color 0.3s ease;
}
.about-card:hover { 
    transform: translateX(15px); 
    background: rgba(255,255,255,0.06); 
    border-color: rgba(255,255,255,0.2); 
}
.about-card:before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.about-card:hover::before { opacity: 1; }
/*FOR REMOVAL??????=====================================*/





/* --- GET STARTED CTA BUTTON--- */
.btn-wit-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #a3e635;
    color: #03070f !important;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-wit-cta:hover {
    background: #bef264;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(163,230,53,0.3);
}

/* ==========================================================================
07. MARS ATTACK STYLE: SLIDER SECTION
========================================================================== */
.mars-wrap {
    background: #03070f;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.mars-slider-wrap {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    height: 666px; 
    background: #0b0d11;
}
.mars-slides {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}
.mars-slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
}
.mars-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom; 
}
/* --- MARS DOTS - CONTROLLERS --- */
.mars-dots {
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 100 !important; 
}
.mars-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}
.mars-dot.active {
    background: greenyellow; 
    height: 20px;
    border-radius: var(--radius-xs);
}
/* --- SCROLLER ARROW NAV --- */
.mars-nav {
    position: absolute !important;
    bottom: 20px !important;
    right: 20px !important;
    display: flex;
    gap: 10px;
    z-index: 100 !important; 
}
.mars-nav-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5); 
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(8px);
    transition: all 0.2s;
}
.mars-nav-btn:hover { background: rgba(255,255,255,0.2);
}
/* --- BENTO CARDS ---*/
.mars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.mars-card {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    height: 200px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}
.mars-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.mars-card:hover {
    border-color: #ffffff;
    transform: translateY(-5px);
}
.mars-card:hover img { transform: scale(1.1); 
}
.mars-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3,7,15,0.9) 0%, rgba(3,7,15,0.2) 60%, transparent 100%);
    z-index: 1;
}
.mars-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 2;
}

/* ==========================================================================
08. BIGSKY SECTION STYLE:  CONNECTIVITY INTERFACE
========================================================================== */
.bs-card {
    position: relative;
    /*background: rgba(255, 255, 255, 0.03);*/
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 36px 40px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 0 1px rgba(29,86,238,0.08), 0 32px 80px rgba(0,0,0,0.6);
    transition: transform 0.3s ease, border-color 0.4s;
    z-index: 2;
}
.bs-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-md);
    padding: 1px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.4s;
}
.bs-card:hover::before { opacity: 1; }
.bs-card:hover { transform: translateY(-15px); }
.bs-logo { height: 44px; width: auto; display: block; margin-bottom: 28px; }

/* ----- STATS GRID ----- */
.bs-box { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.bs-mbps {
    padding: 16px 18px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    transition: all 0.3s ease;
}
.bs-mbps:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.2); }

/* ----- PRICING & BUTTON ----- */
.bs-pricing-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.bs-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: #1d56ee;
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 24px rgba(29,86,238,0.35);
}
.bs-cta:hover { background: #2563eb; transform: translateY(-2px); box-shadow: 0 6px 32px rgba(29,86,238,0.5); }

/* ----- BIGSKY CONTEXT LAYOUT----- */
.bs-headline em { color: #1d56ee; font-style: normal; }
.bs-body { color: #9ca3af; font-size: 16px; line-height: 1.7; margin-bottom: 1.5rem; }
.bs-body strong { color: #fff; font-weight: 600; }
.bs-body-small { color: #6b7280; font-size: 14px; line-height: 1.6; opacity: 0.8; }
/* -----FEATURE TAGS ----- */
.bs-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.07); }
.bs-feature {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-xs);
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
}
.bs-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.bs-dot.blue { background: dodgerblue; box-shadow: 0 0 10px rgba(59,130,246,0.5); }
.bs-dot.lime { background: greenyellow; box-shadow: 0 0 10px rgba(163,230,53,0.5); }
.bs-dot.orange { background: #ff991c; box-shadow: 0 0 10px rgba(255, 153, 28, 0.5); }
.bs-dot.pulse { animation: bs-pulse 2s infinite; }
@keyframes bs-pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.2); } }
.bs-feat-text { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #9ca3af; }

/* ==========================================================================
09. "WHAT WE DO" SECTION STYLE:  LUMPIA WRAPPER
========================================================================== */
.wd-wrap {
    background: #000;
    padding: 100px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
/* ----- 3-COLUMN GRID ----- */
.wd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 2.2fr; /* Card 1, Card 2, and Wide Card 3 */
    gap: 16px;
    align-items: stretch;
}
.wd-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.08);
    background: #0b0e14;
    min-height: 560px;
    transition: border-color 0.4s ease;
}
.wd-card:hover { border-color: rgba(255,255,255,0.2); }
.wd-card img, .smartvideo {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}
.wd-card:hover img { transform: scale(1.05); }
/* ----- CARD TEXT LAYOUT----- */
.wd-card-body-top { position: absolute; top: 0; left: 0; right: 0; padding: 32px; z-index: 2; }
.wd-card-body-bottom { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px; z-index: 2; }
.wd-badge {
    display: inline-block;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.15);
    color: #ffffff;
    padding: 4px 12px; border-radius: var(--radius-full);
    margin-bottom: 16px;
    background: rgba(255,255,255,0.05);
}
/* ----- STATS & LATENCY CARD ----- */
/* ----- STATS & LATENCY CARD ----- */
/* ----- STATS & LATENCY CARD ----- */
/* ----- STATS & LATENCY CARD ----- */
.wd-stats-row { display: flex; justify-content: space-between; margin: 24px 0; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.wd-stat-num { font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 800; color: #60a5fa; line-height: 1; }
.wd-stat-unit { font-size: 12px; color: #3b82f6; }
.wd-stat-label { font-size: 9px; font-weight: 700; color: #4b5563; text-transform: uppercase; margin-top: 6px; }
.wd-latency-item { position: relative; padding-left: 14px; margin-bottom: 16px; }
.wd-latency-item::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; border-radius: var(--radius-xs); }
.wd-latency-item.lime::before { background: #a3e635; box-shadow: 0 0 10px rgba(163,230,53,0.4); }
.wd-latency-item.blue::before { background: #3b82f6; box-shadow: 0 0 10px rgba(59,130,246,0.4); }
.wd-latency-val { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; }
.wd-latency-item.lime .wd-latency-val { color: #a3e635; }
.wd-latency-item.blue .wd-latency-val { color: #60a5fa; }
.wd-latency-lbl { font-size: 9px; font-weight: 700; color: #4b5563; text-transform: uppercase; }
/* ----- STATS & LATENCY CARD ----- */
/* ----- STATS & LATENCY CARD ----- */
/* ----- STATS & LATENCY CARD ----- */
/* ----- STATS & LATENCY CARD ----- */
/* ----- STATS & LATENCY CARD ----- */
/* ----- ALSO DO CARD WIDE ----- */
/* ----- ALSO DO CARD WIDE ----- */
.wd-main-title { font-family: 'Syne', sans-serif; font-size: 42px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 8px; }
.wd-main-title em { color: #bef264; font-style: normal; }
.wd-accent-bar { width: 40px; height: 3px; background: #bef264; margin: 20px 0 30px; }
.wd-services { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 40px; }
.wd-service-item { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.wd-service-chevron { width: 14px; height: 14px; color: #4d7c0f; }
.wd-service-name { font-size: 11px; font-weight: 700; color: #d1d5db; text-transform: uppercase; letter-spacing: 0.05em; }
/* ----- ALSO DO CARD WIDE ----- */
/* ----- ALSO DO CARD WIDE ----- */
/* ----- ALSO DO CARD WIDE ----- */
/* ----- ALSO DO CARD WIDE ----- */







/*----- SMARTVID  -----*/
.smartvideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.wd-overlay-bottom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%) !important;
    z-index: 2;
}
/*SMARTVID PAGDIDILIM*/
.wd-card.smartcities .wd-overlay-bottom {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.65) !important; 
    z-index: 2 !important;
    display: block !important;
}
.wd-card.smartcities .wd-card-body-bottom {
    position: relative !important;
    z-index: 10 !important;
}



/* ==========================================================================
10. GLOBAL RESPONSIVE MEDIA EME
========================================================================== */
@media (max-width: 1100px) {
    .wd-grid { grid-template-columns: 1fr 1fr; }
    .smartcities { grid-column: span 2; }
}
@media (max-width: 991px) { 
    /*HERO*/
    .kilay { justify-content: center; }
    .card { text-align: left; }
    .cardo { padding-top: 0; }
     /*BIGKSY*/
    .bs-wrap { padding: 80px 0; }
    .bs-headline { text-align: center; }
    .bs-body { text-align: center; }
    .bs-features { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    /*WHATEWEDO*/
    .wd-grid { grid-template-columns: 1fr; }
    .smartcities { grid-column: span 1; }
    .wd-services { grid-template-columns: 1fr; }
    .wd-card { min-height: 500px; }
}
@media (max-width: 576px) {
    .bs-stats { grid-template-columns: 1fr; }
    .bs-pricing-row { flex-direction: column; text-align: center; }
    .bs-cta { width: 100%; justify-content: center; }
}


/* ==========================================================================
ADDITIONAL EME EME
========================================================================== */
a {
    text-decoration: none !important;
}

.dot {
    font-size: 8px;         /* Replaces 'fa-2xs' / 'eight' with precise cross-browser scaling */
    margin-right: 0.5rem;       /* Replaces 'me-2' layout spacing perfectly */
    display: inline-block;      /* Ensures vertical margins align correctly with text */
    vertical-align: middle;     /* Keeps the dot perfectly leveled with adjacent typography */
}
/*BIGSKY VSAT EQUIP BOX*/
.equipment-box {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-lg);
    padding: 1rem;
    text-align: center;
    margin-top: auto; 
}
/*CAPTCHA*/
.captcha-box {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #ccc;
    border-radius: var(--radius-xs);
    padding: 12px 16px;
    width: fit-content;
    cursor: pointer;
    user-select: none;
    background: #fff;
    transition: border-color 0.2s;
}

.captcha-box:hover {
    border-color: #84cc16;
}

.captcha-box.verified {
    border-color: #84cc16;
}

.captcha-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #ccc;
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.captcha-box.verified .captcha-checkbox {
    background: #84cc16;
    border-color: #84cc16;
}

.captcha-checkmark {
    color: white;
    font-size: 14px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.2s;
}

.captcha-box.verified .captcha-checkmark {
    opacity: 1;
}

.captcha-label {
    font-size: 14px;
    color: #333;
}

.captcha-logo {
    margin-left: auto;
    font-size: 20px;
}


/* ==========================================================================
BACK TO THE TOP
========================================================================== */
.cd-top {
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 69px;
  right: 20px;
  background-color: rgba(1, 153, 52, 0.8) !important; 
  color: #ffffff !important;
  font-size: 16px;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  z-index: 9999; 
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s, visibility 0s .3s, background-color .3s, transform .3s;
}

.cd-top.cd-top--show {
  visibility: visible;
  opacity: 1;
}

.cd-top.cd-top--fade-out {
  opacity: .4;
}

.cd-top:hover {
  background-color: greenyellow !important;
  opacity: 1;
  transform: translateY(-3px); 
  color: #000000 !important;
}

@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 50px;
    width: 50px;
    right: 30px;
    bottom: 60px;
    font-size: 20px;
  }
}

/* ==========================================================================
POPCOLA
========================================================================== */
.popcola {
    background: rgba(11, 14, 20, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.modal-custom-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #6c757d;
    font-size: 1.5rem;
    padding: 0;
    line-height: 1;
    z-index: 1060; 
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-custom-close:hover {
    color: #343a40;
}

.modal-main-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.modal-header-divider {
    width: 60%;
    margin: 1rem auto;
    border-top: 3px solid red;
    opacity: 1;
}

.modal-info-row {
    display: flex;
    align-items: flex-start; 
    gap: 1.5rem;
}

.modal-row-icon {
    font-size: 1.75rem;
    flex-shrink: 0; 
    margin-top: 0.2rem; 
}




/* ==========================================================================
TUHOD
========================================================================== */
/* CONTAINER POSITION FRAMEWORK */
.wit-sticky-container {
    position: fixed;
    bottom: 0;
    right: 80px; /* Positions next to your Back-to-Top trigger */
    z-index: 1050;
    font-family: 'Inter', sans-serif;
    width: 340px;
    display: flex;
    flex-direction: column;
}

/* THE FLOATING FORM CARD GRAPHICS */
.wit-inquiry-card {
    background: rgba(10, 14, 46, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: var(--radius-md) var(--radius-md) 0 0 !important;
    
    /* ANIMATION MAGIC: Hide by compressing max-height and shifting opacity */
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
    padding: 0 !important; /* Forces layout completely flat when closed */
}

/* TRIGGERED SLIDE-UP ACTIVE STATE */
.wit-inquiry-card.is-open {
    max-height: 500px; /* Large enough to fit the form container fully */
    opacity: 1;
    padding: 1.5rem !important; /* Restores standard spacing padding on show */
}

/* HIGH TECH GLASS INPUT TWEAKS */
.wit-glass-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-radius: var(--radius-xs) !important;
    font-size: 13px !important;
    padding: 10px 14px !important;
}
.wit-glass-input::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}
.wit-glass-input:focus {
    border-color: #a3e635 !important;
    box-shadow: 0 0 0 0.25rem rgba(163, 230, 53, 0.15) !important;
}

/* CORPORATE ACCENT SUBMIT CONFIGURATION */
.btn-lime-submit {
    background-color: #019934;
    color: white;
    border: none;
    border-radius: var(--radius-xs);
    font-size: 12px;
    letter-spacing: 0.05em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-lime-submit:hover {
    background-color: #017a29;
    transform: translateY(-1px);
}

/* THE HORIZONTAL TRIGGER BAR */
.wit-trigger-bar {
    background-color: #e11d48; /* Red warning aesthetic */
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    cursor: pointer;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
    user-select: none;
}

/* COMPACT CLOSE UTILITY ELEMENT BUTTON */
.btn-close-tab {
    background: transparent;
    border: none;
    padding: 4px 8px;
    font-size: 16px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.btn-close-tab:hover {
    opacity: 1;
}
@media (max-width: 576px) {
    /* 1. Reset container positions to prevent horizontal clipping */
    .wit-sticky-container {
        right: 15px !important; /* Move away from center to the right edge */
        left: 15px !important;  /* Constrain to left edge */
        width: auto !important; /* Let width scale dynamically to screen boundaries */
        max-width: calc(100% - 30px); /* Fill screen leaving a clean 15px margin */
    }

    /* 2. Scale font and padding sizes slightly for tight viewports */
    .wit-inquiry-card.is-open {
        max-height: 85vh !important; /* Cap height to ensure it fits screen heights */
        padding: 1.25rem !important;
    }

    /* 3. Scale input sizes for fingers on mobile touch inputs */
    .wit-glass-input {
        padding: 8px 12px !important;
        font-size: 14px !important; /* Fixes iOS Safari auto-zoom on form inputs */
    }

    /* 4. Ensure the horizontal trigger bar header text remains perfectly legible */
    .wit-trigger-bar span {
        font-size: 12px !important;
    }
}