/* General Resets & Body */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.open-menu .main-header,
body.open-menu .fixed-social-bar,
body.open-menu .menu-toggle,
body.open-menu .hero-auth-box {
   
    opacity: 0 !important;
    visibility: hidden !important; 
  
    transition: opacity 0.3s ease, visibility 0.3s ease; /* Smooth transition */
}

body.open-menu #offCanvasMenu {
    opacity: 1; /* Menu visible rahe */
    visibility: visible;
}


html {
    scroll-behavior: smooth; 
    scrollbar-width: none;
}

body::-webkit-scrollbar {
    display: none;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: white;
    background-color: #fff;
    overflow-x: hidden; 
    overflow-y: auto; 
}



/*Scroll Lock */
body.open-menu {
    overflow: hidden !important; 
}


/* ======================= HEADER STYLING ======================= */
.main-header {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
    z-index: 1000;
    color: white; 
	box-sizing: border-box;
}

.logo img {
    height: 70px; 
    margin-right: 15px;
}

.menu-toggle {
    font-size: 30px;
    cursor: pointer;
    color: #ffc107; 
    transition: color 0.3s ease;
	padding:8px; 
	top: 35px;
	right:18px; 
	
}

.menu-toggle:hover {
    color: #fff;
}

/* particles-js container */
#particles-js {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    z-index: 1!important;
    background: #1a1a2e; 
	overflow: hidden;
}



/* ===== Typing Text Animation (Increase Online Sales...) ===== */
.typing-text {
  font-size: 1.2rem;
  color: #e0e0e0; /* Default (untyped/initial) color */
  white-space: nowrap;      /* Desktop: single line */
  overflow: hidden; /* ? CRITICAL: Keeping this is what makes typing animation work */
  border-right: none; 
  animation: none; 

}

@media (min-width: 769px) {
  .typing-text {
    animation: none; 
    border-right: none; 
    /* overflow: visible; <--- THIS WAS THE BUG. REMOVED. */
  }
}



@keyframes typing-pc {
  0% { width: 0; color: #e0e0e0; } /* Starting color: Grey */
  100% { width: 100%; color: #ffc107; } /* Final color: Yellow/Gold */
}



/* ======================= OFF-CANVAS MENU STYLING (FULLSCREEN RIGHT-SIDE) - FIXED! ======================= */
.off-canvas-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh !important;
    z-index: 9999 !important;
    background-color: #111; 
    transform: translateX(-100%); 
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out,visibility 0s 0.46s;
    visibility: hidden; 
    opacity: 0;
    overflow: hidden; 
    padding-top: 50px;
	display: flex; /* इसे Flex Container बनाएँ */
    flex-direction: column; /* बच्चों को ऊपर से नीचे स्टैक करें */
    justify-content: space-between; /
	
}
/* style.css mein .off-canvas-menu ke niche jodein */

.off-canvas-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        0deg, /* ऊपर से नीचे */
        rgba(0, 255, 255, 0.05) 0px, /* बहुत हल्की नीली लाइन */
        rgba(0, 255, 255, 0.05) 1px, 
        transparent 1px, 
        transparent 5px /* हर 5px पर पैटर्न दोहराओ */
    );
    
    background-size: 100% 100px; /* ऊर्ध्वाधर (vertical) पैटर्न को फैलाओ */
    background-position: 0 0;
    
    z-index: 0; 
    opacity: 0.2; /* हल्का रखें */
    
    /* Animation: पैटर्न को नीचे की ओर तेज़ी से मूव करो */
    animation: digitalRain 3s linear infinite; 
}
@keyframes digitalRain {
    from {
        /* Pattern ko upar se shuru karo */
        background-position: 0 0;
    }
    to {
        /* Pattern ko neeche move karo (100px ki height par) */
        background-position: 0 100px; 
    }
}

.off-canvas-menu::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 255, 255, 0.05); /* Soft, overall glow */
    z-index: 0;
    animation: pulseGlow 5s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    from { opacity: 0; }
    to { opacity: 0.1; }
}

@keyframes pulse {
  0% { box-shadow: 0 0 25px #00f7ff, 0 0 50px #00f7ff; }
  50% { box-shadow: 0 0 50px #00f7ff, 0 0 120px #00f7ff; }
  100% { box-shadow: 0 0 25px #00f7ff, 0 0 50px #00f7ff; }
}


.radar {
  position: absolute;
  width: 750px;
  height: 750px;
  border-radius: 50%;
  border: 1px solid rgba(0,255,255,0.2);
  animation: scan 10s linear infinite;
}

@keyframes scan {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
/* Hide scrollbar for Webkit browsers (Chrome, Safari) */
.off-canvas-menu::-webkit-scrollbar {
  display: none;
}
/* NEW CODE FIX (Around line 118) */
.off-canvas-menu.open {
    transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    /* Fix: ????? ?? ??? ???? ???? ???? ????? */
    transition-delay: 0s; 
    
    /* CRITICAL FIX 3: ?? ???? ???? ??, ?? ?? ???????? ???? ????? */
    pointer-events: auto;
}

/* Close button position */
.close-btn {
    position: absolute; 
    top: 30px;
    right: 30px;
    font-size: 40px;
    cursor: pointer;
    color: #ffc107;
    transition: color 0.3s;
    z-index: 1002; 
	/* ? NEW STYLES for Round Border/Look ? */
    border: 3px solid white; /* White circular border */
    border-radius: 50%; /* Make it perfectly round */
    width: 50px; /* Adjust size */
    height: 50px; /* Adjust size */
    display: flex; /* Center the 'X' icon */
    align-items: center;
    justify-content: center;
    font-size: 24px; /* Adjust icon size to fit */
}

.close-btn:hover {
    color: white;
	
}

.off-canvas-menu .menu-items.hide-content {
    /* ??? ?????? ???? ??????, ?? opacity ?? ???????? */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s;
}


.off-canvas-menu.closing {
    /* Use the same transition property as the open state for smooth closing */
    transform: translateX(-100%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    /* !important to override the 'open' class for transform/visibility */
}
/* Menu items list (now centered) */
.menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column; /* Stack items vertically */
  text-align: left; 
  width: 100%; 
  max-width: 400px; 
  gap: 15px; /* Space etween links */
transition: transform 0.35s ease, opacity 0.35s ease;
position: relative; /* z-index तभी काम करेगा जब position set हो */
    z-index: 20
}

.menu-items li {
    margin-bottom: 15px; 
    position: relative; 
}

.menu-items li a {
	display: inline-block;
    padding: 7px 20px; 
    color: #fff;
    font-size: 1.2rem; 
    transition: background-color 0.3s, color 0.3s;
    border-radius: 50px; 
    text-decoration: none;
    font-weight: 500;
}

.menu-items li a:hover {
  background-color: rgba(255, 255, 255, 0.15); /* Light hover background */
    color: #ffc107;
}
.menu-items li a i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

/* Dropdown/Submenu Styling for Fullscreen */
/* Dropdown styling */
.has-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: Left;
}


/* FIX: Submenu Base Styles (Desktop) */
.submenu {
    list-style: none;
    text-align: left; 
    padding: 10px; 
    position: absolute; 
    top: 0; 
    left: 50%; /* CRITICAL FIX: Desktop: Main link ke right side mein open ho */
    background-color: #2c3e50; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    min-width: 200px; 
    border-radius: 10px; 
	width: auto; 
    min-width: 180px; 
    border-radius: 10px; 
	height: auto !important;
    min-height: auto !important;
    
 /* HIDDEN STATE */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateX(10px); 
    z-index: 1010; 
    /* Remove redundant mobile styles that might conflict */
    max-height: none !important;
    overflow: visible !important;
}

.submenu li.has-dropdown {
    position: relative; 
    display:block; 
}
.mobile-menu {
  max-height: calc(100vh - 50px);
  overflow-y: auto;
}
.offcanvas-menu {
  max-height: 100vh !important;
  overflow-y: auto !important;
  z-index: 9999 !important;
}



/* FIX: Nested Submenu Base Styles (Desktop) */
.sub-submenu {
    list-style: none;
    padding: 10px;
    text-align: left;
    position: absolute; 
    top: 0;
    left: 100%; /* CRITICAL FIX: Desktop: Submenu link ke right side mein open ho */
    
    /* FIX: Nested Submenu background color (Purple/Indigo) */
    background-color: #4e54c8; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    
    width: auto; 
    min-width: 200px; 
    border-radius: 10px; 

    /* HIDDEN STATE */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateX(10px); 
    z-index: 1020; 
    /* Remove redundant mobile styles that might conflict */
    max-height: none !important;
    overflow: visible !important;
}

/* Show Submenu/Nested Submenu on Hover (Desktop only) */
.has-dropdown:hover > .submenu,
.has-dropdown:hover > .sub-submenu { 
    opacity: 1;
    visibility: visible;
    transform: translateX(0); 
}

.submenu.active, .sub-submenu.active {
        transform: translateX(0%) !important;
        opacity: 1 !important;
        visibility: visible !important;
}


.has-dropdown {
    
	position: relative !important;
    height: auto !important;
}

.submenu li a, .sub-submenu li a {
    font-size: 1.1rem; /* Smaller than main links */
    color: #a0c4ff;
    padding: 8px 15px;
	border-radius: 5px;
	display: block;
	text-align: left;
	border-radius: 50px;
}

.submenu li a:hover, .sub-submenu li a:hover {
    color: #ffc107;
    background-color: rgba(255, 255, 255, 0.1);
}

.submenu li.has-dropdown, .sub-submenu li.has-dropdown {
    position: relative; 
    display: block !important; 
    margin-bottom: 0;
    margin-top: 0;
	width: 100%;
}

/* ?? CRITICAL FIX: SUBMENU ????? ?? ?????? ?????? ?? ?????? */
/* ?? ????????? ???? ?? ?? submenu active ???? ?? menu-items ???? ?? ???? ???? */
.submenu.active ~ .menu-items,
.sub-submenu.active ~ .menu-items {
    transform: translateX(-100%) !important;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s ease; /* submenu ?? ??? ?? ??? ???? */
}

/* Call to Action Button in Menu */
.btn-cta {
    background-color: transparent;
    color: white !important; 
    padding: 15px 30px; 
    text-align: center;
    border-radius: 5px;
    font-weight: 600;
	margin-top: 0px; 
    width: 100%; 
    max-width: 250px; 
    text-decoration: none;
    font-size: 1.1rem;
	border: 1px solid white;
}

.btn-cta:hover {
    background-color: #34495e;
    color: white !important;
	border-color: #ffc107;
}

/* Social Media Icons in Menu */
.social-media-menu {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    display: flex;
    gap: 25px;
    
}
.social-media-menu a {
    color: white;
    font-size: 2rem;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.social-media-menu a:hover {
    color: #ffc107;
}



/* ======================= END OFF-CANVAS MENU STYLING ======================= */



/* ======================= HERO SECTION STYLING ======================= */
.hero-section {
    background: linear-gradient(135deg, #4e54c8 0%, #8f94fb 100%); 
    min-height: 100vh !important;
    height: 100vh !important;
    position: relative;
    overflow: hidden; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
	z-index: 10;
	width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content .tagline {
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 60px;
    font-weight: 1000;
    color: #a0c4ff; 
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 70px;
    line-height: 1.2;
}

.hero-content .subtitle {
    font-size: 1.3rem;
    color: #e0e0e0;
}


/* Hero Auth Box */
.hero-auth-box {
    position: absolute; 
    bottom: 40px; 
    left: 50%;
    transform: translateX(-50%);	
    z-index: 50; 
    display: flex;
    flex-direction:row; 
    gap:10px; 
	max-width: 90%;
}

/* Hero Auth Button */
.btn-hero-auth {
    background-color: rgba(255, 255, 255, 0.1); 
    color: #ffffff;
    padding: 10px 20px;
    border: 1px solid #ffffff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: background-color 0.3s;
    width: 200px; /* Laptop view width */
}

.btn-hero-auth:hover {
    background-color: #FF9933; 
    color: #1a1a2e; 
    border-color: #00FFFF;
}


/* ======================= ANIMATED TAGLINE STYLING ======================= */
.animated-tagline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; 
    user-select: none; 
}

.animated-tagline .step {
    opacity: 0.7; /* Opacity adjusted for better visibility */
    transition: opacity 0.45s ease-in-out, transform 0.45s ease-in-out, color 0.35s ease-in-out;
    transform: scale(0.96);
    color: #a0c4ff; /* Color adjusted to be visible when inactive */
    transform: scale(0.95);
    padding: 5px 10px;
    border-radius: 5px;
}

.animated-tagline .step.active {
    opacity: 1; 
    transform: scale(1);
    font-weight: 600;
    color: #ffc107 !important; /* ? HIGHLIGHT: Active step ko Yellow/Gold kiya */
}

.animated-tagline .arrow {
    opacity: 0.8; /* Opacity adjusted */
    font-size: 1.5rem;
    color: #e0e0e0; /* Arrow color set to visible grey */
    transition: opacity 0.45s ease-in-out;
}


/* ======================= FIXED SOCIAL MEDIA BAR: FINAL FIX ======================= */
.fixed-social-bar {
    position: fixed;
    top: 50%;
    right: 7px; 
    transform: translateY(-50%);
    z-index: 990;
    width: 70px; 
    display: flex;
    flex-direction: column;
	box-sizing: border-box;
    background-color: transparent; 
    padding: 10px 0;
    border-radius: 0; 
	
}

.fixed-social-bar a {
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    background-color: transparent; 
    color: white;
    padding: 15px 5px;
    margin-bottom: 15px;
    transition: color 0.3s;
	text-decoration: none;
}

.fixed-social-bar a i {
    font-size: 24px;
    margin-bottom: 5px;
}

.fixed-social-bar a span {
    display: none !important;
}

.fixed-social-bar a:hover {
    color: #ffc107;
}

/* ======================= VISION SECTION ======================= */
.vision-section {
  position: relative;
  width: 100%;
  background: radial-gradient(circle at center, #0e1625 5%, #03050a 100%);
  overflow: hidden;
  padding: 60px 0;
   height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  
}
.vision-section canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none;
  z-index: 1;
}

.vision-container {
  max-width: 750px;
  max-height: 420px;
  margin: auto;
  padding: 60px 35px;
  border-radius: 20px;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(0,255,255,0.25);
  box-shadow: 0 0 40px rgba(0,255,255,0.25);
  animation: fadeUp 1.4s ease forwards;
  transform: translateY(40px);
  opacity: 0;
  position: relative;
  z-index: 2;
}

.vision-title {
  font-size: 45px;
  font-weight: 600;
  text-align: center;
  color: white;
  margin-bottom: 25px;
  position: relative;
  text-shadow: 0 0 25px #00eaff;
}

.line-beam {
  display:block;
  width:160px;
  height:4px;
  margin:14px auto 0 auto;
  background: linear-gradient(90deg,#00eaff,#fff,#00eaff);
  border-radius:6px;
  box-shadow:0 0 18px #00eaff;
  animation: shine 2.5s infinite ease-in-out;
}

@keyframes shine {
  0% { opacity: .2; width:80px; }
  50% { opacity:1; width:160px; }
  100% { opacity:.2; width:80px; }
}

.vision-text {
  font-size: 17px;
  color: #c8faff;
  font-weight:300;
  text-align:center;
  line-height: 1.5;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.vision-container .highlight {
    color: #ffd700;
    font-weight: 600;
}

/* ======================= ANIMATED TIMELINE SECTION STYLING ======================= */

.animated-timeline-section {
    position: relative;
    padding: 100px 20px;
    background-color: #1a1a2e; 
    color: #fff;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #000000 100%);
}

.timeline-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent; 
    z-index: 1;
    overflow: hidden;
}





.animated-timeline-section .container {
    position: relative;
    z-index: 5; 
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
    color: #ffc107;
}

.timeline-subtitle {
    font-size: 1.2rem;
    color: #a0c4ff;
    margin-bottom: 60px;
    text-align: center;
}

/* --- Core Timeline Structure --- */

.timeline-wrapper {
    position: relative;
    padding: 20px 0;
}

/* Vertical dividing line (The spine of the timeline) */
.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 5px; 
    height: 100%;
    background: linear-gradient(
        to bottom,
        #4e54c8 0%, 
        #ffc107 20%, 
        #4e54c8 40%, 
        #4e54c8 100%
    );
    background-size: 100% 400%; 
    background-repeat: no-repeat;
    animation: timelinePulse 5s infinite ease-in-out; 
    z-index: 1; 
}

/* Keyframes for Running Light Effect */
@keyframes timelinePulse {
    0% {
        background-position: 0% 0%;
        box-shadow: 0 0 5px #ffc107; 
    }
    50% {
        background-position: 0% 100%; 
        box-shadow: 0 0 20px #ffc107, 0 0 30px #4e54c8; 
    }
    100% {
        background-position: 0% 0%; 
        box-shadow: 0 0 5px #ffc107;
    }
}


/* Individual Item Styling */
.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    margin-bottom: 60px;
    position: relative;
    min-height: 100px; 
}

/* Icon Point in the middle */
.timeline-point {
    position: absolute;
    left: 50%;
    top: 50%; 
    transform: translate(-50%, -50%); 
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffc107; 
    color: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 0 8px #1a1a2e; 
    z-index: 10;
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-point {
    transform: translate(-50%, -50%) scale(1.1);
}


/* --- HEADING STYLES --- */

.timeline-heading {
    width: 45%; 
    text-align: right;
    order: 1; 
    padding: 0 20px;
}

.timeline-heading.right {
    text-align: left;
    order: 3; 
}

.timeline-heading h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffc107;
    line-height: 1.2;
}


/* --- CONTENT BOX STYLES (MODERN PILL DESIGN) --- */

.timeline-content {
    background-color: #2c3e50; 
    padding: 30px 25px; 
    border-radius: 50px; 
    width: 45%; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); 
    order: 2; 
    
    /* ANIMATION INITIAL STATE */
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1); 
    transform: translateX(-50%); 
}

/* For LEFT HEADING (Content is on the RIGHT) */
.timeline-item:nth-child(odd) .timeline-content {
    order: 3; 
    transform: translateX(50%); 
    margin-left: 5%; 
    margin-right: 0;
}
/* For RIGHT HEADING (Content is on the LEFT) */
.timeline-item:nth-child(even) .timeline-content {
    order: 1; 
    transform: translateX(-50%); 
    margin-right: 5%; 
    margin-left: 0;
}


.timeline-content p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* ANIMATION FINAL STATE (Added by JS on Scroll) */
.timeline-content.visible {
    opacity: 1;
    transform: translateX(0) !important; 
}

/* Styling for a "tail" (Arrow) connecting box to the spine */

.timeline-content::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 15px solid transparent; 
    border-bottom: 15px solid transparent;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
}

/* Tail for Right-side Content (from odd items) - Pointing Left */
.timeline-item:nth-child(odd) .timeline-content::before {
    border-right: 20px solid #2c3e50; 
    left: 45%; 
}

/* Tail for Left-side Content (from even items) - Pointing Right */
.timeline-item:nth-child(even) .timeline-content::before {
    border-left: 20px solid #2c3e50; 
    right: 45%;
}




/* --- Mobile Responsiveness (Single Column) --- */
@media (max-width: 768px) 


{
	.typing-text {
    white-space: normal;    /* allow wrapping on mobile to avoid disappearing */
    overflow: visible;
    text-align: center;
  }

	
    
    /* 1. Header and Social Bar */
    .main-header { 
        padding: 15px 15px; 
    }
    .logo img { 
        height: 50px; 
    }
    .fixed-social-bar { 
        display: none; 
    }
    
    /* 2. Hero Section (Crucial Fix: Text Wrapping and Sizing) */
    .hero-section {
        min-height: 80vh; 
        padding-top: 100px; 
        padding-bottom: 200px; 
    }
    .hero-content {
        max-width: 100%;
        padding: 0 20px; 
    }
    
    .hero-content h1 {
        font-size: 1.8rem; 
        margin-bottom: 25px; 
    }

    .hero-content .tagline {
        font-size: 0.8rem; 
        margin-bottom: 15px; 
        gap: 8px;
    }
    
    /* Typing Text Fix for Mobile: Animation Off, Text Wraps */
    .typing-text {
        font-size: 1rem;
        white-space: normal; 
        overflow: visible; 
        animation: none; 
        border-right: none !important; 
        width: 100%;
        text-align: center; 
        overflow: visible;
    }
    /* ------------------------------------------------------------------ */

    /* 3. Hero Auth Box (Stacking Buttons - Overlap Fix) */
    .hero-auth-box {
        bottom: 50px; 
        width: 90%; 
        max-width: 400px; 
        flex-direction: column; 
        gap: 10px; 
        left: 50%;
        transform: translateX(-50%);    
    }
    .btn-hero-auth {
        width: 100%; 
        padding: 12px 20px;
        font-size: 1rem;
    }

    /* 4. Vision Section Headings */
    .vision-content h2 {
        font-size: 2rem;
    }
    .vision-content p {
        font-size: 1rem;
    }

    /* 5. Timeline Section (Single Column Alignment) */
    .solar-system-container {
        display: none;
    }
    .timeline-title {
        font-size: 2rem;
    }
    .timeline-subtitle {
        font-size: 1rem;
    }
    .timeline-wrapper::before {
        left: 30px; 
        transform: none;
    }
    .timeline-item {
        flex-direction: column !important; 
        align-items: flex-start;
        padding-left: 60px; 
        min-height: auto;
    }
    .timeline-point {
        left: 30px; 
        top: 0; 
        transform: translate(-50%, 0);
        margin-top: 5px;
    }
    .timeline-heading {
        width: 100%;
        text-align: left !important;
        order: 2; 
        margin-top: 20px;
        padding: 0;
    }
    .timeline-content {
        width: 100%;
        margin: 10px 0 !important;
        order: 3;
        transform: translateX(0) !important; 
        padding: 20px 25px; 
        border-radius: 15px; 
    }
    .timeline-content::before {
        content: none;
    }
    .timeline-content.visible {
        transform: translateX(0) !important;
    }

}




/* MOBILE - MODERN CARD STYLE SUBMENU FIXES */
@media (max-width: 768px) {

    /* ----- CONTAINER VIEW SCREENS ----- */
    .menu-items {
        transition: transform 0.45s ease; 
        width: 100%;
    }

    /* ----- CARD STYLE (POSITIONING AND COLOR FIX) ----- */
    .submenu,
.sub-submenu {
		position: fixed !important;
        top: 0;
        left: 0;
        height: 100vh !important;
        width: 100% !important;
		transform: translateX(100%); 
		transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
		visibility: hidden; 
		opacity: 0; 
		background-color: #111; 
		z-index: 1005; 
    overflow-y: auto; 
}

    /* FIX: Submenu color match kiya */
    .submenu {
		
        background: #2c3e50 !important; /* Darker Blue/Grey (SS Color) */
        z-index: 1000; /* Main Menu se upar */
    }
    
    /* FIX: Nested Submenu color match kiya */
    .sub-submenu {
        background: #1a1a2e !important;
        z-index: 1010; /* Submenu se upar */ 
    }
	
	/* NEW: Content padding ?? submenu ?? UL ?? ??? ???? */
    .submenu .submenu-items,
    .sub-submenu .submenu-items {
        padding: 70px 20px 20px; 
        
    }

    /* ACTIVE SHOW */
.submenu.active,
.sub-submenu.active {
    transform: translateX(0%);
    opacity: 1 !important; 
    visibility: visible !important; 
}

   

    /* MENU ITEMS VISUAL IMPROVED */
    .submenu li a,
    .sub-submenu li a {
        padding: 12px 15px !important;
        display: block;
        font-size: 1.1rem;
        border-radius: 12px !important;
        margin-bottom: 15px;
        background-color: rgba(255,255,255,0.06);
        color: #dfe8ff !important;
    }

    .submenu li a:hover,
    .sub-submenu li a:hover {
        background-color: rgba(255,255,255,0.12);
    }
	
	.submenu li:nth-child(2) a,
.sub-submenu li:nth-child(2) a {
    margin-top: 100px !important;  /* back button height ke hisab se */
}

    /* ----------- BACK BUTTON STYLE FIX ----------- */
 .mobile-back {
    position: absolute !important;
    top: 20px !important;
    left: 20px !important;
    z-index: 99999 !important;
    cursor: pointer;
    font-size: 1.5rem;
}
}
/* ======================= MENU AUTH BOX STYLING (NEWLY ADDED) ======================= */
.menu-auth-box {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    display: flex;
    flex-direction: row;
    gap: 10px;
	width: 600px;
}

.btn-menu-auth {
    background-color: rgba(255, 255, 255, 0.1); 
    color: #ffffff !important;
    padding: 10px 15px;
    border: 1px solid #ffffff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: background-color 0.3s, border-color 0.3s;
    font-size: 0.9rem;
    display: block;
    width: 33.33%; /* Divide the space for three buttons */
}

.btn-menu-auth:hover {
    background-color: #FF9933; 
    color: #1a1a2e !important; 
    border-color: #00FFFF;
}

/* ======================= MENU SOCIAL BAR STYLING (NEWLY ADDED) ======================= */
.menu-social-bar {
    position: absolute;
    top: 50%;
    right: 30px; /* Aligned with the Close button */
    transform: translateY(-50%);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-social-bar a {
    color: white;
    font-size: 24px;
    padding: 5px;
    transition: color 0.3s;
}

.menu-social-bar a:hover {
    color: #ffc107;
}

/* ======================= SUBMENU OPEN STATE VISIBILITY FIX (SAFETY) ======================= */

/* When a submenu is active, hide the new elements */
.submenu.active ~ .menu-auth-box,
.sub-submenu.active ~ .menu-auth-box,
.submenu.active ~ .menu-social-bar,
.sub-submenu.active ~ .menu-social-bar {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s; 
}

/* ======================= MOBILE FIXES ======================= */
@media (max-width: 768px) {
    /* Stack Auth Box Buttons vertically on mobile */
    .menu-auth-box {
        flex-direction: column; 
        max-width: 300px;
        margin: 0px auto 0px;
    }
    .btn-menu-auth {
        width: 100%;
        font-size: 1rem;
    }
    
    /* Hide Social Bar on smaller screens to prevent layout issues */
    .menu-social-bar {
        display: none; 
    }
}

/* ======================= MENU VISUALIZATION AREA STYLING (IMAGE 2 DESIGN) ======================= */

/* Red Box wali khali jagah, jahan design fit hoga */
.menu-visual-area {
    /* flex-grow: 1 bachi hui poori vertical jagah dega */
    flex-grow: 1; 
    display: flex;
    position: absolute; 
    z-index: 0;
	justify-content: center;
    align-items: center;
    pointer-events: none;
	top: 0;
    left: 0;
    width: 100%; 
    height: 100%;
}

/* Canvas ko menu-visual-area ke andar poori jagah lene do */
.menu-visual-area #visual-line-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Center-core aur ring-links se peeche rakho */
}

/* Central Square (Image 2 ke beech wala chaukore box) */
.center-core {
    position: relative; 
    width: 150px; 
    height: 150px;
    background-color: #1a1a2e; /* Dark background */
    border-radius: 50%; 
	background: radial-gradient(circle, rgba(0,255,255,0.3), rgba(0,0,0,1));
    border: 3px solid #00FFFF; /* Neon blue border */
    box-shadow:
    0 0 25px #00f7ff,
    0 0 50px #00f7ff,
    0 0 80px #00f7ff;
  animation: pulse 2.5s infinite ease-in-out;
    z-index: 10;
}

/* Animated Ring jahan Social Icons position honge */
.visual-link-ring {
    position: absolute;
    width: 450px; /* Circular path ka diameter */
    height: 450px;
    top: 50%;
    left: 50%;
    /* Ring ko center mein rakho aur rotate karo */
    transform: translate(-50%, -50%) rotate(0deg); 
    animation: menuRingRotate 30s linear infinite; /* Rotation animation */
    
    /* Dotted Circle Outline - Image 2 mein jo circular line hai */
    border: 1px dashed rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    z-index: 5; 
}

/* style.css mein .visual-link-ring ke niche jodein */

.visual-ring-2, .visual-ring-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 255, 0.15); /* Lighter border */
    z-index: 4; /* Icons aur Ring 1 se peeche */
    pointer-events: none;
}

/* Ring 2: Thoda bada aur alag speed */
.visual-ring-2 {
    width: 600px; 
    height: 600px;
    transform: translate(-50%, -50%) rotate(0deg);
    animation: menuRingRotate 45s linear infinite reverse; /* Ulti disha mein ghumao */
}

/* Ring 3

/* Har ek Social Icon jo ring par position hoga */
.ring-link {
    position: absolute;
    color: #00FFFF; /* Neon blue color */
    font-size: 20px;
    width: 35px; /* Icon ka size */
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #00FFFF;
    box-shadow: 0 0 5px #00FFFF;
    background-color: #1a1a2e; /* Dark background */
    text-decoration: none;
    z-index: 15; /* Icons ko sabse upar rakho */
    
    /* Ring ke ulta ghumao taaki icon seedha rahe */
    transform: rotate(0deg); 
    animation: counterRotateIcons 30s linear infinite; 
}

/* Icon ki Positioning (5 Icons) */
/* 0, 90, 180, 270 degrees ke kareeb position kiya gaya hai */
.link-f { top: -17.5px; left: 50%; transform: translateX(-50%) rotate(0deg); } /* Top Center */
.link-l { bottom: -17.5px; left: 50%; transform: translateX(-50%) rotate(0deg); } /* Bottom Center */
.link-i { top: 50%; right: -17.5px; transform: translateY(-50%) rotate(0deg); } /* Right Center */
.link-y { top: 50%; left: -17.5px; transform: translateY(-50%) rotate(0deg); } /* Left Center */
.link-t { top: 15%; right: 15%; } /* Thoda diagonally adjust kiya */


/* Animation Keyframes */
@keyframes menuRingRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes counterRotateIcons {
    /* Isse icon ghoomte hue ring par seedhe rahenge */
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}




.section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  
}


/* FORCE fixed UI on top of fullpage (high priority) */
.main-header,
.fixed-social-bar,
.hero-auth-box,
.menu-toggle {
    position: fixed;
    z-index: 99999 !important;
    pointer-events: auto !important;
}


/* position anchors — tweak values if your layout needs micro-adjust */
.main-header { top: 0; left: 0; right: 0; }
.fixed-social-bar { top: 310px; right: 8px; }
.hero-auth-box { bottom: 30px; left: 50%; transform: translateX(-50%); }


/* ensure pointer interactions still work */
.main-header * , .fixed-social-bar * , .hero-auth-box * { pointer-events: auto !important; }

/*-------------------------------- text scroll reveal moving -------------*/



.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0px);
}

/*---------------------------------Service Section -------------------------*/

#premium-services { 
    background: #02050a; 
    overflow: hidden; 
    height: 100vh !important; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-compact-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1300px;
    height: 85vh; 
    margin: 0 auto;
}

/* Digital Nexus Ring */
.services-visual { flex: 1; position: relative; height: 100%; display: flex; align-items: center; }
.digital-nexus { position: relative; width: 400px; height: 400px; margin: 0 auto; }

#particleCanvas {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 150%; height: 150%;
    pointer-events: none;
}

.nexus-core {
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(0, 234, 255, 0.2);
    box-shadow: inset 0 0 50px rgba(0, 234, 255, 0.1);
}

.core-inner-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100px; height: 100px;
    background: #00eaff;
    filter: blur(60px);
    opacity: 0.5;
}

.orbit-ring-main {
    position: absolute;
    width: 100%; height: 100%;
    animation: rotate 20s linear infinite;
}

.node {
    position: absolute;
    width: 55px; height: 55px;
    background: #050a12;
    border: 2px solid #00eaff;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #00eaff;
    box-shadow: 0 0 20px rgba(0, 234, 255, 0.5);
    animation: counter-rotate 20s linear infinite;
}

.n-1 { top: -27px; left: 50%; transform: translateX(-50%); }
.n-2 { bottom: -27px; left: 50%; transform: translateX(-50%); }
.n-3 { left: -27px; top: 50%; transform: translateY(-50%); }
.n-4 { right: -27px; top: 50%; transform: translateY(-50%); }

/* Content Grid */
.services-info { flex: 1.2; padding-left: 50px; }
.vision-title.compact { font-size: 2.5rem; color: #fff; margin-bottom: 30px; }

.compact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.c-card {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid #00eaff;
    padding: 20px;
    border-radius: 5px;
    transition: 0.3s;
}

.c-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: 8px; }
.c-card p { color: #8892b0; font-size: 0.85rem; line-height: 1.4; }

@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes counter-rotate { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

/* =================================================== */
/* MOBILE VIEW CODE (COMPLETE & FIXED)                 */
/* =================================================== */
@media (max-width: 991px) {
    #premium-services {
        height: 100vh !important;
        padding: 60px 20px !important;
    }

    .services-compact-container {
        flex-direction: column !important;
        height: 100% !important;
        justify-content: center !important;
        gap: 20px;
    }

    .services-visual {
        flex: 0 0 auto !important;
        height: 250px !important;
        width: 100% !important;
    }

    .digital-nexus {
        width: 200px !important;
        height: 200px !important;
    }

    .node {
        width: 38px !important;
        height: 38px !important;
        font-size: 14px !important;
    }

    .n-1 { top: -19px; } .n-2 { bottom: -19px; } .n-3 { left: -19px; } .n-4 { right: -19px; }

    .services-info {
        flex: 0 0 auto !important;
        padding-left: 0 !important;
        text-align: center;
    }

    .vision-title.compact {
        font-size: 1.5rem !important;
        margin-bottom: 20px !important;
    }

    .compact-grid {
        grid-template-columns: 1fr !important; /* Mobile pe 1 column */
        gap: 10px !important;
    }

    .c-card {
        padding: 12px 15px !important;
    }

    .c-card h3 { font-size: 1rem !important; }
    .c-card p { font-size: 0.75rem !important; }
}




/* -------------- Working Process Section ---------------------- 

/* --- Master Process Section with Flowing Background --- */
#process-nexus-v-final {
    background: #000;
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center; 
    justify-content: center;
}

/* Right to Left Flowing Waves */
.digital-wave-bg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 45%; 
    z-index: 1;
}

.wave-svg-container {
    width: 100%;
    height: 100%;
    min-height: 150px;
}

.wave-parallax > use {
    animation: move-wave 20s cubic-bezier(.55,.5,.45,.5) infinite;
}
.wave-parallax > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; }
.wave-parallax > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.wave-parallax > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }

@keyframes move-wave {
    0% { transform: translate3d(-90px,0,0); }
    100% { transform: translate3d(85px,0,0); }
}

/* Content Area Center Alignment */
.process-master-wrapper {
    width: 100%;
    max-width: 1400px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 60px; /* Equal spacing on both sides */
}

.nexus-flow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.nexus-unit { text-align: center; flex: 0 0 auto; }

/* Large Rotating Ring Design */
.ring-box {
    width: 175px;
    height: 175px;
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.ring-rotating-border {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed rgba(0, 234, 255, 0.4);
    animation: spinRing 12s linear infinite;
}

@keyframes spinRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ring-core {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid #00eaff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(0, 234, 255, 0.3);
    z-index: 2;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ring-core i { font-size: 2.6rem; color: #fff; text-shadow: 0 0 10px #00eaff; }

/* Hover Effect */
.nexus-unit:hover .ring-core {
    transform: scale(1.12);
    box-shadow: 0 0 50px #00eaff;
    background: rgba(0, 234, 255, 0.1);
}

.nexus-unit p {
    color: #fff;
    margin-top: 25px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.2px;
}

/* Active Sound-Wave Arrow Bridge */
.nexus-bridge {
    flex: 1;
    max-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -45px;
}

.wave-track {
    height: 2px;
    background: rgba(0, 234, 255, 0.15);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.wave-pulse {
    position: absolute;
    width: 50px;
    height: 100%;
    background: linear-gradient(90deg, transparent, #00eaff, transparent);
    animation: flowPulse 1.2s infinite linear;
}

@keyframes flowPulse {
    0% { left: -100%; }
    100% { left: 100%; }
}

.nexus-bridge i { color: #00eaff; font-size: 1rem; margin-left: -5px; }

/* Responsive Styling */
@media (max-width: 991px) {
    .nexus-flow-container { flex-direction: column; gap: 40px; }
    .nexus-bridge { transform: rotate(90deg); margin: 25px 0; width: 40px; }
    #process-nexus-v-final { height: auto; padding: 120px 20px; }
}

/*-----------------------Digital Performance Section----------------------*/

/* ==========================================================================
   1. MAIN SECTION & BACKGROUND
   ========================================================================== */
.perf-global-final {
    background: #010409 !important;
    position: relative;
    overflow: hidden;
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
}

.perf-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.5;
}

#globalNetCanvas {
    width: 100%;
    height: 100%;
    display: block;
	transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

/* ==========================================================================
   2. LAYOUT & TYPOGRAPHY (HEADING)
   ========================================================================== */
.perf-content-area {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    /* Heading Position: 10px up fix */
    margin-top: 80px; 
}

.perf-shining-title {
    color: #ffffff !important;
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: none;
    margin: 0;
    text-shadow: 0 0 20px rgba(0, 247, 255, 0.6);
}

.perf-glow-divider {
    width: 65px;
    height: 3px;
    background: #00f7ff;
    margin: 15px auto;
    box-shadow: 0 0 15px #00f7ff;
    border-radius: 10px;
}

.perf-sub-text {
    color: #00f7ff;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 50px;
}

/* ==========================================================================
   3. STATS CARDS (DESKTOP VIEW)
   ========================================================================== */
.perf-stats-flex {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 30px;
    width: 100%;
}

.perf-stat-card {
    width: 230px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.p-glass-inner {
    background: rgba(0, 247, 255, 0.02); 
    border: 1.5px solid #00f7ff !important;
	box-shadow: inset 0 0 10px rgba(0, 247, 255, 0.1);
    border-radius: 16px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    transition: all 0.4s ease;
}

/* BOX HIGHLIGHT EFFECT */
.perf-stat-card:hover .p-glass-inner {
    background: rgba(0, 247, 255, 0.1);
    border-color: #00f7ff;
    box-shadow: 0 0 35px rgba(0, 247, 255, 0.4);
    transform: translateY(-10px);
}

/* Text: Bold & Fully White */
.p-hint-bold {
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    opacity: 1 !important;
}

/* Number & Symbol (Side-by-Side) */
.p-num-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.p-num {
    color: #ffffff !important;
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
}

.p-plus {
    color: #ffffff !important;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 8px; /* Alignment with number base */
}

/* ==========================================================================
   4. ANIMATED WIRE SYSTEM (CURRENT FLOW)
   ========================================================================== */
.p-bottom-base {
    height: 8px;
    background: #080808;
    width: 104%;
    margin-left: -2%;
    border-radius: 0 0 12px 12px;
    border-bottom: 2px solid rgba(0, 247, 255, 0.3);
}

.p-wire-vertical {
    width: 4px;
    height: 45px;
    background: rgba(0, 247, 255, 0.1);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.p-light-spark {
    position: absolute;
    width: 100%;
    height: 25px;
    background: linear-gradient(to bottom, transparent, #00f7ff, transparent);
    animation: sparkVertical 2s infinite linear;
}

.perf-cable-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 5px;
}

.p-cable-top, .p-cable-bottom {
    background: #050505;
    border: 1.5px solid rgba(0, 247, 255, 0.4);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.p-cable-top { width: 100%; height: 14px; }
.p-cable-bottom { width: 65%; height: 9px; }

/* Current Flow (The Beam) */
.p-beam {
    position: absolute;
    width: 400px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,247,255,0.3), #fff, rgba(0,247,255,0.3), transparent);
    filter: blur(2px);
    animation: flowHorizontal 4s infinite linear;
}
.reverse { animation-direction: reverse; }

/* Blinking Dots */
.p-blinking-dot {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #00f7ff;
    border-radius: 50%;
    box-shadow: 0 0 12px #00f7ff;
    animation: dotBlink 1.5s infinite ease-in-out;
}
.dot-1 { left: 15%; animation-delay: 0s; }
.dot-2 { left: 85%; animation-delay: 0.5s; }
.dot-3 { left: 50%; animation-delay: 1s; }

/* ==========================================================================
   5. KEYFRAMES
   ========================================================================== */
@keyframes sparkVertical { 0% { top: -25px; } 100% { top: 100%; } }
@keyframes flowHorizontal { 0% { left: -400px; } 100% { left: 100%; } }
@keyframes dotBlink { 
    0%, 100% { opacity: 0.3; transform: translateY(-50%) scale(0.8); }
    50% { opacity: 1; transform: translateY(-50%) scale(1.2); }
}

/* ==========================================================================
   6. MOBILE VIEW (RESPONSIVE)
   ========================================================================== */
@media (max-width: 991px) {
    .perf-shining-title { font-size: 2rem; }
    .perf-stats-flex {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .perf-stat-card { width: 100%; max-width: 300px; }
    .p-wire-vertical, .perf-cable-box { display: none; } /* Hide cables on mobile for clean look */
    .perf-content-area { margin-top: 0; padding-top: 80px; }
    .p-glass-inner { height: 120px; }
    .p-num { font-size: 2.2rem; }
}

/*------------------------------------Footer--------------------------------*/


.footer-section {
  position: relative;
  background: #020c16;
  overflow: hidden;
  padding: 80px 60px;
  padding-top: 20px !important;
  padding-bottom: 180px !important;
  
}

/* World Map BG */
.footer-bg {
  position: absolute;
  inset: 0;
  background: url("http://digitallive.in/image/bgfooter.webp") center/cover no-repeat;
  animation: zoomMove 18s ease-in-out infinite alternate;
  opacity: 0.25;
  z-index: 1;
}

/* Zoom animation */
@keyframes zoomMove {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.1) translateY(-30px); }
}

/* Content */
.footer-content {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  color: #fff;
  
}

/* Headings Glow */
.glow {
  color: #fff;
  text-shadow: 0 0 8px rgba(0,229,255,0.6),
               0 0 18px rgba(0,229,255,0.4);
}

/* AI Tech Form */
.ai-form input,
.ai-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #00e5ff;
  padding: 10px;
  color: #fff;
  margin-bottom: 15px;
  outline: none;
  transition: all 0.3s ease;
}

.ai-form input:focus,
.ai-form textarea:focus {
  border-color: #00ffff;
  box-shadow: 0 0 8px rgba(0,229,255,0.5);
}

.ai-form button {
  background: linear-gradient(90deg,#00e5ff,#0088ff);
  border: none;
  padding: 12px;
  color: #000;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}

.ai-form button:hover {
  box-shadow: 0 0 20px rgba(0,229,255,0.8);
  transform: scale(1.05);
}

/* Divider */
.footer-divider {
  height: 1px;
  width: 80%;
  background: linear-gradient(to right, transparent, #00e5ff, transparent);
  margin: 50px auto 25px;
  z-index: 3;
  position: relative;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  z-index: 3;
  position: relative;
}

.footer-links a {
  color: #00e5ff;
  margin: 0 30px;
  text-decoration: none;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.footer-copy {
	font-size :12px;
}

/* Responsive */
@media(max-width:900px){
  .footer-content {
    flex-direction: column;
  }
}

/*-----------loginpage------------*/
/* ================= LOGIN PAGE FIXED STYLE ================= */

body.login-only-page {
  background: radial-gradient(circle at center, #0e1625 5%, #03050a 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Center Logo */
.login-header-only {
  text-align: center;
  padding: 10px 0 10px;
}

.login-header-only img {
  max-width: 180px;
  height: auto;
}

/* Login Wrapper */
.login-page-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
   flex-direction: column;
}

/* AI Login Box */
.ai-login-box {
  width: 100%;
  max-width: 420px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border-radius: 18px;
  padding: 40px 35px;
  border: 1.5px solid rgba(0,255,255,0.25);
  box-shadow: 0 0 45px rgba(0,255,255,0.4);
  text-align: center;
}

/* Title */
.ai-title {
  font-family: 'Orbitron', sans-serif;
  color: #00f7ff;
  margin-bottom: 30px;
}

/* Fields */
.ai-field {
  text-align: left;
  margin-bottom: 18px;
}

.ai-field label {
  color: #aaa;
  font-size: 12px;
  display: block;
  margin-bottom: 6px;
}

.ai-field input,
.ai-field select {
  width: 100%;
  padding: 12px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(0,255,255,0.35);
  border-radius: 8px;
  color: #fff;
  outline: none;
}

/* Options */
.ai-options {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin: 12px 0 20px;
  color: #aaa;
}

.ai-options a {
  color: #00f7ff;
  text-decoration: none;
}

/* Button */
.ai-login-btn {
  width: 100%;
  padding: 14px;
  border: none;
  background: linear-gradient(135deg, #00f7ff, #0077ff);
  color: #000;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: 1px;
}

.ai-login-btn:hover {
  box-shadow: 0 0 20px rgba(0,255,255,0.7);
}

/* Footer */
.login-footer {
  margin-top: -25px;
  position: relative;
  bottom: 0;
  width: 100%;
  text-align: center;
}

.login-footer .footer-links a {
  margin: 0 10px;
  font-size: 12px;
}
.ai-footer-links a {
  color: #00f7ff;
  font-size: 13px;
  text-decoration: none;
}

.ai-footer-links a:hover {
  text-decoration: underline;
}

.lg-divider{
  height: 1px;
  width: 80%;
  background: linear-gradient(to right, transparent, #00e5ff, transparent);
  margin: 50px auto 25px;
  z-index: 3;
  position: relative;
  margin-top: 10px;
}
/*----------------aff_signup------------------*/


.dl-signup-section {
  min-height: 100vh;
  padding: 100px 20px;
  background: radial-gradient(circle at top, #0b1620, #020b12);
}

.dl-signup-box {
  max-width: 680px;
  margin: auto;
  background: rgba(15,25,35,0.97);
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 0 45px rgba(0,255,255,0.3);
  border: 1px solid rgba(0,255,255,0.25);
}

.dl-header-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.dl-header-inline img {
  height: 50px;
}

.dl-header-inline h2 {
  color: #00f7ff;
  font-family: 'Orbitron', sans-serif;
  margin: 0;
}

.dl-glow-line {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00f7ff, transparent);
  box-shadow: 0 0 12px #00f7ff;
  margin: 15px 0 30px;
}

.dl-field {
  margin-bottom: 14px;
}

.dl-field label {
  font-size: 12px;
  color: #aaa;
  display: block;
  margin-bottom: 5px;
}

.dl-field input,
.dl-field select,
.dl-field textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #00f7ff40;
  background: #020b12;
  color: #fff;
}

textarea {
  resize: none;
  height: 80px;
}

.dl-row {
  display: flex;
  gap: 14px;
}

.dl-row .dl-field {
  flex: 1;
}

.dl-traffic-box {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.dl-chip {
  background: #00f7ff20;
  border: 1px solid #00f7ff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.dl-otp-row {
  display: flex;
  gap: 10px;
}

.dl-otp-row button,
#dlSubmitBtn,
.dl-field button {
  background: linear-gradient(90deg,#00f7ff,#007bff);
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
  color: #000;
}

#dlSubmitBtn {
  width: 100%;
  margin-top: 15px;
}

#dlSubmitBtn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.dl-otp-area {
  display: none;
}

@media(max-width:600px){
  .dl-row {
    flex-direction: column;
  }
}
