/* ==========================================================================
   BINDNCRYPT V2 GLOBAL & COMPONENT STYLES
   ========================================================================== */

   :root {
    --msp-accent: #127DB3;
    --msp-dark: #0f172a;
    --msp-deep: #020617;
    --msp-slate: #64748b;
    --msp-glass: rgba(255, 255, 255, 0.03);
    --msp-border: rgba(255, 255, 255, 0.1);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--msp-dark);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body.mobile-nav-active {
    overflow: hidden;
}

.section-gap {
    padding: 100px 0;
}

/* --------------------------------------------------------------------------
   GLASSMORPHISM NAVBAR & DESKTOP LINKS
   -------------------------------------------------------------------------- */
.header-glass-v2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.header-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

#logo img {
    height: 38px;
    width: auto;
    transition: transform 0.2s ease;
}

#logo:hover img {
    transform: scale(1.02);
}

.nav-menu-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 26px;
}

.nav-menu-list li a.nav-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 0;
    position: relative;
    text-decoration: none;
    transition: color 0.25s ease;
}

.nav-menu-list li a.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--msp-accent);
    box-shadow: 0 0 8px rgba(18, 125, 179, 0.8);
    border-radius: 2px;
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-menu-list li a.nav-link:hover,
.nav-menu-list li a.nav-link.active {
    color: #ffffff;
}

.nav-menu-list li a.nav-link:hover::after,
.nav-menu-list li a.nav-link.active::after {
    width: 100%;
    left: 0;
}

/* Status Indicator Badge */
.status-indicator-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.status-indicator-badge:hover {
    background: rgba(16, 185, 129, 0.15);
}

.status-label {
    font-size: 11px;
    font-weight: 600;
    color: #10b981;
    letter-spacing: 0.3px;
}

.status-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.status-pulse-dot::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 2px solid #10b981;
    animation: statusPulse 2s infinite ease-out;
}

@keyframes statusPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* Portal Action Button */
.btn-portal-action {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 10px;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}

.btn-portal-action:hover {
    background: var(--msp-accent);
    border-color: var(--msp-accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(18, 125, 179, 0.3);
}

/* --------------------------------------------------------------------------
   V1-STYLE MOBILE NAVIGATION (LEFT SLIDE + BURGER TO 'X' TRANSFORMATION)
   -------------------------------------------------------------------------- */
#mobile-nav-toggle {
    display: none;
    position: fixed;
    right: 20px;
    top: 14px;
    z-index: 1002;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    outline: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobile-nav-toggle i {
    color: #ffffff;
    font-size: 18px;
    transition: transform 0.25s ease;
}

#mobile-nav-toggle.active {
    background: rgba(239, 68, 68, 0.85); /* Red cancel badge like V1 */
    border-color: rgba(239, 68, 68, 1);
}

#mobile-nav-v2 {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -290px;
    width: 280px;
    height: 100vh;
    padding: 30px 20px;
    z-index: 1001;
    background: rgba(10, 15, 26, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobile-nav-v2.active {
    transform: translateX(290px);
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    margin-bottom: 8px;
}

.mobile-nav-list li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.25s ease;
}

.mobile-nav-list li a:hover,
.mobile-nav-list li a.active {
    color: #ffffff;
    background: rgba(18, 125, 179, 0.25);
    border-left: 3px solid var(--msp-accent);
}

.mobile-overlay-v2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay-v2.active {
    display: block;
    opacity: 1;
}

/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */
.banner-area-v2 {
    background: #020617 !important;
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: radial-gradient(var(--msp-accent) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.1;
    mask-image: linear-gradient(to left, black, transparent);
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(18, 125, 179, 0.1);
    border: 1px solid rgba(18, 125, 179, 0.3);
    color: var(--msp-accent);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   SERVICE CARDS (V3)
   -------------------------------------------------------------------------- */
.service-card-v3 {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card-v3:hover {
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.s-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(18, 125, 179, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.s-card-icon i {
    font-size: 26px;
    color: var(--msp-accent);
}

.s-card-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.s-card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--msp-accent);
    background: rgba(18, 125, 179, 0.05);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.service-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-feature-list li {
    font-size: 13px;
    color: var(--msp-slate);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-feature-list li i {
    color: var(--msp-accent);
}

/* --------------------------------------------------------------------------
   ROADMAP SECTION
   -------------------------------------------------------------------------- */
.roadmap-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 35px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.roadmap-card:hover {
    transform: translateY(-8px);
    border-color: var(--msp-accent);
    box-shadow: 0 20px 40px rgba(18, 125, 179, 0.08);
}

.roadmap-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.roadmap-num {
    font-size: 32px;
    font-weight: 800;
    color: #cbd5e1;
    line-height: 1;
    transition: color 0.3s ease;
}

.roadmap-card:hover .roadmap-num {
    color: var(--msp-accent);
}

.roadmap-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(18, 125, 179, 0.08);
    color: var(--msp-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.roadmap-step-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--msp-accent);
    margin-bottom: 8px;
    display: block;
}

.roadmap-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--msp-dark);
    margin-bottom: 12px;
}

.roadmap-card p {
    font-size: 13px;
    color: var(--msp-slate);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.roadmap-card-points {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}

.roadmap-card-points li {
    font-size: 12px;
    color: #475569;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.roadmap-card-points li i {
    font-size: 10px;
    color: var(--msp-accent);
}

/* --------------------------------------------------------------------------
   DARK HOSTING INFRASTRUCTURE GRID
   -------------------------------------------------------------------------- */
.hosting-dark-wrap {
    background: #020617;
    padding: 100px 0;
}

.hosting-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hosting-card-dark {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px 25px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.hosting-card-dark:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--msp-accent);
    transform: translateY(-4px);
}

.hosting-card-dark i { 
    font-size: 30px; 
    color: var(--msp-accent); 
    margin-bottom: 20px; 
}

.hosting-title {
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.hosting-card-dark .price { 
    color: #ffffff !important; 
    font-size: 32px; 
    font-weight: 800; 
    margin: 15px 0; 
}

.hosting-card-dark .price span { 
    font-size: 14px; 
    color: #94a3b8 !important; 
    font-weight: 400;
}

.hosting-list { 
    list-style: none; 
    padding: 0; 
    margin: 20px 0; 
    text-align: left; 
}

.hosting-list li { 
    font-size: 13px; 
    margin-bottom: 10px; 
    color: rgba(255, 255, 255, 0.8) !important; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}

.hosting-list li i { 
    font-size: 12px;
    color: var(--msp-accent) !important; 
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   FAQ SECTION
   -------------------------------------------------------------------------- */
.faq-item { 
    background: white; 
    border-radius: 16px; 
    margin-bottom: 12px; 
    border: 1px solid #f1f5f9; 
    overflow: hidden; 
}

.faq-question { 
    padding: 24px 30px; 
    cursor: pointer; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-weight: 600; 
}

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

/* --------------------------------------------------------------------------
   INTERACTIVE TECH ECOSYSTEM & MARQUEE
   -------------------------------------------------------------------------- */
.tech-ecosystem-section {
    background: #020617;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tech-filter-nav {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px;
    border-radius: 30px;
    margin-bottom: 25px;
}

.tech-tab-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.tech-tab-btn:hover {
    color: #ffffff;
}

.tech-tab-btn.active {
    background: var(--msp-accent);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(18, 125, 179, 0.4);
}

.tech-badge-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 24px 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-badge-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--msp-accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.tech-icon-box {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.tech-icon-box img {
    max-height: 38px;
    max-width: 100px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.tech-badge-card:hover .tech-icon-box img {
    opacity: 1;
    transform: scale(1.08);
}

.tech-badge-card h5 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.tech-card-category {
    font-size: 11px;
    color: var(--msp-slate);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   TECH STACK CONTINUOUS SCROLLER (LIGHT THEME COMPATIBLE)
   -------------------------------------------------------------------------- */
   .tech-ticker-wrap {
    overflow: hidden;
    white-space: nowrap;
    padding: 24px 0;
    background: #ffffff;
}

.tech-ticker {
    display: inline-block;
    animation: tickerLoop 28s linear infinite;
}

.tech-ticker img {
    height: 34px;
    max-width: 120px;
    object-fit: contain;
    margin: 0 40px;
    /* Clean dark-slate grayscale for light background */
    filter: grayscale(100%) opacity(0.55);
    transition: filter 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.tech-ticker img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

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

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Consultation & Footer
   -------------------------------------------------------------------------- */
.consultation-section { 
    background: var(--msp-deep); 
    padding: 100px 0; 
}

/* Footer Section Reset */
.footer-area {
    background-color: #04091e !important;
    padding-top: 100px;
    padding-bottom: 100px;
    color: #fff !important;
}

.consult-form-wrap { 
    background: var(--msp-glass); 
    backdrop-filter: blur(20px); 
    padding: 40px; 
    border-radius: 30px; 
    border: 1px solid var(--msp-border); 
}

.form-input-v2 { 
    width: 100%; 
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid var(--msp-border); 
    padding: 14px 20px; 
    border-radius: 12px; 
    color: white; 
    margin-bottom: 20px; 
}

.form-input-v2:focus {
    outline: none;
    border-color: var(--msp-accent);
    background: rgba(255, 255, 255, 0.08);
}

.contact-sidebar { 
    background: var(--msp-glass); 
    border: 1px solid var(--msp-border); 
    padding: 35px; 
    border-radius: 24px; 
}

.mini-process-step {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.mini-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(18, 125, 179, 0.2);
    border: 1px solid var(--msp-accent);
    color: var(--msp-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}

.contact-method a { 
    color: rgba(255, 255, 255, 0.85); 
    display: block; 
    margin-bottom: 12px; 
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-method a:hover {
    color: #ffffff;
}

.contact-method i { 
    color: var(--msp-accent); 
    margin-right: 10px; 
}

.btn-msp-primary { 
    background: var(--msp-accent) !important; 
    color: #ffffff !important; 
    border: none; 
    padding: 12px 25px; 
    border-radius: 12px; 
    font-weight: 700; 
    display: inline-block;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-msp-primary:hover {
    opacity: 0.92;
    transform: translateY(-2px);
    color: #ffffff !important;
}


.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* --------------------------------------------------------------------------
   RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
    .container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    #nav-menu-container {
        display: none !important;
    }

    #mobile-nav-toggle {
        display: flex !important;
    }

    .banner-area-v2 {
        padding: 130px 0 80px !important;
    }

    .banner-area-v2 h1 {
        font-size: 38px !important;
    }

    .hosting-grid-v2 {
        grid-template-columns: 1fr !important;
    }

    .consult-form-wrap {
        padding: 30px 20px;
        margin-top: 40px;
    }

    .service-card-v3 {
        padding: 30px 20px !important;
    }
}

@media (max-width: 576px) {
    .tech-filter-nav {
        border-radius: 16px;
    }
    .tech-tab-btn {
        width: 100%;
        text-align: center;
    }
}

.service-area .header-text {
    text-align: center;
  }
  
  .service-area .header-text h1 {
    margin-bottom: 20px;
  }
  
  .single-service {
    /* background-color: #f9f9ff; */
    background-color: #97a5ff2b;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    text-align: center;
  }
  
  .single-service:hover {
    box-shadow: 0px 20px 30px 0px rgba(35, 94, 231, 0.2);
    cursor: pointer;
  }
  
  .single-service:hover h4 {
    color: #235ee7;
  }
  
  .single-service h4 {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .single-service h4 .lnr {
    margin-right: 15px;
  }
  
  .unique-feature-area {
    background-color: #04091e;
  }
  
  .single-unique-product {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  /* Hover effect */
  .single-unique-product:hover, .click-btn:hover {
    background-color: white;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.7); /* Glowing white effect */
    cursor: pointer;
  }
  
  .single-unique-product {
    background-color: rgba(255, 255, 255, 0.90);
    text-align: center;
    border-radius: 10px;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  
  .single-unique-product h4, .single-unique-product p {
    color: rgba(0, 0, 0, 0.75);
  }
  
  .single-unique-product img {
    padding: 40px 0px;
  }
  
  .single-unique-product h6 {
    color: #235ee7;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  
  .single-unique-product .desc {
    background-color: #f9f9ff;
    padding: 20px 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
  }
  
  .single-unique-product .primary-btn {
    background-color: #222;
    color: #fff;
    border: 1px solid #fff;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  
  .single-review {
    text-align: center;
    background-color: #f9f9ff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  
  .single-review p {
    margin-top: 20px;
  }
  
  .single-review .star .checked {
    color: orange;
  }
  
  .single-review:hover {
    cursor: pointer;
    background-color: white;
    box-shadow: 0px 20px 30px 0px rgba(35, 94, 231, 0.2);
  }

  