        /* Brand Font Style */
        .brand-name {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            letter-spacing: 2px;
        }
        
        /* Navbar Fixed on Mobile */
        @media (max-width: 991.98px) {
            .nav-bar {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                z-index: 9999;
                background: white !important;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
                padding: 0 !important;
            }
            
            .nav-bar .container {
                padding: 0 15px;
            }
            
            .navbar-brand {
                padding: 15px 0;
            }
            
            .navbar-brand h1 {
                font-size: 1.3rem !important;
                margin: 0 !important;
            }
            
            .navbar-brand img {
                max-width: 35px !important;
            }
            
            body {
                padding-top: 70px;
            }
            
            .navbar-toggler {
                padding: 8px 10px;
                border: 1px solid rgba(0, 0, 0, 0.1);
            }
            
            .navbar-collapse {
                background: white;
                padding: 15px 0;
                margin-top: 10px;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            }
            
            .nav-item {
                padding: 8px 15px;
            }
            
            .nav-btn {
                display: none !important;
            }
        }
        
        /* Hero Section Styles */
        .header-carousel-item {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #000814 0%, #001d3d 50%, #000814 100%);
            min-height: 600px;
        }
        
        .dark-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 8, 20, 0.7);
            z-index: 5;
        }
        
        .cyber-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .symmetric-grid {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(0, 195, 255, 0.1) 49px, rgba(0, 195, 255, 0.1) 50px),
                repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(0, 195, 255, 0.1) 49px, rgba(0, 195, 255, 0.1) 50px);
            z-index: 1;
        }
        
        .center-focal {
            position: absolute;
            width: 300px;
            height: 300px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: radial-gradient(circle, rgba(0, 195, 255, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 2;
            animation: centerPulse 4s ease-in-out infinite;
        }
        
        .symmetric-node {
            position: absolute;
            width: 10px;
            height: 10px;
            background: rgba(0, 195, 255, 0.8);
            border-radius: 50%;
            box-shadow: 0 0 15px rgba(0, 195, 255, 0.8);
            z-index: 3;
            animation: nodePulse 3s ease-in-out infinite;
        }
        
        .node-top-1 { top: 15%; left: 20%; }
        .node-top-2 { top: 15%; left: 50%; transform: translateX(-50%); }
        .node-top-3 { top: 15%; right: 20%; }
        .node-mid-1 { top: 50%; left: 15%; transform: translateY(-50%); }
        .node-mid-2 { top: 50%; left: 50%; transform: translate(-50%, -50%); }
        .node-mid-3 { top: 50%; right: 15%; transform: translateY(-50%); }
        .node-bot-1 { bottom: 15%; left: 20%; }
        .node-bot-2 { bottom: 15%; left: 50%; transform: translateX(-50%); }
        .node-bot-3 { bottom: 15%; right: 20%; }
        
        .symmetric-line {
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 195, 255, 0.4), transparent);
            z-index: 2;
            animation: lineGlow 4s ease-in-out infinite;
        }
        
        .line-h1 { top: 15%; left: 20%; right: 20%; }
        .line-h2 { top: 50%; left: 15%; right: 15%; transform: translateY(-50%); }
        .line-h3 { bottom: 15%; left: 20%; right: 20%; }
        
        .line-v1 {
            width: 1px;
            height: 70%;
            top: 15%;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(180deg, transparent, rgba(0, 195, 255, 0.4), transparent);
        }
        
        .diagonal-line {
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 195, 255, 0.3), transparent);
            transform-origin: left center;
            z-index: 2;
        }
        
        .diag-1 { top: 15%; left: 20%; width: 30%; transform: rotate(45deg); }
        .diag-2 { top: 15%; right: 20%; width: 30%; transform: rotate(-45deg); transform-origin: right center; }
        .diag-3 { bottom: 15%; left: 20%; width: 30%; transform: rotate(-45deg); }
        .diag-4 { bottom: 15%; right: 20%; width: 30%; transform: rotate(45deg); transform-origin: right center; }
        
        .hex-symmetry {
            position: absolute;
            width: 50px;
            height: 29px;
            background: rgba(0, 195, 255, 0.15);
            margin: 14.5px 0;
            z-index: 2;
        }
        
        .hex-symmetry:before,
        .hex-symmetry:after {
            content: "";
            position: absolute;
            width: 0;
            border-left: 25px solid transparent;
            border-right: 25px solid transparent;
        }
        
        .hex-symmetry:before {
            bottom: 100%;
            border-bottom: 14.5px solid rgba(0, 195, 255, 0.15);
        }
        
        .hex-symmetry:after {
            top: 100%;
            border-top: 14.5px solid rgba(0, 195, 255, 0.15);
        }
        
        .hex-tl { top: 10%; left: 10%; animation: hexFloat 6s ease-in-out infinite; }
        .hex-tr { top: 10%; right: 10%; animation: hexFloat 6s ease-in-out infinite; animation-delay: 0.5s; }
        .hex-bl { bottom: 10%; left: 10%; animation: hexFloat 6s ease-in-out infinite; animation-delay: 1s; }
        .hex-br { bottom: 10%; right: 10%; animation: hexFloat 6s ease-in-out infinite; animation-delay: 1.5s; }
        
        .symmetric-circle {
            position: absolute;
            border: 1px solid rgba(0, 195, 255, 0.2);
            border-radius: 50%;
            z-index: 2;
            animation: circleExpand 6s ease-in-out infinite;
        }
        
        .circle-1 { width: 150px; height: 150px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
        .circle-2 { width: 250px; height: 250px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation-delay: 1s; }
        .circle-3 { width: 350px; height: 350px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation-delay: 2s; }
        
        .corner-element {
            position: absolute;
            width: 80px;
            height: 80px;
            border: 2px solid rgba(0, 195, 255, 0.3);
            z-index: 2;
        }
        
        .corner-tl { top: 5%; left: 5%; border-right: none; border-bottom: none; animation: cornerGlow 4s ease-in-out infinite; }
        .corner-tr { top: 5%; right: 5%; border-left: none; border-bottom: none; animation: cornerGlow 4s ease-in-out infinite; animation-delay: 1s; }
        .corner-bl { bottom: 5%; left: 5%; border-right: none; border-top: none; animation: cornerGlow 4s ease-in-out infinite; animation-delay: 2s; }
        .corner-br { bottom: 5%; right: 5%; border-left: none; border-top: none; animation: cornerGlow 4s ease-in-out infinite; animation-delay: 3s; }
        
        .data-stream-subtle {
            position: absolute;
            width: 1px;
            height: 60px;
            background: linear-gradient(to bottom, transparent, rgba(0, 195, 255, 0.4), transparent);
            z-index: 2;
            animation: streamFlow 6s linear infinite;
        }
        
        .stream-1 { left: 25%; top: -60px; animation-delay: 0s; }
        .stream-2 { left: 50%; top: -60px; animation-delay: 2s; }
        .stream-3 { right: 25%; top: -60px; animation-delay: 4s; }
        
        @keyframes centerPulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.15; }
            50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.25; }
        }
        
        @keyframes nodePulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 15px rgba(0, 195, 255, 0.8); }
            50% { transform: scale(1.2); box-shadow: 0 0 25px rgba(0, 195, 255, 1); }
        }
        
        @keyframes lineGlow {
            0%, 100% { opacity: 0.4; }
            50% { opacity: 0.8; }
        }
        
        @keyframes hexFloat {
            0%, 100% { transform: translateY(0); opacity: 0.6; }
            50% { transform: translateY(-15px); opacity: 0.9; }
        }
        
        @keyframes circleExpand {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
            50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.5; }
        }
        
        @keyframes cornerGlow {
            0%, 100% { border-color: rgba(0, 195, 255, 0.3); box-shadow: 0 0 10px rgba(0, 195, 255, 0.2); }
            50% { border-color: rgba(0, 195, 255, 0.6); box-shadow: 0 0 20px rgba(0, 195, 255, 0.4); }
        }
        
        @keyframes streamFlow {
            0% { transform: translateY(0); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(100vh); opacity: 0; }
        }
        
        .carousel-caption {
            position: relative;
            z-index: 10;
        }
        
        @media (max-width: 768px) {
            .header-carousel-item { min-height: 500px; }
            .dark-overlay { background: rgba(0, 8, 20, 0.85); }
            .symmetric-grid { opacity: 0.5; }
            .center-focal, .circle-1, .circle-2, .circle-3 { display: none; }
            .diagonal-line { opacity: 0.3; }
        }
        
        @media (max-width: 576px) {
            .dark-overlay { background: rgba(0, 8, 20, 0.9); }
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        /* Feature Section */
        .feature-section {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .feature-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
            opacity: 0.4;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }

        .section-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: rgb(57, 136, 255);
            padding: 8px 24px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .section-header h1 {
            color: rgb(0, 0, 0);
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

        .section-header p {
            color: rgba(48, 48, 48, 0.9);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .feature-card {
            background: var(--bs-light);
            border-radius: 24px;
            padding: 40px 30px;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
            border-color: var(--primary);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: #015fc9;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            transition: all 0.4s ease;
            position: relative;
        }

        .feature-card:hover .feature-icon {
            transform: rotate(5deg) scale(1.1);
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
        }

        .feature-icon i {
            font-size: 2rem;
            color: white;
        }

        .feature-card h4 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #01004d;
            margin-bottom: 16px;
        }

        .feature-card p {
            color: #3f3f3f;
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .feature-btn {
            background: #015fc9;
            color: rgb(255, 255, 255);
            border: none;
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .feature-btn:hover {
            transform: translateX(4px);
            box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
            color: rgb(255, 255, 255);
        }

        .feature-btn i {
            transition: transform 0.3s ease;
        }

        .feature-btn:hover i {
            transform: translateX(4px);
        }

        @media (max-width: 768px) {
            .section-header h1 {
                font-size: 2rem;
            }
            .feature-section {
                padding: 60px 0;
            }
        }

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

        .feature-card {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }

        .feature-card:nth-child(1) { animation-delay: 0.1s; }
        .feature-card:nth-child(2) { animation-delay: 0.2s; }
        .feature-card:nth-child(3) { animation-delay: 0.3s; }
        .feature-card:nth-child(4) { animation-delay: 0.4s; }

        /* Service Section */
        .service-section {
            padding: 80px 20px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .service-item {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .service-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 30px rgba(99, 102, 241, 0.15);
        }

        .service-img {
            position: relative;
            width: 100%;
            padding-top: 60%;
            overflow: hidden;
        }

        .service-img img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            transition: transform 0.4s ease;
        }

        .service-item:hover .service-img img {
            transform: scale(1.08);
        }

        .service-content {
            padding: 45px 25px 30px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .service-content-inner {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .service-content-inner a.service-title {
            color: #0f172a;
            font-size: 1.2rem;
            font-weight: 700;
            text-decoration: none;
            margin-bottom: 12px;
            transition: color 0.3s ease;
            line-height: 1.4;
            display: block;
        }

        .service-content-inner a.service-title:hover {
            color: var(--primary);
        }

        .service-content-inner p {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
            flex: 1;
        }

        .btn-read-more {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            align-self: flex-start;
            text-decoration: none;
            display: inline-block;
        }

        .btn-read-more:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
            color: white;
        }

        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .service-section {
                padding: 60px 15px;
            }
            .services-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
        }

        /* Testimonial Styles - Without Images */
        .testimonial-item {
            background: var(--bs-light);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            margin: 15px;
        }

        .testimonial-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .testimonial-item h4 {
            color: #01004d;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .testimonial-item .text-muted {
            color: #666 !important;
            font-size: 0.95rem;
            margin-bottom: 15px;
        }

        .testimonial-item .d-flex.text-primary {
            margin-bottom: 20px;
        }

        .testimonial-item .d-flex.text-primary i {
            margin-right: 3px;
        }

        .testimonial-item p {
            color: #444;
            font-size: 1rem;
            line-height: 1.8;
            font-style: italic;
        }
        
        /* Testimonial Carousel Settings */
        .testimonial-carousel .owl-nav {
            display: none !important;
        }
        
        .testimonial-carousel .owl-dots {
            text-align: center;
            margin-top: 30px;
        }
        
        .testimonial-carousel .owl-dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            background: #ddd;
            border-radius: 50%;
            margin: 0 5px;
            transition: all 0.3s ease;
        }
        
        .testimonial-carousel .owl-dot.active {
            background: var(--primary);
            width: 30px;
            border-radius: 10px;
        }
        
        /* Mobile Testimonial Improvements */
        @media (max-width: 768px) {
            .testimonial-item {
                padding: 30px 25px;
                margin: 10px;
            }
            
            .testimonial-item h4 {
                font-size: 1.1rem;
            }
            
            .testimonial-item p {
                font-size: 0.95rem;
            }
        }

        /* Team Section - Fixed Card Sizes */
        .team-item {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .team-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .team-img {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
        }

        .team-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.4s ease;
        }

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

        .team-icon {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .team-item:hover .team-icon {
            opacity: 1;
            bottom: 30px;
        }

        .team-title {
            padding: 25px 20px;
            text-align: center;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .team-title h3 {
            color: white;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .team-title h4 {
            color: rgba(255, 255, 255, 0.95);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .team-title p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.9rem;
            margin-bottom: 0;
        }

        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, #0a2463 0%, #1e3c8b 50%, #3a5fc9 100%);
            color: white;
            position: relative;
            overflow: hidden;
            padding: 80px 0;
        }
        
        .contact-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.7;
            z-index: 1;
        }
        
        .contact-grid {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(58, 95, 201, 0.2) 1px, transparent 1px),
                linear-gradient(90deg, rgba(58, 95, 201, 0.2) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: 1;
        }
        
        .contact-form-container {
            position: relative;
            z-index: 10;
        }
        
        .contact-form {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            color: var(--dark);
        }

        /* Certifications Section */
        .certifications-section {
            padding: 60px 0;
            background: rgba(14, 20, 44, 0.02);
        }

        .certifications-section h2 {
            font-weight: 700;
        }

        .certifications-logos {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
        }

        .certifications-logos .iso-logo {
            max-width: 140px;
            opacity: 0.95;
            transition: transform 0.25s ease, opacity 0.25s ease, filter 0.25s ease;
            filter: grayscale(10%);
        }

        .certifications-logos .iso-logo:hover {
            transform: translateY(-6px) scale(1.02);
            opacity: 1;
            filter: none;
        }
        
        .form-control {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 12px 15px;
            margin-bottom: 20px;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.2rem rgba(58, 95, 201, 0.25);
        }
        
        .form-label {
            font-weight: 600;
            margin-bottom: 8px;
            color: #333;
        }
        
        .form-check {
            margin-bottom: 20px;
        }
        
        .form-check-label {
            color: #333;
            font-size: 0.95rem;
        }
        
        .btn-contact {
            background: var(--primary);
            border: 2px solid var(--primary);
            color: white;
            padding: 14px 40px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            width: auto;
            font-size: 1.1rem;
            display: inline-block;
        }
        
        .btn-contact:hover {
            background: #014a9f;
            border-color: #014a9f;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(58, 95, 201, 0.4);
        }
        
        .section-title {
            margin-bottom: 50px;
        }
        
        .section-title h4 {
            color: #00c3ff;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .section-title h1 {
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .section-title p {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* Footer Styles - Professional Design */
        .footer-section {
            background: linear-gradient(135deg, #000814 0%, #001d3d 100%);
            color: white;
            padding: 60px 0 0;
            position: relative;
        }
        
        .footer-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 195, 255, 0.5), transparent);
        }
        
        .footer-content {
            padding-bottom: 40px;
        }
        
        .footer-about {
            display: flex;
            flex-direction: column;
        }
        
        .footer-logo-wrapper {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        
        .footer-logo {
            margin-bottom: 0;
            flex-shrink: 0;
        }
        
        .footer-logo img {
            max-width: 60px;
        }
        
        .footer-about h3 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 0;
            letter-spacing: 2px;
        }

        /* Ensure footer brand heading is white for visibility */
        .footer-about h3.brand-name,
        .footer-about .brand-name {
            color: #ffffff !important;
        }
        
        @media (max-width: 768px) {
            .footer-content {
                text-align: center;
            }
            
            .footer-logo-wrapper {
                justify-content: center;
            }
            
            .footer-about h3 {
                font-size: 1.4rem;
            }
            
            .footer-about p {
                text-align: center;
            }
            
            .footer-social {
                justify-content: center;
            }
            
            .footer-links h4::after,
            .footer-contact h4::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .footer-links ul {
                text-align: center;
            }
            
            .footer-contact-item {
                justify-content: center;
                text-align: left;
            }
            
            .footer-contact-details {
                text-align: left;
            }
            
            .footer-bottom .row {
                text-align: center;
            }
            
            .footer-bottom .col-md-6 {
                margin-bottom: 10px;
            }
        }
        
        .footer-about p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-bottom: 25px;
        }
        
        .footer-social {
            display: flex;
            gap: 12px;
        }
        
        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(0, 195, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }
        
        .footer-social a:hover {
            background: var(--primary);
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 195, 255, 0.4);
        }
        
        .footer-links h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: var(--primary);
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links ul li {
            margin-bottom: 12px;
        }
        
        .footer-links ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
        }
        
        .footer-links ul li a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        
        .footer-links ul li a i {
            margin-right: 8px;
            font-size: 0.8rem;
        }
        
        .footer-contact h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-contact h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: var(--primary);
        }
        
        .footer-contact-item {
            display: flex;
            align-items: start;
            margin-bottom: 20px;
        }
        
        @media (max-width: 768px) {
            .footer-contact-item {
                justify-content: center;
                text-align: left;
            }
            
            .footer-contact-details {
                text-align: left;
            }
        }
        
        .footer-contact-icon {
            width: 45px;
            height: 45px;
            background: rgba(0, 195, 255, 0.1);
            border: 2px solid rgba(0, 195, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .footer-contact-icon i {
            color: var(--primary);
        }
        
        .footer-contact-details h5 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: white;
        }
        
        .footer-contact-details p {
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
            font-size: 0.9rem;
        }
        
        .footer-contact-details a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-contact-details a:hover {
            color: var(--primary);
        }
        
        .footer-bottom {
            background: rgba(0, 0, 0, 0.3);
            padding: 25px 0;
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-bottom p {
            margin: 0;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        .footer-bottom a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-bottom a:hover {
            color: #00c3ff;
        }
        
        @media (max-width: 768px) {
            .footer-content {
                text-align: center;
            }
            
            .footer-social {
                justify-content: center;
            }
            
            .footer-links h4::after,
            .footer-contact h4::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .footer-contact-item {
                justify-content: center;
                text-align: left;
            }
        }
