/* *****************************************************

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

***************************************************** */
body {
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        
        /* Animated Network Background */
        .network-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.15;
            z-index: 0;
        }
        
        .network-line {
            stroke: #00d4ff;
            stroke-width: 1.5;
            fill: none;
            stroke-dasharray: 8,4;
            animation: dash 15s linear infinite;
            filter: drop-shadow(0 0 3px #00d4ff);
        }
        
        .network-dot {
            fill: #00d4ff;
            animation: pulse 3s ease-in-out infinite;
            filter: drop-shadow(0 0 8px #00d4ff);
        }
        
        .moving-dot {
            fill: #ffffff;
            animation: moveDot 6s linear infinite;
            filter: drop-shadow(0 0 10px #00d4ff);
        }
        
        .energy-pulse {
            fill: none;
            stroke: #00ff88;
            stroke-width: 2;
            opacity: 0;
            animation: energyPulse 4s ease-in-out infinite;
            filter: drop-shadow(0 0 5px #00ff88);
        }
        
        .data-stream {
            fill: #ff6b35;
            animation: dataFlow 8s linear infinite;
            filter: drop-shadow(0 0 6px #ff6b35);
        }
        
        @keyframes dash {
            to {
                stroke-dashoffset: -200;
            }
        }
        
        @keyframes pulse {
            0%, 100% { 
                opacity: 0.4; 
                r: 3; 
                filter: drop-shadow(0 0 5px #00d4ff);
            }
            50% { 
                opacity: 1; 
                r: 6; 
                filter: drop-shadow(0 0 15px #00d4ff);
            }
        }
        
        @keyframes moveDot {
            0% { opacity: 0; r: 2; }
            10% { opacity: 1; r: 3; }
            90% { opacity: 1; r: 3; }
            100% { opacity: 0; r: 2; }
        }
        
        @keyframes energyPulse {
            0% { opacity: 0; stroke-width: 1; }
            20% { opacity: 1; stroke-width: 3; }
            80% { opacity: 1; stroke-width: 3; }
            100% { opacity: 0; stroke-width: 1; }
        }
        
        @keyframes dataFlow {
            0% { opacity: 0; }
            20% { opacity: 1; }
            80% { opacity: 1; }
            100% { opacity: 0; }
        }
        
        /* Header */
        .navbar-modern {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            border: none;
            border-radius: 0;
            margin-bottom: 0;
            padding: 15px 0;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-modern.scrolled {
            background: rgba(15, 23, 42, 0.98);
            padding: 10px 0;
        }
        
        .navbar-modern .navbar-brand {
            color: white !important;
            font-size: 24px;
            font-weight: 600;
            padding: 15px 15px;
        }
        
        .navbar-modern .navbar-nav > li > a {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            padding: 15px 20px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-modern .navbar-nav > li > a:hover {
            color: #dc3545 !important;
            background: transparent;
        }
        
        .navbar-modern .navbar-nav > li > a:before {
            content: '';
            position: absolute;
            bottom: 10px;
            left: 50%;
            width: 0;
            height: 2px;
            background: #dc3545;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-modern .navbar-nav > li > a:hover:before {
            width: 60%;
        }
        
        .logo-img {
            height: 40px;
            margin-right: 10px;
        }
        
        /* Hero Section */
        .hero-modern {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
            color: white;
            padding: 150px 0 100px;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .hero-content {
            position: relative;
            z-index: 10;
        }
        
        .hero-modern h1 {
            font-size: 4.2em;
            font-weight: 700;
            margin-bottom: 30px;
            background: linear-gradient(135deg, #fff 0%, #dc3545 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        
        .hero-modern .lead {
            font-size: 1.4em;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 600px;
        }
        
        .btn-modern {
            background: linear-gradient(135deg, #dc3545 0%, #b91c1c 100%);
            color: white;
            border: none;
            padding: 18px 40px;
            font-size: 1.1em;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            margin-right: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
        }
        
        .btn-modern:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(220, 53, 69, 0.4);
            color: white;
        }
        
        .btn-outline-modern {
            background: transparent;
            color: white;
            border: 2px solid rgba(255,255,255,0.3);
            box-shadow: none;
        }
        
        .btn-outline-modern:hover {
            background: rgba(255,255,255,0.1);
            border-color: white;
            color: white;
        }
        
        /* Floating Elements */
        .floating-card {
            position: absolute;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 15px;
            padding: 20px;
            animation: float 6s ease-in-out infinite;
        }
        
        .floating-card:nth-child(1) {
            top: 20%;
            right: 10%;
            animation-delay: 0s;
        }
        
        .floating-card:nth-child(2) {
            top: 60%;
            right: 5%;
            animation-delay: 2s;
        }
        
        .floating-card:nth-child(3) {
            top: 40%;
            left: 5%;
            animation-delay: 4s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        /* Stats Section */
        .stats-modern {
            background: linear-gradient(135deg, #0a0f1c 0%, #1a1f2e 50%, #2a2f3e 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .stat-card {
            background: rgba(0, 20, 40, 0.3);
            backdrop-filter: blur(15px);
            border: 2px solid rgba(0, 212, 255, 0.3);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            margin-bottom: 30px;
            transition: all 0.4s ease;
            color: white;
            position: relative;
            box-shadow: 
                0 0 20px rgba(0, 212, 255, 0.1),
                inset 0 0 20px rgba(0, 212, 255, 0.05);
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            border-color: rgba(0, 212, 255, 1);
            box-shadow: 
                0 0 25px rgba(0, 212, 255, 0.6),
                inset 0 0 15px rgba(0, 212, 255, 0.1);
        }
        

        
        .stat-number {
            font-size: 3.5em;
            font-weight: bold;
            color: #dc3545;
            display: block;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 1.2em;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Pricing Section */
        .pricing-modern {
            background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 50%, #0a0f1c 100%);
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .section-header h2 {
            font-size: 3.2em;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            position: relative;
            text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
        }
        
        .section-header h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #00d4ff 0%, #00ff88 100%);
            transform: translateX(-50%);
            border-radius: 2px;
            box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
        }
        
        .section-header p {
            font-size: 1.3em;
            color: #94a3b8;
            max-width: 700px;
            margin: 20px auto 0;
        }
        
        .pricing-card {
            background: rgba(0, 20, 40, 0.2);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            box-shadow: 
                0 20px 60px rgba(0, 212, 255, 0.1),
                inset 0 0 30px rgba(0, 212, 255, 0.05);
            padding: 50px 40px;
            margin-bottom: 30px;
            position: relative;
            transition: all 0.4s ease;
            border: 2px solid rgba(0, 212, 255, 0.3);
            overflow: hidden;
            color: white;
        }
        
        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 
                0 15px 40px rgba(0, 212, 255, 0.2),
                inset 0 0 20px rgba(0, 212, 255, 0.05);
            border-color: rgba(0, 212, 255, 1);
        }
        
        .pricing-card.featured {
            transform: scale(1.02);
            border-color: rgba(0, 255, 136, 0.5);
            box-shadow: 
                0 10px 30px rgba(0, 255, 136, 0.15),
                inset 0 0 15px rgba(0, 255, 136, 0.05);
        }
        
        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #dc3545 0%, #b91c1c 100%);
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            font-size: 0.9em;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .plan-name {
            font-size: 2em;
            font-weight: bold;
            color: #ffffff;
            margin-bottom: 15px;
            text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
        }
        
        .plan-price {
            font-size: 3.5em;
            font-weight: bold;
            color: #00d4ff;
            margin: 25px 0;
            text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
        }
        
        .plan-price small {
            font-size: 0.35em;
            color: #94a3b8;
        }
        
        .plan-features {
            list-style: none;
            padding: 0;
            margin: 35px 0;
        }
        
        .plan-features li {
            padding: 15px 0;
            border-bottom: 1px solid #f1f5f9;
            position: relative;
            padding-left: 35px;
            font-size: 1.1em;
        }
        
        .plan-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #22c55e;
            font-weight: bold;
            font-size: 1.2em;
        }
        
        .plan-features li:last-child {
            border-bottom: none;
        }
        
        .btn-select {
            background: linear-gradient(135deg, #dc3545 0%, #b91c1c 100%);
            color: white;
            border: none;
            padding: 18px 35px;
            border-radius: 50px;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1.1em;
        }
        
        .btn-select:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
            color: white;
        }
        
        /* Features Section */
        .features-modern {
            background: linear-gradient(135deg, #0a0f1c 0%, #1a1f2e 50%, #0f1419 100%);
            color: white;
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }
        
        .feature-card {
            background: rgba(0, 20, 40, 0.2);
            backdrop-filter: blur(15px);
            border: 2px solid rgba(0, 212, 255, 0.3);
            border-radius: 20px;
            padding: 50px 40px;
            text-align: center;
            margin-bottom: 30px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 
                0 0 20px rgba(0, 212, 255, 0.1),
                inset 0 0 20px rgba(0, 212, 255, 0.05);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            background: rgba(0, 20, 40, 0.3);
            border-color: rgba(0, 212, 255, 1);
            box-shadow: 
                0 0 20px rgba(0, 212, 255, 0.4),
                inset 0 0 15px rgba(0, 212, 255, 0.08);
        }
        
        .feature-icon {
            font-size: 4em;
            color: #00d4ff;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            filter: drop-shadow(0 0 10px #00d4ff);
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.1);
            color: #00ff88;
            filter: drop-shadow(0 0 20px #00ff88);
        }
        
        .feature-card h4 {
            font-size: 1.6em;
            font-weight: bold;
            margin-bottom: 20px;
            text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
        }
        
        .feature-card p {
            font-size: 1.1em;
            opacity: 0.9;
            line-height: 1.6;
        }
        
        /* Infrastructure Section */
        .infrastructure-modern {
            background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 50%, #0a0f1c 100%);
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }
        
        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }
        
        .tech-card {
            background: rgba(0, 20, 40, 0.3);
            backdrop-filter: blur(15px);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 
                0 15px 40px rgba(0, 212, 255, 0.1),
                inset 0 0 20px rgba(0, 212, 255, 0.05);
            transition: all 0.4s ease;
            border: 2px solid rgba(0, 212, 255, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .tech-card:hover {
            transform: translateY(-5px);
            box-shadow: 
                0 10px 30px rgba(0, 212, 255, 0.15),
                inset 0 0 15px rgba(0, 212, 255, 0.05);
            border-color: rgba(0, 212, 255, 1);
        }
        
        .tech-icon {
            font-size: 3em;
            color: #00d4ff;
            margin-bottom: 20px;
            filter: drop-shadow(0 0 10px #00d4ff);
            transition: all 0.3s ease;
        }
        
        .tech-card:hover .tech-icon {
            color: #00ff88;
            filter: drop-shadow(0 0 15px #00ff88);
            transform: scale(1.1);
        }
        
        .tech-card h5 {
            font-size: 1.4em;
            font-weight: bold;
            color: #ffffff;
            margin-bottom: 15px;
            text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
        }
        
        .tech-card p {
            color: #94a3b8;
            font-size: 1.1em;
        }
        
        /* Footer */
        .footer-modern {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #94a3b8;
            padding: 100px 0 40px;
            position: relative;
            overflow: hidden;
        }
        
        .footer-section h5 {
            color: white;
            font-weight: bold;
            margin-bottom: 30px;
            font-size: 1.4em;
        }
        
        .footer-section ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-section ul li {
            margin-bottom: 12px;
        }
        
        .footer-section ul li a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1.1em;
        }
        
        .footer-section ul li a:hover {
            color: #dc3545;
        }
        
        .footer-bottom {
            border-top: 1px solid #334155;
            margin-top: 60px;
            padding-top: 40px;
            text-align: center;
        }
        
        .social-links a {
            color: #94a3b8;
            font-size: 1.8em;
            margin: 0 15px;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            color: #dc3545;
            transform: translateY(-3px);
        }
        
        /* Parallax Effects */
        .parallax-element {
            position: absolute;
            pointer-events: none;
        }
        
        .parallax-circle {
            width: 200px;
            height: 200px;
            border: 2px solid rgba(220, 53, 69, 0.2);
            border-radius: 50%;
            animation: rotate 20s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-modern h1 {
                font-size: 2.8em;
            }
            
            .pricing-card.featured {
                transform: none;
            }
            
            .tech-grid {
                grid-template-columns: 1fr;
            }
            
            .floating-card {
                display: none;
            }
        }