
:root {
    --cyber-black: #0D0214;
    --neon-pink: #F038FF;
    --neon-cyan: #00F0FF;
    --text-silver: #E0E0E0;
	--bs-body-font-size: 1rem; /* Standardizes the 16px baseline */
}
/* 1. Reset and Kill Scaling */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-size: 16px !important;
    scrollbar-gutter: stable;
}

/* 2. Base Body Styles */
body {
   /* background-color: var(--cyber-black);*/
    color: var(--text-silver);
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px !important;
    overflow-x: hidden;
}
body {
    /* Replace 'cyber-bg.jpg' with your actual filename */
    background-image: url('../img/bg-cyber-01.webp'); 
    
    /* This keeps the image from moving when you scroll */
    background-attachment: fixed;
    
    /* This ensures the background always fills the screen without gaps */
    background-size: cover;
    
    /* Centers the coolest part of the swirls */
    background-position: center center;
    
    /* Prevents the image from repeating if the page is very long */
    background-repeat: no-repeat;
    
    /* Fallback color in case the image takes a second to load */
    background-color: #05000a; 
    
    /* Optional: Improves performance on some mobile browsers */
    height: 100%;
    width: 100%;
}





/* 3. Global Heading Control */
h1 { font-size: 3rem !important; }
h2 { font-size: 2.5rem !important; }


.navbar-nav .nav-link {
   /* font-size: 1.4rem !important; */
    transition: none !important; /* Disable transitions during initial load */
}


h1, h2, h3, .navbar-brand {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- NEON PULSE KEYFRAMES --- */
@keyframes neonPulsePink {
    0% { box-shadow: 0 0 5px var(--neon-pink), 0 0 10px var(--neon-pink); }
    50% { box-shadow: 0 0 20px var(--neon-pink), 0 0 30px var(--neon-pink); }
    100% { box-shadow: 0 0 5px var(--neon-pink), 0 0 10px var(--neon-pink); }
}

@keyframes neonPulseCyan {
    0% { box-shadow: 0 0 5px var(--neon-cyan); border-color: rgba(0, 240, 255, 0.5); }
    50% { box-shadow: 0 0 20px var(--neon-cyan); border-color: rgba(0, 240, 255, 1); }
    100% { box-shadow: 0 0 5px var(--neon-cyan); border-color: rgba(0, 240, 255, 0.5); }
}

/* --- NWD SCROLL ANIMATIONS --- */
/* Base state for all anim elements */
[class*="nwd-fade-"] {
    opacity: 0;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    animation-play-state: paused;
}

/* The Trigger Class applied by custom.js */
.nwd-start-anim {
    animation-play-state: running !important;
}

/* Keyframe Definitions */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Animation Assignments */
.nwd-fade-up.nwd-start-anim { animation-name: fadeUp; }
.nwd-fade-in.nwd-start-anim { animation-name: fadeIn; }
.nwd-fade-left.nwd-start-anim { animation-name: fadeInLeft; }
.nwd-fade-right.nwd-start-anim { animation-name: fadeInRight; }

/* Utility Delays */
.delay-1 { animation-delay: 0.2s !important; }
.delay-2 { animation-delay: 0.4s !important; }
.delay-3 { animation-delay: 0.6s !important; }
.delay-4 { animation-delay: 0.8s !important; }

/* --- UI ELEMENTS & SECTIONS --- */
/* Updated Nav Links to be more stable */
/* Force a base size immediately to prevent the "pop" */

.navbar-toggler-icon {
    background-color: #f038ffba;
    border-radius: 5px;
}
/* Ensure the navbar container has a fixed minimum height to stop the "bounce" */
.main-nav {
    min-height: 80px; 
    display: flex;
    align-items: center;
	background: #190428;
}
.nav-link, .nav-link.active {
    font-size: 1.25rem !important; 
    margin-right: 20px;
    color: #cacaca !important;
/*    display: block;*/
    line-height: 1.2;
	transition: none !important; /* Prevents size-transition on page load */
	font-weight: 500;
}

.nav-title {
    font-size: 1.8rem;
    margin: 0 !important; /* Force margin 0 to stop the height jump */
    padding: 0;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
}
.text-silver {color:silver !important;}
.gradient-text {
    background: linear-gradient(
        to bottom, 
        #F038FF 23%,    /* Neon Pink Top */
        #00F0FF 50%,   /* Neon Cyan Middle */
        #7B2CBF 83%   /* Deep Purple Bottom */
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.5));
    display: inline-block;
}
.btn-neon-pink {
    background: transparent;
    border: 2px solid var(--neon-pink);
    color: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
    transition: 0.3s ease-in-out;
    text-decoration: none;
    display: inline-block;
    padding: 10px 25px;
    animation: neonPulsePink 4s infinite ease-in-out; /* Continuous slow pulse */
}

.btn-neon-pink:hover {
    background: var(--neon-pink);
    color: #fff;
    box-shadow: 0 0 25px var(--neon-pink);
    animation: none; /* Stop pulse on hover to emphasize selection */
}

/* Hero Section with Grid & Glow */
.hero-cyber {
    padding: 100px 0;
  /*  background: radial-gradient(circle at center, #1a052a 0%, var(--cyber-black) 100%);*/
    position: relative;
}
.text-muted {
    --bs-text-opacity: 1;
    color: rgb(181 182 182 / 75%) !important;
}
.hero-cyber h1 {
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 0 20px var(--neon-cyan);
}

/* Product/Specialty Cards */
.cyber-card {
    background: rgba(0,0,0, 0.5);
    border: 1px solid var(--neon-cyan);
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    animation: neonPulseCyan 6s infinite ease-in-out;
}
.cyber-card-middle {
    border: 1px solid var(--neon-pink) !important;
}
.cyber-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px var(--neon-cyan);
    background: rgba(255, 255, 255, 0.08);
}

.cyber-card i {
    font-size: 3rem;
    color: var(--neon-cyan);
    margin-bottom: 20px;
}
.cyber-card p {    margin-bottom: .8rem;
    font-size: 1.23em;
    line-height: 2rem;
    color: #ffffffb0 !important;}


/* --- SUB-PAGE HERO TEMPLATE --- */
.sub-hero {
    padding: 60px 0 40px;
    background: linear-gradient(180deg, rgb(26 5 42 / 80%) 0%, #0d0214de 100%);
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    text-align: left;
}

.sub-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Breadcrumbs Styling */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 5px var(--neon-pink);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--neon-pink);
    content: "/";
}

/* About Image Border Accent */
.border-neon-cyan {
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.about-img-frame {
    position: relative;
}

/* --- GALLERY STYLES --- */
.gallery-item {
    position: relative;
    overflow: hidden;
    height: 300px; /* Fixed height for uniformity */
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Important: Ensures all shapes fill the box without distorting */
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(13, 2, 20, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--neon-cyan);
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px var(--neon-cyan));
}

/* --- LIGHTBOX MODAL STYLES --- */
.nwd-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(13, 2, 20, 0.95);
    align-items: center;
    justify-content: center;
}

.nwd-lightbox.is-visible {
    display: flex; /* Script toggles this class */
}

#lightbox-full-image {
    max-width: 90%;
    max-height: 85%;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 30px var(--neon-cyan);
}

#close-lightbox {
    position: absolute;
    top: 20px; right: 40px;
    color: var(--text-silver);
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

#close-lightbox:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

/* --- CONTACT FORM STYLING --- */
.cyber-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--neon-cyan) !important;
    color: var(--text-silver) !important;
    border-radius: 5px;
    padding: 12px;
}

.cyber-input:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--neon-pink) !important;
    box-shadow: 0 0 10px var(--neon-pink) !important;
    outline: none;
}

.form-label {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--neon-cyan);
    margin-bottom: 8px;
}

/* --- CONTACT PAGE REVAMP --- */
.contact-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid var(--neon-cyan);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
    flex-shrink: 0;
}

.contact-icon-box i {
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 8px var(--neon-cyan));
}

.contact-methods h3 {
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.contact-methods a:hover {
    color: var(--neon-pink) !important;
    text-shadow: 0 0 10px var(--neon-pink);
}

#waves {
/*      position: fixed; 
      top: 0;
      left: 0;
      width: 100vw;   
      height: 100vh;   
      z-index: -1;   
      pointer-events: none; 
      display: block; */ 
}




