/* Style One */

/* Set initial section states */
#services { display: block; opacity: 1; }
#about { display: none; opacity: 0; }
#solutions { display: none; opacity: 0; }
#contact { display: none; opacity: 0; }

/* Style Two */

/* About Section Enhanced */
.about {
    background: radial-gradient(circle at top, rgba(10, 10, 20, 0.7) 0%, var(--darker) 80%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.5;
}

/* Style Three */

:root {
    --primary: #00ffaa;
    --primary-dark: #00cc88;
    --secondary: #5028ff;
    --secondary-light: #7760ff;
    --tertiary: #ff3db6;
    --dark: #0a0a14;
    --darker: #050508;
    --light: #ffffff;
    --accent: #ff3860;
    --gradient-blue: linear-gradient(135deg, #0043ff, #26a1ff);
    --gradient-purple: linear-gradient(135deg, #5028ff, #8c7aff);
    --gradient-cyber: linear-gradient(135deg, #00ffaa, #0099ff);
    --neon-shadow: 0 0 15px var(--primary), 0 0 30px rgba(0, 255, 170, 0.5);
    --neon-shadow-blue: 0 0 15px #0099ff, 0 0 30px rgba(0, 153, 255, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--darker);
    color: var(--light);
    overflow-x: hidden;
}

/* Loader Animation - Futuristic Hologram */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 10, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.5s ease-out;
    perspective: 1000px;
}

.loader-hologram {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hologram-container {
    width: 80%;
    max-width: 700px;
    height: 400px;
    position: relative;
    transform-style: preserve-3d;
    animation: hologramFloat 6s ease-in-out infinite;
}

@keyframes hologramFloat {
    0%, 100% { transform: translateY(0) rotateX(5deg); }
    50% { transform: translateY(-20px) rotateX(0deg); }
}

.hologram-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 20px;
    background: radial-gradient(ellipse at center, var(--primary) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0.7;
    animation: baseGlow 2s ease-in-out infinite alternate;
}

@keyframes baseGlow {
    0% { opacity: 0.5; width: 55%; }
    100% { opacity: 0.8; width: 65%; }
}

.hologram-projection {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    animation: projectionRotate 20s linear infinite;
}

@keyframes projectionRotate {
    0% { transform: translate(-50%, -50%) rotateY(0deg) rotateX(20deg); }
    100% { transform: translate(-50%, -50%) rotateY(360deg) rotateX(20deg); }
}

.hologram-sphere {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.sphere-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 170, 0.3);
    box-shadow: 0 0 30px var(--primary);
    animation: gridPulse 4s ease-in-out infinite alternate;
}

.sphere-grid::before, .sphere-grid::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 170, 0.2);
}

.sphere-grid::before {
    transform: rotateX(60deg);
}

.sphere-grid::after {
    transform: rotateY(60deg);
}

@keyframes gridPulse {
    0% { box-shadow: 0 0 20px var(--primary); transform: scale(0.95); }
    100% { box-shadow: 0 0 40px var(--primary); transform: scale(1.05); }
}

.sphere-core {
    position: absolute;
    width: 30%;
    height: 30%;
    top: 35%;
    left: 35%;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 30px var(--primary);
    animation: coreGlow 2s ease-in-out infinite alternate;
}

@keyframes coreGlow {
    0% { box-shadow: 0 0 20px var(--primary); opacity: 0.8; }
    100% { box-shadow: 0 0 40px var(--primary); opacity: 1; }
}

.sphere-scan {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(transparent 0%, rgba(0, 255, 170, 0.5) 50%, transparent 100%);
    opacity: 0.5;
    animation: sphereScan 3s ease-in-out infinite;
}

@keyframes sphereScan {
    0%, 100% { transform: translateY(-50%) scaleY(0.2); opacity: 0; }
    50% { transform: translateY(0) scaleY(1); opacity: 0.5; }
}

.hologram-rings {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 60px;
}

.ring {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0;
    animation: ringExpand 3s ease-in-out infinite;
}

.ring1 { animation-delay: 0s; }
.ring2 { animation-delay: 1s; }
.ring3 { animation-delay: 2s; }

@keyframes ringExpand {
    0% { width: 50px; height: 10px; opacity: 0.8; border-color: var(--primary); }
    100% { width: 300px; height: 60px; opacity: 0; border-color: transparent; }
}

.data-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.data-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: particleFlow 3s ease-in-out infinite;
}

@keyframes particleFlow {
    0% { opacity: 0; transform: translateY(100px) scale(0); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-100px) scale(1.5); }
}

.loading-status {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    text-align: center;
}

.loading-text {
    font-size: 14px;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0 0 10px var(--primary);
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% { text-shadow: 0 0 5px var(--primary); color: rgba(0, 255, 170, 0.7); }
    100% { text-shadow: 0 0 15px var(--primary); color: var(--primary); }
}

.loading-bar {
    width: 80%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0 auto 15px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.loading-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    box-shadow: 0 0 10px var(--primary);
    animation: progressLoad 4s ease-in-out forwards;
}

@keyframes progressLoad {
    0% { width: 0%; }
    70% { width: 70%; }
    100% { width: 100%; }
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    padding: 4px 10px;
    background-color: rgba(5, 5, 10, 0.8);
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 10px;
    border-radius: 50px;
    opacity: 0;
    animation: badgeAppear 0.5s ease forwards;
}

.badge:nth-child(1) { animation-delay: 1s; }
.badge:nth-child(2) { animation-delay: 1.5s; }
.badge:nth-child(3) { animation-delay: 2s; }
.badge:nth-child(4) { animation-delay: 2.5s; }

@keyframes badgeAppear {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.scan-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(0, 0, 0, 0.05) 50%
    );
    background-size: 100% 4px;
    z-index: 10;
    pointer-events: none;
    animation: scanLineScroll 4s linear infinite;
    opacity: 0.2;
}

@keyframes scanLineScroll {
    0% { background-position: 0 0; }
    100% { background-position: 0 100%; }
}

@keyframes pulse {
    0% { opacity: 0.7; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1); }
    100% { opacity: 0.7; transform: scale(0.98); }
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background-color: rgba(10, 10, 20, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light);
    position: relative;
    display: flex;
    align-items: center;
}

.logo::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    left: -15px;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
    color: var(--darker);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 255, 170, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 255, 170, 0.5);
}

/* Hero Section - Enhanced for more futuristic look */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 3rem;
    background: radial-gradient(circle at bottom, rgba(10, 10, 20, 0.8) 0%, rgba(5, 5, 8, 1) 80%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    width: 200%;
    height: 200%;
    background: 
        linear-gradient(rgba(80, 40, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(80, 40, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(800px) rotateX(60deg) translateZ(0);
    transform-origin: center bottom;
    animation: grid-move 20s linear infinite;
    opacity: 0.7;
}

.hero-grid::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--darker), transparent);
}

@keyframes grid-move {
    0% { transform: perspective(800px) rotateX(60deg) translateZ(0) translateY(0); }
    100% { transform: perspective(800px) rotateX(60deg) translateZ(0) translateY(50px); }
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 50%;
    opacity: 0.7;
    box-shadow: 0 0 5px var(--primary);
    animation: float 15s linear infinite;
}

.particle:nth-child(even) {
    background-color: var(--secondary-light);
    box-shadow: 0 0 5px var(--secondary-light);
}

.particle:nth-child(3n) {
    background-color: var(--tertiary);
    box-shadow: 0 0 5px var(--tertiary);
}

@keyframes float {
    0% { transform: translateY(120vh) translateX(0) scale(0); opacity: 0; }
    10% { opacity: 0.7; transform: translateY(100vh) translateX(10px) scale(1); }
    90% { opacity: 0.7; }
    100% { transform: translateY(-20vh) translateX(30px) scale(0.5); opacity: 0; }
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 10;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.hero-text::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 60px;
    height: 60px;
    border-top: 2px solid var(--primary);
    border-left: 2px solid var(--primary);
    opacity: 0.7;
    animation: cornerPulse 3s ease-in-out infinite;
}

.hero-text::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 60px;
    height: 60px;
    border-bottom: 2px solid var(--tertiary);
    border-right: 2px solid var(--tertiary);
    opacity: 0.7;
    animation: cornerPulse 3s ease-in-out infinite reverse;
}

@keyframes cornerPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.9; }
}

.hero-text h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    background: linear-gradient(90deg, var(--light) 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.hero-text h1 span {
    position: relative;
    display: inline-block;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--neon-shadow);
}

.hero-text h1 span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--primary), transparent);
    bottom: -5px;
    left: 0;
    opacity: 0.3;
    animation: glowLine 3s infinite alternate;
}

@keyframes glowLine {
    0% { opacity: 0.2; width: 90%; }
    100% { opacity: 0.5; width: 100%; }
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    backdrop-filter: blur(5px);
    padding: 15px;
    border-radius: 5px;
    background: rgba(5, 5, 8, 0.3);
    border-left: 3px solid var(--primary);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    position: relative;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.cta-button {
    background: var(--gradient-cyber);
    color: var(--darker);
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--neon-shadow);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 0;
    height: 120%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-30deg);
    transition: all 0.4s ease;
    z-index: -1;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 170, 0.5);
}

.cta-button:hover::before {
    width: 120%;
}

.hero-cta .secondary-button {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--primary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-cta .secondary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 255, 170, 0.1), transparent);
    transition: all 0.4s ease;
    z-index: -1;
}

.hero-cta .secondary-button:hover {
    border-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-5px);
}

.hero-cta .secondary-button:hover::before {
    width: 120%;
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    height: 500px;
}

.sphere-container {
    position: relative;
    width: 350px;
    height: 350px;
    transform-style: preserve-3d;
    animation: rotateSphere 25s linear infinite;
}

@keyframes rotateSphere {
    0% { transform: rotateY(0) rotateX(10deg); }
    100% { transform: rotateY(360deg) rotateX(10deg); }
}

.sphere-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 255, 170, 0.5);
    border-radius: 50%;
    transform-style: preserve-3d;
    box-shadow: 0 0 15px rgba(0, 255, 170, 0.3);
}

.sphere-ring:nth-child(1) { 
    transform: rotateY(0deg); 
    border-color: rgba(0, 255, 170, 0.6);
}
.sphere-ring:nth-child(2) { 
    transform: rotateY(30deg); 
    border-color: rgba(80, 40, 255, 0.6);
}
.sphere-ring:nth-child(3) { 
    transform: rotateY(60deg); 
    border-color: rgba(255, 61, 182, 0.6);
}
.sphere-ring:nth-child(4) { 
    transform: rotateY(90deg);
    border-color: rgba(0, 153, 255, 0.6);
}
.sphere-ring:nth-child(5) { 
    transform: rotateX(30deg);
    border-color: rgba(0, 255, 170, 0.4);
}
.sphere-ring:nth-child(6) { 
    transform: rotateX(60deg);
    border-color: rgba(80, 40, 255, 0.4);
}

.sphere-core {
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 30%, var(--primary), var(--primary-dark));
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 40px var(--primary);
    animation: coreExpand 4s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes coreExpand {
    0% { transform: translate(-50%, -50%) scale(0.8); box-shadow: 0 0 30px var(--primary); }
    100% { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 0 50px var(--primary), 0 0 80px rgba(0, 255, 170, 0.3); }
}

.data-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.data-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    transform-style: preserve-3d;
    box-shadow: 0 0 10px var(--primary);
    animation: nodePulse 3s infinite alternate;
}

.data-node:nth-child(even) {
    background-color: var(--secondary-light);
    box-shadow: 0 0 10px var(--secondary-light);
}

.data-node:nth-child(3n) {
    background-color: var(--tertiary);
    box-shadow: 0 0 10px var(--tertiary);
    animation-delay: 0.3s;
}

@keyframes nodePulse {
    0% { transform: scale(0.8); opacity: 0.7; }
    100% { transform: scale(1.2); opacity: 1; }
}

/* Radial lines connecting core to nodes */
.data-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, var(--primary), transparent);
    transform-origin: 0 0;
    opacity: 0.4;
    animation: linePulse 3s infinite alternate;
}

@keyframes linePulse {
    0% { opacity: 0.2; }
    100% { opacity: 0.6; }
}

/* Additional holographic elements */
.holo-scatter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, var(--primary) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.1;
    animation: scatterFloat 20s linear infinite;
}

@keyframes scatterFloat {
    0% { background-position: 0 0; }
    100% { background-position: 30px 30px; }
}

/* Navigation Enhancements */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background-color: rgba(5, 5, 8, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 255, 170, 0.2);
    transition: all 0.4s ease;
}

nav.scrolled {
    padding: 1rem 3rem;
    background-color: rgba(5, 5, 8, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--light);
    position: relative;
    display: flex;
    align-items: center;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.logo::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    left: -18px;
    animation: blink 2s infinite;
    box-shadow: 0 0 10px var(--primary);
}

@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.8); }
}

.logo span {
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

/* Navigation Enhanced */
.nav-link {
    color: var(--light);
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gradient-cyber);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    width: 100%;
}

/* Services Section Enhanced */
.services {
    background: radial-gradient(circle at center, rgba(10, 10, 20, 0.7) 0%, var(--darker) 80%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(80, 40, 255, 0.05) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(80, 40, 255, 0.05) 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, rgba(80, 40, 255, 0.05) 75%), 
        linear-gradient(-45deg, transparent 75%, rgba(80, 40, 255, 0.05) 75%);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(10, 10, 20, 0.5);
    border-left: 3px solid var(--primary);
    padding: 2.5rem;
    border-radius: 10px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 170, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 255, 170, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    transform: scale(0.5);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 255, 170, 0.3);
    border-color: var(--tertiary);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    opacity: 0.7;
    transform: scale(1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--gradient-cyber);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
    z-index: -1;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon::after {
    width: 70px;
    height: 70px;
    opacity: 0.4;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--light);
    position: relative;
    display: inline-block;
}

.service-card h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--primary);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.service-card:hover h3::after {
    width: 50px;
    background: var(--tertiary);
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.8rem;
    position: relative;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-right: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.service-link::after {
    content: '→';
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--tertiary);
}

.service-link:hover::after {
    transform: translateX(5px);
}

/* Common Section Styles Enhanced */
.section-content {
    padding: 8rem 3rem;
    position: relative;
    overflow: hidden;
    display: none; /* Hide all sections by default */
}

#services {
    display: block; /* Show services by default */
}

.section-title {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    text-transform: uppercase;
    color: var(--light);
    letter-spacing: 1px;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.section-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    -webkit-text-stroke: 1px var(--primary);
    opacity: 0.3;
    z-index: -1;
    transform: translateY(5px);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 4px;
    background: var(--gradient-cyber);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: var(--neon-shadow);
}

.about-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text {
    flex: 1.3;
    position: relative;
}

.about-text::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 40px;
    height: 40px;
    border-top: 2px solid var(--secondary);
    border-left: 2px solid var(--secondary);
    opacity: 0.7;
}

.about-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.about-text h3::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: var(--primary);
    bottom: -10px;
    left: 0;
}

.about-text p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-visual {
    flex: 0.7;
    position: relative;
    min-height: 450px;
}

.cyber-shield {
    position: relative;
    width: 300px;
    height: 350px;
    margin: 0 auto;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.shield-outer {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), transparent);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: rotate-shield 15s linear infinite;
    box-shadow: 0 0 30px rgba(80, 40, 255, 0.3);
}

.shield-inner {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    background: linear-gradient(135deg, var(--primary-dark), transparent);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: pulse 2s ease-in-out infinite alternate;
    box-shadow: 0 0 20px rgba(0, 255, 170, 0.3);
}

.shield-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: bold;
    color: var(--light);
    text-shadow: 0 0 15px var(--primary);
    z-index: 1;
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { text-shadow: 0 0 10px var(--primary); }
    100% { text-shadow: 0 0 25px var(--primary), 0 0 40px rgba(0, 255, 170, 0.5); }
}

@keyframes rotate-shield {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.tech-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(circle, var(--primary) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(15, 15, 25, 0.6), rgba(5, 5, 8, 0.8));
    border-radius: 15px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(0, 255, 170, 0.1), transparent);
    transform: translateX(-100%);
    transition: all 0.6s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 255, 170, 0.2);
}

.stat-item:hover::before {
    transform: translateX(100%);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 170, 0.3);
    position: relative;
}

.stat-number::after {
    content: '+';
    font-size: 1.5rem;
    position: absolute;
    top: 5px;
    right: -15px;
    color: var(--tertiary);
}

.stat-label {
    color: var(--light);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}


.about-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1.2;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.about-text p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.about-visual {
    flex: 0.8;
    position: relative;
    min-height: 400px;
}

.cyber-shield {
    position: relative;
    width: 250px;
    height: 300px;
    margin: 0 auto;
}

.shield-outer {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), transparent);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: rotate-shield 15s linear infinite;
}

.shield-inner {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    background: linear-gradient(135deg, var(--primary-dark), transparent);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: pulse 2s ease-in-out infinite alternate;
}

.shield-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: bold;
    color: var(--light);
    text-shadow: 0 0 10px var(--primary);
}

@keyframes rotate-shield {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.tech-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: rgba(10, 10, 20, 0.5);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 255, 170, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Solutions Section Enhanced */
.solutions {
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.95) 0%, rgba(5, 5, 8, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235028ff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.solutions-tabs {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
}

.tabs-nav::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.tab-btn {
    padding: 1rem 2rem;
    background-color: rgba(10, 10, 20, 0.7);
    border: 1px solid var(--secondary);
    color: var(--light);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(80, 40, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.tab-btn:hover {
    background-color: rgba(80, 40, 255, 0.15);
    box-shadow: 0 0 20px rgba(80, 40, 255, 0.3);
    transform: translateY(-3px);
}

.tab-btn:hover::before {
    left: 100%;
}

.tab-btn.active {
    background: var(--gradient-purple);
    box-shadow: 0 0 25px rgba(80, 40, 255, 0.5);
    border-color: var(--secondary-light);
    color: var(--light);
    transform: translateY(-3px);
}

.tabs-content {
    position: relative;
    min-height: 500px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.7s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.solution-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.solution-info {
    flex: 1.2;
    padding: 2rem;
    background: rgba(10, 10, 20, 0.5);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--secondary);
    position: relative;
    overflow: hidden;
}

.solution-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(80, 40, 255, 0.1), transparent 70%);
    z-index: -1;
}

.solution-info h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-light);
    position: relative;
    display: inline-block;
}

.solution-info h3::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: var(--secondary);
    bottom: -8px;
    left: 0;
}

.solution-info p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1.1rem;
}

.solution-features {
    margin-bottom: 2.5rem;
    list-style: none;
}

.solution-features li {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 2rem;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.solution-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-light);
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.solution-features li:hover {
    color: var(--light);
    border-bottom-color: rgba(80, 40, 255, 0.3);
    padding-left: 2.5rem;
}

.solution-features li:hover::before {
    left: 5px;
    color: var(--primary);
}

.solution-cta {
    background: var(--gradient-purple);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    box-shadow: 0 5px 20px rgba(80, 40, 255, 0.4);
}

.solution-cta:hover {
    box-shadow: 0 8px 25px rgba(80, 40, 255, 0.6);
}

.solution-visual {
    flex: 0.8;
    height: 450px;
    position: relative;
    background: rgba(10, 10, 20, 0.3);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Network Visual Enhanced */
.network-visual {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.7), rgba(5, 5, 8, 0.9));
    overflow: hidden;
}

.network-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(80, 40, 255, 0.05) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.network-node {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: var(--secondary-light);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--secondary);
    animation: nodePulse 3s infinite alternate;
    z-index: 2;
}

.network-node.central {
    width: 40px;
    height: 40px;
    background: var(--gradient-purple);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 30px var(--secondary);
    animation: centralNodePulse 4s infinite alternate;
    z-index: 3;
}

@keyframes centralNodePulse {
    0% { box-shadow: 0 0 20px var(--secondary); transform: translate(-50%, -50%) scale(0.9); }
    100% { box-shadow: 0 0 40px var(--secondary); transform: translate(-50%, -50%) scale(1.1); }
}

.network-connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-light), rgba(80, 40, 255, 0.2));
    transform-origin: 0% 0%;
    z-index: 1;
    animation: connectionPulse 3s infinite alternate;
}

@keyframes connectionPulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

/* Secure Facility Visual Enhanced */
.secure-facility-visual {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.7), rgba(5, 5, 8, 0.9));
    overflow: hidden;
    perspective: 800px;
}

.facility-perimeter {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border: 3px dashed var(--secondary);
    border-radius: 15px;
    animation: perimeterBlink 3s infinite alternate;
    transform: rotateX(20deg);
    transform-style: preserve-3d;
}

@keyframes perimeterBlink {
    0% { border-color: rgba(80, 40, 255, 0.4); box-shadow: 0 0 10px rgba(80, 40, 255, 0.2); }
    100% { border-color: rgba(80, 40, 255, 0.8); box-shadow: 0 0 25px rgba(80, 40, 255, 0.4); }
}

.facility-building {
    position: absolute;
    width: 50%;
    height: 60%;
    top: 30%;
    left: 25%;
    background: var(--gradient-purple);
    border: 2px solid var(--secondary-light);
    box-shadow: 0 0 25px rgba(80, 40, 255, 0.4);
    transform: rotateX(20deg);
    transform-style: preserve-3d;
    z-index: 1;
}

.facility-building::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 25%;
    width: 50%;
    height: 20%;
    background: rgba(80, 40, 255, 0.6);
    transform: skewX(-35deg);
}

.facility-building::after {
    content: '';
    position: absolute;
    top: -20%;
    right: 25%;
    width: 50%;
    height: 20%;
    background: rgba(80, 40, 255, 0.3);
    transform: skewX(35deg);
}

.facility-scanner {
    position: absolute;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    top: 0;
    left: 0;
    box-shadow: 0 0 15px var(--primary);
    animation: scanMove 4s infinite;
    z-index: 2;
}

.facility-scanner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    filter: blur(8px);
}

@keyframes scanMove {
    0% { top: 10%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 90%; opacity: 0; }
}

/* Financial Visual Enhanced */
.financial-visual {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.7), rgba(5, 5, 8, 0.9));
    overflow: hidden;
}

.vault-door {
    position: absolute;
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    background: linear-gradient(45deg, #333, #555);
    border: 5px solid var(--secondary);
    border-radius: 10px;
    transform-style: preserve-3d;
    transform: perspective(800px) rotateY(15deg);
    box-shadow: 10px 0 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.vault-door::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: linear-gradient(45deg, #444, #222);
    border: 3px solid var(--secondary-light);
    border-radius: 5px;
}

.vault-door::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: doorGlint 5s infinite;
}

@keyframes doorGlint {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.vault-lock {
    position: absolute;
    width: 20%;
    height: 20%;
    top: 40%;
    left: 40%;
    background: var(--gradient-purple);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--secondary);
    animation: lockPulse 3s infinite alternate;
    z-index: 1;
}

@keyframes lockPulse {
    0% { box-shadow: 0 0 15px var(--secondary); transform: scale(0.9); }
    100% { box-shadow: 0 0 30px var(--secondary); transform: scale(1.1); }
}

.digital-assets {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.3;
    background-image: 
        linear-gradient(45deg, rgba(80, 40, 255, 0.1) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(80, 40, 255, 0.1) 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, rgba(80, 40, 255, 0.1) 75%), 
        linear-gradient(-45deg, transparent 75%, rgba(80, 40, 255, 0.1) 75%);
    background-size: 20px 20px;
    animation: assetFlow 30s linear infinite;
}

@keyframes assetFlow {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

/* Healthcare Visual Enhanced */
.healthcare-visual {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.7), rgba(5, 5, 8, 0.9));
    overflow: hidden;
    perspective: 800px;
}

.medical-data {
    position: absolute;
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    background: rgba(80, 40, 255, 0.1);
    border-radius: 10px;
    transform: rotateX(20deg);
    transform-style: preserve-3d;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: dataFloat 6s ease-in-out infinite alternate;
}

@keyframes dataFloat {
    0% { transform: rotateX(20deg) translateY(0); }
    100% { transform: rotateX(15deg) translateY(-20px); }
}

.medical-data::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(80, 40, 255, 0.05) 25%, rgba(80, 40, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(80, 40, 255, 0.05) 75%, rgba(80, 40, 255, 0.05) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(80, 40, 255, 0.05) 25%, rgba(80, 40, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(80, 40, 255, 0.05) 75%, rgba(80, 40, 255, 0.05) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
}

.protection-shield {
    position: absolute;
    width: 85%;
    height: 85%;
    top: 7.5%;
    left: 7.5%;
    border: 3px solid var(--secondary);
    border-radius: 50%;
    animation: shieldPulse 4s infinite alternate;
    box-shadow: 0 0 30px rgba(80, 40, 255, 0.3);
}

@keyframes shieldPulse {
    0% { transform: scale(0.95); border-color: rgba(80, 40, 255, 0.5); box-shadow: 0 0 20px rgba(80, 40, 255, 0.2); }
    100% { transform: scale(1.05); border-color: rgba(80, 40, 255, 0.8); box-shadow: 0 0 40px rgba(80, 40, 255, 0.4); }
}

.health-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, var(--secondary-light) 2px, transparent 2px),
                      radial-gradient(circle, var(--primary) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px;
    background-position: 0 0, 25px 25px;
    opacity: 0.2;
    animation: nodesSpin 60s linear infinite;
}

@keyframes nodesSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
    /* background-size: 15px 15px;
} */

/* Healthcare Visual */
.healthcare-visual {
    width: 100%;
    height: 100%;
    position: relative;
}

.medical-data {
    position: absolute;
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    background: rgba(80, 40, 255, 0.2);
    border-radius: 10px;
}

.protection-shield {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border: 3px solid var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite alternate;
}

.health-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, var(--primary) 3px, transparent 3px);
    background-size: 30px 30px;
    opacity: 0.3;
}

/* Contact Section Enhanced */
.contact {
    background: radial-gradient(circle at bottom, rgba(10, 10, 20, 0.7) 0%, var(--darker) 80%);
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300ffaa' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.contact-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 4rem;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    flex: 1;
    padding: 2.5rem;
    background: rgba(10, 10, 20, 0.6);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--primary);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(0, 255, 170, 0.1), transparent 70%);
    z-index: -1;
}

.contact-info h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: var(--primary);
    bottom: -8px;
    left: 0;
}

.contact-info p {
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1.1rem;
    position: relative;
}

.contact-methods {
    margin-bottom: 2.5rem;
    position: relative;
}

.contact-methods::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 10px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateX(10px);
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-method:hover::before {
    opacity: 1;
}

.method-icon {
    flex: 0 0 50px;
    font-size: 1.8rem;
    color: var(--primary);
    margin-right: 15px;
    position: relative;
}

.method-icon::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 170, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all 0.3s ease;
}

.contact-method:hover .method-icon::after {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 170, 0.2);
}

.method-details h4 {
    margin-bottom: 0.7rem;
    color: var(--light);
    font-size: 1.2rem;
    font-weight: 600;
}

.method-details p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.emergency-support {
    padding: 2rem;
    background: linear-gradient(to right, rgba(255, 56, 96, 0.1), transparent);
    border-left: 3px solid var(--accent);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.emergency-support::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 56, 96, 0.1), transparent 70%);
    z-index: -1;
}

.emergency-support h4 {
    color: var(--accent);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    position: relative;
    display: inline-block;
}

.emergency-support h4::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background: var(--accent);
    bottom: -5px;
    left: 0;
}

.emergency-button {
    background: linear-gradient(90deg, var(--accent), #ff2050);
    color: var(--light);
    border: none;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(255, 56, 96, 0.4);
}

.emergency-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.emergency-button:hover {
    background: linear-gradient(90deg, #ff2050, var(--accent));
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 56, 96, 0.6);
}

.emergency-button:hover::before {
    left: 100%;
}

.contact-form-container {
    flex: 1;
    position: relative;
}

.contact-form {
    background: rgba(10, 10, 20, 0.6);
    padding: 2.5rem;
    border-radius: 15px;
    position: relative;
    z-index: 1;
    border-top: 4px solid var(--primary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 255, 170, 0.1), transparent 70%);
    z-index: -1;
    border-radius: 15px;
}

.form-header {
    margin-bottom: 2.5rem;
    position: relative;
}

.form-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.form-header h3 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.form-header h3::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: var(--primary);
    bottom: -8px;
    left: 0;
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.8rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--light);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.form-group:focus-within label {
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 255, 170, 0.05);
    box-shadow: 0 0 15px rgba(0, 255, 170, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(0, 255, 170, 0.3);
}

.form-security-visual {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

.data-packet {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    animation: packetMove 5s infinite;
}

@keyframes packetMove {
    0% { transform: translate(0, 0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translate(300px, 300px); opacity: 0; }
}

.secure-channel {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(0, 255, 170, 0.05) 25%, transparent 25%), 
                     linear-gradient(-45deg, rgba(0, 255, 170, 0.05) 25%, transparent 25%), 
                     linear-gradient(45deg, transparent 75%, rgba(0, 255, 170, 0.05) 75%), 
                     linear-gradient(-45deg, transparent 75%, rgba(0, 255, 170, 0.05) 75%);
    background-size: 20px 20px;
}

/* Footer Enhanced */
footer {
    background: linear-gradient(to bottom, var(--darker), rgba(5, 5, 8, 0.98));
    padding: 5rem 3rem 3rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.5;
}

footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 90%, rgba(0, 255, 170, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 80% 10%, rgba(80, 40, 255, 0.1) 0%, transparent 20%);
    z-index: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-logo {
    flex: 1;
    min-width: 300px;
}

.footer-logo h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.footer-logo h2 span {
    background: var(--gradient-cyber);
    -webkit-background-clip: text;  
    -webkit-text-fill-color: transparent;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 1rem;
    max-width: 400px;
}

.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-links h3 {
    font-size: 1.3rem;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.8rem;
    display: inline-block;
    color: var(--light);
    font-weight: 600;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: var(--gradient-cyber);
    bottom: 0;
    left: 0;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 15px;
    transition: all 0.3s ease;
}

.footer-links li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 0.8rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links li:hover {
    padding-left: 20px;
}

.footer-links li:hover::before {
    opacity: 1;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    padding-top: 3rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.copyright::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: var(--gradient-cyber);
}

/* Styles for select option in "Service of Interest" in Contact section */
/* Styles for the select dropdown */

#service{
    background:transparent ;
    cursor: pointer;
    color: white; 
    padding: 20px;
}
#service option{
    background-color: #050508;
}

#service option:disabled {
    color: gray;
    background-color:#050508a6;
}

.mobile-nav{
    display: none;
}

.company-logo-container{
    height: 50px;
    width: 60px;
}

.company-logo{
    height: 100%;
    width: 100%;
}

nav .nav-link-cp{
    background: transparent;
    color: white;
    font-size: 15px;
    text-decoration: underline;
    border: 0px;
    cursor: pointer;
}

nav .nav-link-cp:hover{
    color: rgb(109, 109, 109);
}
/* Styles for quotes section in about page */
.qoute-section{
    padding: 6rem 10rem;
    /* padding: 6rem 3rem; */
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    gap: 50px;
}

#aboutQuote h3{
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

#aboutQuote h3::after {
    content: '';
    position: absolute;
    width: 20%;
    height: 3px;
    background: var(--primary);
    bottom: -10px;
    left: 0;
}

#aboutQuote .profile-img{
    padding: 1rem;
}

.qoute-section img{
    height: 150px;
    width: 150px;
}

.qoute-one-wrapper, .qoute-two-wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
}

#aboutQuote .qoute{
    padding: 1rem;
}

#aboutQuote .designation{
    font-style: italic;
    padding-top: 2rem;
    display: flex;
    align-items: start;
    position: relative;
}

#aboutQuote .designation::after{
    content: '';
    position: absolute;
    width: 25%;
    height: 3px;
    background: var(--secondary-light);
    bottom: -8px;
    left: 0;
}

.qoute-one-wrapper::before,.qoute-two-wrapper::before{
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 60px;
    height: 60px;
    border-top: 2px solid var(--primary);
    border-left: 2px solid var(--primary);
    opacity: 0.7;
    animation: cornerPulse 3s ease-in-out infinite;
}

.qoute-one-wrapper::after,.qoute-two-wrapper::after{
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    border-bottom: 2px solid var(--tertiary);
    border-right: 2px solid var(--tertiary);
    opacity: 0.7;
    animation: cornerPulse 3s ease-in-out infinite reverse;
}


/* Media Queries Improved */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 3.2rem;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .solution-content,
    .contact-content {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        flex: auto;
        width: 100%;
    }

     /* Code for responsive navbar */

     .desktop-nav{
        display: none;
    }

    nav.scrolled {
        padding: 10px;
    }

    .mobile-nav{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 14px;
    }
    .gp-button{
        display: none;
    }

    .logo{
        transform: scale(0.8);
    }
    .humburger-menu-open{
        display: flex;
        flex-direction: column;
        height: 30px;
        width: 40px;
        justify-content: space-evenly;
        gap: 3px;
        cursor: pointer;

    }
    nav .bar1{
        background-color: rgb(0, 255, 51);
        height: 4px;
        width: 40px;
    }

    .mob-nav-links-close{
        display: none;
        transform: translateX(100%);
        overflow-y: hidden;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
        opacity: 0;
    }

    .mob-nav-links-open{
        width: 100vw;
        background: rgba(10, 10, 20, 0.922);
        height: 100vh;
        position: fixed;
        top: 0;
        right: 0;
        overflow-y: hidden;
        backdrop-filter: blur(30px);
        display: flex;
        flex-direction: column;
        align-items: end;
        transform: translateX(0);
        opacity: 1;
    }

    .nav-wrapper{
        display: flex;
        top: 0;
        right: 0;
        flex-direction: column;
        width: 90vw;
        height: inherit;
    }
    
    .nav-list{
        gap: 20px;
        padding-top: 100px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .humburger-menu-close{
        height: 50px;
        width: 50px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 10px;
        padding: 50px;
        position: relative;
    }
    nav .bar2{
        position: absolute;
        rotate: 45deg;
        background-color: rgb(0, 255, 51);
        height: 4px;
        width: 40px;
        cursor: pointer;

    }
    nav .bar3{
        position: absolute;
        rotate: 135deg;
        background-color: rgb(0, 255, 51);
        height: 4px;
        width: 40px;
        cursor: pointer;

    }
}

@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 3rem;
    }

    .hero-text::before,
    .hero-text::after {
        display: none;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .nav-links {
        display: none;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-content {
        flex-direction: column;
        gap: 3rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    

}

@media (max-width: 600px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .tabs-nav {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 100%;
        text-align: center;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        width: 100%;
    }

   /* Styles for quotes section in about page */
.qoute-section{
    /* padding: 6rem 10rem; */
    padding: 4rem 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    gap: 50px;
}

.qoute-one-wrapper, .qoute-two-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
}
}

@media (max-width: 400px) {
    .mobile-nav{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 10px 5px;
        padding-right:10px ;
    }
}