      :root {
            --primary-color: #00d4ff;
            --secondary-color: #0ea5e9;
            --accent-color: #22d3ee;
            --dark-color: #e2e8f0;
            --light-color: #0f172a;
            --text-color: #94a3b8;
            --warm-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
            --bg-primary: #0a0a1a;
            --bg-secondary: #0f172a;
            --bg-card: #1e293b;
            --bg-card-border: #334155;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        section{
            overflow: hidden;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            background: var(--bg-primary);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: var(--dark-color);
        }
        
        /* Navbar */
        .navbar {
            padding: 15px 0;
            transition: all 0.3s ease;
            background:var(--bg-card);
        }
        
        .navbar.scrolled {
            background: #0f172a;
            box-shadow: 0 2px 20px rgba(0,0,0,0.4);
        }
        
        .navbar-brand {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
            padding: 0;
        }

        /* Mobile CTA next to toggler */
        .navbar-mobile-cta {
            padding: 8px 18px;
            font-size: 0.8rem;
            white-space: nowrap;
            border-radius: 50px;
        }

        .navbar-toggler {
            border: 1px solid rgba(0, 212, 255, 0.3);
            padding: 6px 10px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .navbar-toggler:focus {
            outline: none;
            box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
        }

        .navbar-toggler-icon i {
            color: var(--primary-color);
            font-size: 1.2rem;
        }

        /* Mobile navbar responsive */
        @media (max-width: 991.98px) {
            .navbar-toggler-icon{
                    width: 1.2em;
    height: 1.2em;
            }
            .navbar {
                padding: 10px 8px;
            }
            .navbar > .container {
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                justify-content: space-between;
            }
            .navbar-brand {
                margin-right: auto;
                padding: 2px 0;
            }
            .navbar-collapse {
                background: rgba(15, 23, 42, 0.98);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                /* border-radius: 12px; */
                margin-top: 10px;
                padding: 15px 20px;
                border: 1px solid rgba(51, 65, 85, 0.5);
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
            }
            .navbar-nav {
                align-items: flex-start !important;
            }
            .nav-link {
                margin: 0;
                padding: 10px 5px !important;
                font-size: 0.95rem;
                border-bottom: 1px solid rgba(51, 65, 85, 0.3);
                width: 100%;
            }
            .nav-item:last-child .nav-link {
                border-bottom: none;
            }
        }

        @media (max-width: 575.98px) {
            .navbar {
                padding:8px 8px;
            }
            .brand-logo {
               height: 36px !important;
            }
            .navbar.scrolled .brand-logo {
                height: 38px !important;
            }
            .navbar-mobile-cta {
                padding: 6px 14px;
                font-size: 0.72rem;
            }
            .navbar-toggler {
                padding: 5px 8px;
            }
            .navbar-toggler-icon i {
                font-size: 1.05rem;
            }
            .navbar-collapse {
                padding: 12px 15px;
            }
            .nav-link {
                padding: 9px 4px !important;
                font-size: 0.9rem;
            }
        }

        .brand-logo {
            height: 45px;
            width: auto;
            transition: all 0.3s ease;
        }

        .navbar.scrolled .brand-logo {
            height: 38px;
        }

        .loader-brand-logo {
            height: 60px;
            width: auto;
        }

        .footer-brand-logo {
            height: 40px;
            width: auto;
            filter: brightness(1.1);
        }
        
        .nav-link {
            font-weight: 500;
            color: #e2e8f0 !important;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .btn-primary-custom {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            color: #fff;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
            color: #fff;
        }
        
        .btn-outline-custom {
            border: 2px solid var(--primary-color);
            padding: 10px 28px;
            border-radius: 50px;
            color: var(--primary-color);
            font-weight: 600;
            background: transparent;
            transition: all 0.3s ease;
        }
        
        .btn-outline-custom:hover {
            background: var(--primary-color);
            color: #fff;
        }

              /* ===== TOP BAR ===== */
       .top-bar {
           background: var(--gray-light);
           color: white;
           padding: 8px 0;
           font-size: 13px;
           border-bottom: 1px solid rgba(255, 255, 255, 0.06);
       }

       .top-bar a {
           color: var(--dark-color);
           text-decoration: none;
           transition: color 0.3s;
       }

       .top-bar a:hover {
           color: var(--accent-color);
       }

       .top-bar i {
           color: var(--primary-color);
           margin-right: 6px;
       }

       .top-bar-links {
           display: flex;
           align-items: center;
           gap: 20px;
           flex-wrap: wrap;
       }

       .top-bar-social {
           display: flex;
           gap: 14px;
           justify-content: flex-end;
           align-items: center;
       }

       .top-bar-social a {
           font-size: 14px;         
       }
       
       /* .top-bar-social a i{
          color: var(--primary-color) ;
       } */

       .top-bar-social a:hover i{
           color: var(--dark-color);
       }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #0a0a1a 0%, #0f172a 30%, #1a1a2e 70%, #0f172a 100%);
            padding-top: 0px;
            padding-bottom: 40px;
            position: relative;
            overflow: hidden;
        }

        /* Hero Carousel */
        .hero-carousel {
            width: 100%;
        }

        .hero-carousel .carousel-inner {
            overflow: visible;
        }

        .hero-carousel .carousel-item {
            transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
        }

        .hero-slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 10, 26, 0.85) 0%, rgba(15, 23, 42, 0.75) 50%, rgba(10, 10, 26, 0.85) 100%);
            z-index: 1;
        }

        .hero-carousel .carousel-item .container {
            position: relative;
            z-index: 2;
        }

        .min-vh-hero {
            min-height: 80vh;
            display: flex;
            align-items: center;
        }

        /* Slide content animation */
        .hero-slide-content {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease 0.3s;
        }

        .carousel-item.active .hero-slide-content {
            opacity: 1;
            transform: translateY(0);
        }

        .carousel-item.active .hero-image {
            animation: fadeInRight 0.8s ease 0.4s both;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Carousel Indicators */
        .hero-indicators {
            bottom: 30px;
            z-index: 10;
            margin-bottom: 0;
        }

        .hero-indicators li {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            border: 2px solid transparent;
            margin: 0 6px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .hero-indicators li.active {
            background: var(--primary-color);
            border-color: var(--primary-color);
            box-shadow: 0 0 12px rgba(0, 212, 255, 0.5);
            width: 35px;
            border-radius: 10px;
        }

        /* Carousel Controls */
        .hero-control {
            width: 50px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .hero-section:hover .hero-control {
            opacity: 1;
        }

        .hero-control-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(0, 212, 255, 0.15);
            border: 1px solid rgba(0, 212, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 16px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .hero-control:hover .hero-control-icon {
            background: rgba(0, 212, 255, 0.25);
            border-color: var(--primary-color);
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
        }

        /* ===== Floating Stats Bar ===== */
        .stats-floating-wrapper {
            position: relative;
            z-index: 10;
            margin-top: -55px;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .stats-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(30, 41, 59, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(51, 65, 85, 0.6);
            border-radius: 20px;
            padding: 30px 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 212, 255, 0.05);
        }

        .stat-card {
            display: flex;
            align-items: center;
            gap: 16px;
            flex: 1;
            justify-content: center;
        }

        .stat-icon-box {
            width: 55px;
            height: 55px;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(14, 165, 233, 0.1));
            border: 1px solid rgba(0, 212, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--primary-color);
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .stat-card:hover .stat-icon-box {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.25), rgba(14, 165, 233, 0.2));
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
            transform: scale(1.08);
        }

        .stat-info h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #e2e8f0;
            margin: 0;
            line-height: 1.1;
        }

        .stat-info p {
            margin: 2px 0 0;
            font-size: 0.85rem;
            color: var(--text-color);
            font-weight: 500;
            white-space: nowrap;
        }

        .stat-divider {
            width: 1px;
            height: 50px;
            background: linear-gradient(to bottom, transparent, rgba(0, 212, 255, 0.3), transparent);
            flex-shrink: 0;
        }

        /* Stats bar responsive */
        @media (max-width: 991.98px) {
            .stats-floating-wrapper {
                margin-top: -30px;
            }
            .stats-bar {
                display: grid;
                grid-template-columns: 1fr 1fr;
                padding: 16px 12px;
                gap: 0;
                border-radius: 16px;
            }
            .stat-card {
                flex-direction: row;
                align-items: center;
                justify-content: flex-start;
                gap: 10px;
                padding: 14px 12px;
                border-radius: 0;
                position: relative;
            }
            /* Grid cell borders for clean separation */
            /* .stat-card:nth-child(-n+2) {
                border-bottom: 1px solid rgba(0, 212, 255, 0.12);
            } */
            .stat-card:nth-child(odd) {
                border-right: 1px solid rgba(0, 212, 255, 0.12);
            }
             .stat-card:last-child {
              border-right: none;
            }
            .stat-divider {
                display: none !important;
            }
            .stat-icon-box {
                width: 40px;
                height: 40px;
                font-size: 1rem;
                border-radius: 10px;
            }
            .stat-info h3 {
                font-size: 1.3rem;
            }
            .stat-info p {
                font-size: 0.75rem;
            }
        }

        @media (max-width: 575.98px) {
            .stats-floating-wrapper {
                margin-top: -25px;
                padding: 0 8px;
            }
            .stats-bar {
                padding: 10px 8px;
                border-radius: 14px;
                box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 30px rgba(0, 212, 255, 0.04);
            }
            .stat-card {
                gap: 8px;
                padding: 12px 8px;
            }
            .stat-icon-box {
                width: 34px;
                height: 34px;
                font-size: 0.85rem;
                border-radius: 9px;
            }
            .stat-info h3 {
                font-size: 1.1rem;
                line-height: 1;
            }
            .stat-info p {
                font-size: 0.68rem;
                margin-top: 1px;
                white-space: nowrap;
            }
        }

        @media (max-width: 359.98px) {
            .stats-floating-wrapper {
                padding: 0 4px;
            }
            .stats-bar {
                padding: 8px 4px;
            }
            .stat-card {
                padding: 10px 5px;
                gap: 6px;
            }
            .stat-icon-box {
                width: 30px;
                height: 30px;
                font-size: 0.78rem;
                border-radius: 8px;
            }
            .stat-info h3 {
                font-size: 1rem;
            }
            .stat-info p {
                font-size: 0.62rem;
            }
        }

        /* Responsive adjustments for carousel */
        @media (max-width: 991.98px) {
            .min-vh-hero {
                min-height: auto;
                padding: 20px 0 40px;
                flex-direction: column;
            }
            .hero-control {
                display: none;
            }
            .hero-indicators {
                bottom: 10px;
            }
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 25px;
            color: #e2e8f0;
        }
        
        .hero-content h1 span {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            color: var(--text-color);
            margin-bottom: 35px;
        }
        
        .hero-image img,
        .hero-image svg,
        .about-image svg {
            max-width: 100%;
            height: auto;
        }
        
        .hero-image img {
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        
        /* Legacy stats-box kept for reference
        .stats-box { ... }
        */
        
        /* Products Section */
        .section-padding {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title span {
            color: var(--primary-color);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            margin-top: 15px;
            margin-bottom: 20px;
        }
        
        .section-title p {
            max-width: 600px;
            margin: 0 auto;
            color: var(--text-color);
        }
        
        .product-card {
            background: #1e293b;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s ease;
            border: 1px solid #334155;
            height: 100%;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 212, 255, 0.1);
            border-color: var(--primary-color);
        }
        
        .product-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }
        
        .product-icon i {
            font-size: 2rem;
            color: #fff;
        }
        
        .product-card h4 {
            font-size: 1.4rem;
            margin-bottom: 15px;
        }
        
        .product-card p {
            color: var(--text-color);
            margin-bottom: 25px;
        }
        
        .product-card .btn-link {
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
        }
        
        .product-card .btn-link:hover {
            color: var(--secondary-color);
        }
        
        /* Solution Card Styles */
        .solution-card {
            text-align: left;
            display: flex;
            flex-direction: column;
            padding: 35px 30px;
            position: relative;
            overflow: hidden;
        }
        
        .solution-card .product-icon {
            margin: 0 0 20px 0;
            width: 65px;
            height: 65px;
            border-radius: 16px;
        }
        
        .solution-card .product-icon i {
            font-size: 1.6rem;
        }
        
        .solution-badge {
            display: inline-block;
            background: rgba(0, 212, 255, 0.1);
            color: var(--primary-color);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 5px 14px;
            border-radius: 50px;
            margin-bottom: 15px;
            width: fit-content;
        }
        
        .solution-card h4 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            color: #e2e8f0;
        }
        
        .solution-card > p {
            color: var(--text-color);
            font-size: 0.92rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .solution-features {
            list-style: none;
            padding: 0;
            margin: 0 0 25px 0;
            flex-grow: 1;
        }
        
        .solution-features li {
            display: flex;
            align-items: center;
            padding: 8px 0;
            color: #cbd5e1;
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(51, 65, 85, 0.5);
        }
        
        .solution-features li:last-child {
            border-bottom: none;
        }
        
        .solution-features li i {
            color: #22d3ee;
            margin-right: 12px;
            font-size: 0.85rem;
            flex-shrink: 0;
        }
        
        .solution-card .btn-outline-custom {
            padding: 10px 20px;
            font-size: 0.9rem;
            border-width: 1.5px;
        }
        
        .solution-card:hover .solution-badge {
            background: rgba(0, 212, 255, 0.2);
        }
        
        /* Features Section */
        .features-section {
            background: linear-gradient(135deg, #0a0a1a 0%, #0f172a 100%);
            color: #fff;
        }
        
        .features-section .section-title span {
            color: var(--accent-color);
        }
        
        .features-section .section-title h2,
        .features-section .section-title p {
            color: #fff;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 35px;
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: rgba(0, 212, 255, 0.15);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .feature-icon i {
            font-size: 1.5rem;
            color: var(--accent-color);
        }
        
        .feature-content h5 {
            color: #fff;
            margin-bottom: 8px;
        }
        
        .feature-content p {
            color: #94a3b8;
            margin: 0;
        }
        
        /* About Section */
        .about-section {
            background: #0f172a;
        }
        
        .about-image {
            position: relative;
        }
        
        .about-image img {
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        }
        
        .experience-badge {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: #fff;
            padding: 30px;
            border-radius: 20px;
            text-align: center;
        }
        
        .experience-badge h3 {
            font-size: 3rem;
            color: #fff;
            margin-bottom: 5px;
        }
        
        .experience-badge p {
            margin: 0;
            font-weight: 500;
        }
        
        .about-content {
            padding-left: 50px;
        }
        
        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 25px;
        }
        
        .about-list {
            list-style: none;
            padding: 0;
            margin: 30px 0;
        }
        
        .about-list li {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .about-list li i {
            color: var(--primary-color);
            margin-right: 15px;
            font-size: 1.2rem;
        }
        
        /* Pricing Section */
        .pricing-card {
            background: #1e293b;
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            border: 1px solid #334155;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .pricing-card.featured {
            border: 2px solid var(--primary-color);
            transform: scale(1.05);
        }
        
        .pricing-card:hover {
            box-shadow: 0 20px 50px rgba(0, 212, 255, 0.1);
        }
        
        .pricing-card .badge {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 500;
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .pricing-card h4 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .pricing-card .price {
            font-size: 3rem;
            font-weight: 700;
            color: #e2e8f0;
        }
        
        .pricing-card .price span {
            font-size: 1rem;
            color: var(--text-color);
            font-weight: 400;
        }
        
        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 30px 0;
            text-align: left;
        }
        
        .pricing-features li {
            padding: 12px 0;
            border-bottom: 1px solid #334155;
            display: flex;
            align-items: center;
            color: #cbd5e1;
        }
        
        .pricing-features li i {
            color: #16a34a;
            margin-right: 12px;
        }
        
        .pricing-features li i.fa-times {
            color: #ef4444;
        }
        
        /* Support Section */
        .support-section {
            background: linear-gradient(135deg, #0f172a 0%, #1a1a2e 100%);
        }
        
        .support-card {
            background: #1e293b;
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid #334155;
        }
        
        .support-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.1);
        }
        
        .support-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }
        
        .support-icon i {
            font-size: 1.8rem;
            color: #fff;
        }
        
        .support-card h5 {
            margin-bottom: 15px;
        }
        
        .support-card p {
            color: var(--text-color);
            margin-bottom: 0;
        }
        
        /* Testimonials */
        .testimonial-card {
            background: #1e293b;
            border-radius: 20px;
            padding: 40px;
            margin: 20px 0;
            position: relative;
            border: 1px solid #334155;
        }
        
        .testimonial-card::before {
            content: '"';
            font-size: 6rem;
            color: #334155;
            position: absolute;
            top: 10px;
            left: 20px;
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .testimonial-content {
            position: relative;
            z-index: 1;
        }
        
        .testimonial-content p {
            font-size: 1.1rem;
            font-style: italic;
            margin-bottom: 25px;
            color: #cbd5e1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .author-info h6 {
            margin-bottom: 5px;
            color: #e2e8f0;
        }
        
        .author-info span {
            color: var(--text-color);
            font-size: 0.9rem;
        }
        
        /* Contact Section */
        .contact-section {
            background: #0a0a1a;
        }
        
        .contact-info-card {
            background: #1e293b;
            border-radius: 20px;
            padding: 40px;
            height: 100%;
            border: 1px solid #334155;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }
        
        .contact-item:last-child {
            margin-bottom: 0;
        }
        
        .contact-item i {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .contact-item h6 {
            margin-bottom: 5px;
            color: #e2e8f0;
        }
        
        .contact-item p {
            margin: 0;
            color: var(--text-color);
        }
        
        .contact-form {
            background: #1e293b;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
            border: 1px solid #334155;
        }
        
        .form-control {
               border: 1px solid #334155;
    border-radius: 10px;
    padding: 15px 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    background: #0f172a;
    color: #e2e8f0;
    height: calc(1.5em + .75rem + 15px);
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
            background: #0f172a;
            color: #e2e8f0;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            padding: 80px 0;
            text-align: center;
            color: #fff;
        }
        
        .cta-section h2 {
            color: #fff;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 35px;
            opacity: 0.9;
        }
        
        .cta-section .btn-light {
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            color: var(--primary-color);
        }
        
        /* Footer */
        .footer {
            background: #0a0a1a;
            color: #94a3b8;
            padding: 80px 0 30px;
            border-top: 1px solid #1e293b;
        }
        
        .footer h5 {
            color: #fff;
            margin-bottom: 25px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }
        
        .footer-social a {
            width: 45px;
            height: 45px;
            background: rgba(0, 212, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            transition: all 0.3s ease;
        }
        
        .footer-social a:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(0, 212, 255, 0.1);
            padding-top: 30px;
            margin-top: 50px;
            text-align: center;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: #fff;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }
        
        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 55px;
            height: 55px;
            background: #25D366;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            z-index: 999;
            text-decoration: none;
        }
        
        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
            color: #fff;
        }
        
        .whatsapp-btn::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: #25D366;
            animation: whatsapp-pulse 2s infinite;
            z-index: -1;
        }
        
        @keyframes whatsapp-pulse {
            0% {
                transform: scale(1);
                opacity: 0.5;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }
        
        /* Responsive */
        @media (max-width: 991px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            .hero-content p {
                font-size: 1.05rem;
                margin-bottom: 25px;
            }
            .hero-image svg {
                max-width: 380px;
                margin: 0 auto;
            }
            .section-padding {
                padding: 70px 0;
            }
            .section-title {
                margin-bottom: 40px;
            }
            .section-title h2 {
                font-size: 2rem;
            }
            .about-content {
                padding-left: 0;
                margin-top: 60px;
            }
            .about-content h2 {
                font-size: 2rem;
            }
            .experience-badge {
                right: 20px;
                bottom: -20px;
                padding: 20px;
            }
            .experience-badge h3 {
                font-size: 2.2rem;
            }
            .pricing-card.featured {
                transform: scale(1);
            }
            .cta-section {
                padding: 60px 0;
            }
            .cta-section h2 {
                font-size: 2rem;
            }
            .cta-section p {
                font-size: 1.05rem;
            }
            .footer {
                padding: 60px 0 25px;
            }
        }
        
        @media (max-width: 767px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            .hero-content p {
                font-size: 0.95rem;
                margin-bottom: 20px;
            }
            .hero-image svg {
                max-width: 300px;
            }
            .section-padding {
                padding: 50px 0;
            }
            .section-title {
                margin-bottom: 30px;
            }
            .section-title h2 {
                font-size: 1.8rem;
            }
            .section-title p {
                font-size: 0.9rem;
            }
            /* Products / Solution cards */
            .solution-card {
                padding: 25px 20px;
            }
            .solution-card .product-icon {
                width: 55px;
                height: 55px;
                border-radius: 14px;
            }
            .solution-card .product-icon i {
                font-size: 1.4rem;
            }
            .solution-card h4 {
                font-size: 1.15rem;
            }
            .solution-card > p {
                font-size: 0.85rem;
            }
            .solution-features li {
                font-size: 0.85rem;
                padding: 6px 0;
            }
            /* Features */
            .feature-icon {
                width: 48px;
                height: 48px;
                border-radius: 12px;
                margin-right: 14px;
            }
            .feature-icon i {
                font-size: 1.2rem;
            }
            .feature-content h5 {
                font-size: 1rem;
            }
            .feature-content p {
                font-size: 0.85rem;
            }
            .feature-item {
                margin-bottom: 25px;
            }
            /* About */
            .about-content {
                margin-top: 50px;
            }
            .about-content h2 {
                font-size: 1.7rem;
            }
            .about-content p {
                font-size: 0.9rem;
            }
            .about-list li {
                font-size: 0.88rem;
                margin-bottom: 10px;
            }
            .experience-badge {
                right: 10px;
                bottom: -15px;
                padding: 16px;
            }
            .experience-badge h3 {
                font-size: 1.8rem;
            }
            .experience-badge p {
                font-size: 0.8rem;
            }
            /* Support cards */
            .support-card {
                padding: 25px 20px;
            }
            .support-icon {
                width: 55px;
                height: 55px;
            }
            .support-icon i {
                font-size: 1.4rem;
            }
            /* Testimonials */
            .testimonial-card {
                padding: 25px 20px;
            }
            .testimonial-content p {
                font-size: 0.95rem;
            }
            .testimonial-card::before {
                font-size: 4rem;
            }
            /* Contact */
            .contact-info-card {
                padding: 25px 20px;
            }
            .contact-form {
                padding: 25px 20px;
            }
            .contact-item i {
                width: 42px;
                height: 42px;
                margin-right: 14px;
                font-size: 0.9rem;
            }
            /* CTA */
            .cta-section {
                padding: 50px 0;
            }
            .cta-section h2 {
                font-size: 1.7rem;
            }
            .cta-section p {
                font-size: 0.95rem;
                margin-bottom: 25px;
            }
            .cta-section .btn-light {
                padding: 12px 30px;
                font-size: 0.95rem;
            }
            /* Footer */
            .footer {
                padding: 45px 0 20px;
            }
            .footer h5 {
                margin-bottom: 15px;
                font-size: 1.05rem;
            }
            .footer-bottom {
                margin-top: 30px;
                padding-top: 20px;
            }
            .footer-social a {
                width: 38px;
                height: 38px;
            }
            /* Buttons */
            .btn-primary-custom {
                padding: 10px 24px;
                font-size: 0.9rem;
            }
            .btn-outline-custom {
                padding: 9px 22px;
                font-size: 0.9rem;
            }
            /* Fixed buttons */
            .whatsapp-btn {
                width: 48px;
                height: 48px;
                font-size: 1.5rem;
                bottom: 20px;
                left: 20px;
            }
            .back-to-top {
                width: 42px;
                height: 42px;
                bottom: 20px;
                right: 20px;
                font-size: 1rem;
            }
        }

        @media (max-width: 575.98px) {
            .hero-content h1 {
                font-size: 1.6rem;
                margin-bottom: 15px;
            }
            .hero-content p {
                font-size: 0.88rem;
                margin-bottom: 18px;
                line-height: 1.5;
            }
            .hero-section {
                padding-bottom: 25px;
            }
            .hero-image svg {
                max-width: 260px;
            }
            .hero-indicators li {
                width: 10px;
                height: 10px;
                margin: 0 4px;
            }
            .hero-indicators li.active {
                width: 28px;
            }
            .section-padding {
                padding: 40px 0;
            }
            .section-title {
                margin-bottom: 25px;
            }
            .section-title span {
                font-size: 0.78rem;
                letter-spacing: 1.5px;
            }
            .section-title h2 {
                font-size: 1.45rem;
                margin-top: 10px;
                margin-bottom: 12px;
            }
            .section-title p {
                font-size: 0.82rem;
            }
            /* Products / Solution cards */
            .solution-card {
                padding: 22px 16px;
                border-radius: 16px;
            }
            .solution-card .product-icon {
                width: 48px;
                height: 48px;
                border-radius: 12px;
                margin-bottom: 14px;
            }
            .solution-card .product-icon i {
                font-size: 1.2rem;
            }
            .solution-badge {
                font-size: 0.68rem;
                padding: 4px 10px;
                margin-bottom: 10px;
            }
            .solution-card h4 {
                font-size: 1.05rem;
                margin-bottom: 8px;
            }
            .solution-card > p {
                font-size: 0.82rem;
                margin-bottom: 14px;
            }
            .solution-features {
                margin-bottom: 18px;
            }
            .solution-features li {
                font-size: 0.8rem;
                padding: 5px 0;
            }
            .solution-features li i {
                font-size: 0.75rem;
                margin-right: 8px;
            }
            .solution-card .btn-outline-custom {
                padding: 8px 16px;
                font-size: 0.82rem;
            }
            /* Features */
            .feature-icon {
                width: 42px;
                height: 42px;
                border-radius: 10px;
                margin-right: 12px;
            }
            .feature-icon i {
                font-size: 1rem;
            }
            .feature-content h5 {
                font-size: 0.95rem;
                margin-bottom: 4px;
            }
            .feature-content p {
                font-size: 0.8rem;
                line-height: 1.5;
            }
            .feature-item {
                margin-bottom: 20px;
            }
            /* About */
            .about-content {
                margin-top: 40px;
            }
            .about-content h2 {
                font-size: 1.4rem;
                margin-bottom: 15px;
            }
            .about-content p {
                font-size: 0.85rem;
            }
            .about-list {
                margin: 20px 0;
            }
            .about-list li {
                font-size: 0.82rem;
                margin-bottom: 8px;
            }
            .about-list li i {
                font-size: 1rem;
                margin-right: 10px;
            }
            .experience-badge {
                position: relative;
                right: auto;
                bottom: auto;
                display: inline-block;
                margin-top: 15px;
                padding: 14px 22px;
                border-radius: 14px;
            }
            .experience-badge h3 {
                font-size: 1.5rem;
            }
            .experience-badge p {
                font-size: 0.75rem;
            }
            /* Support cards */
            .support-card {
                padding: 22px 16px;
                border-radius: 16px;
            }
            .support-icon {
                width: 48px;
                height: 48px;
                margin-bottom: 15px;
            }
            .support-icon i {
                font-size: 1.2rem;
            }
            .support-card h5 {
                font-size: 1rem;
                margin-bottom: 10px;
            }
            .support-card p {
                font-size: 0.82rem;
            }
            /* Testimonials */
            .testimonial-card {
                padding: 22px 18px;
                border-radius: 16px;
                margin: 10px 0;
            }
            .testimonial-content p {
                font-size: 0.88rem;
            }
            .testimonial-card::before {
                font-size: 3.5rem;
                top: 5px;
                left: 12px;
            }
            .testimonial-author img {
                width: 45px;
                height: 45px;
                margin-right: 10px;
            }
            .author-info h6 {
                font-size: 0.9rem;
            }
            .author-info span {
                font-size: 0.78rem;
            }
            /* Contact */
            .contact-info-card {
                padding: 22px 16px;
                border-radius: 16px;
            }
            .contact-info-card h4 {
                font-size: 1.1rem;
                margin-bottom: 16px !important;
            }
            .contact-form {
                padding: 22px 16px;
                border-radius: 16px;
            }
            .contact-item {
                margin-bottom: 20px;
            }
            .contact-item i {
                width: 38px;
                height: 38px;
                margin-right: 12px;
                border-radius: 10px;
            }
            .contact-item h6 {
                font-size: 0.9rem;
            }
            .contact-item p {
                font-size: 0.82rem;
            }
            .form-control {
                padding: 12px 12px;
                font-size: 0.88rem;
                height: calc(1.5em + .75rem + 10px);
                margin-bottom: 14px;
            }
            /* CTA */
            .cta-section {
                padding: 40px 0;
            }
            .cta-section h2 {
                font-size: 1.4rem;
                margin-bottom: 12px;
            }
            .cta-section p {
                font-size: 0.88rem;
                margin-bottom: 20px;
            }
            .cta-section .btn-light {
                padding: 10px 25px;
                font-size: 0.88rem;
            }
            /* Footer */
            .footer {
                padding: 35px 0 15px;
            }
            .footer h5 {
                font-size: 1rem;
                margin-bottom: 12px;
            }
            .footer p,
            .footer-links a {
                font-size: 0.85rem;
            }
            .footer-bottom {
                margin-top: 22px;
                padding-top: 15px;
                font-size: 0.8rem;
            }
            .footer-social {
                margin-top: 15px;
                gap: 10px;
            }
            .footer-social a {
                width: 35px;
                height: 35px;
                font-size: 0.85rem;
                border-radius: 8px;
            }
            /* Buttons */
            .btn-primary-custom {
        padding: 12px 25px;
        font-size: 0.75rem;
            }
           .navbar-mobile-cta {
                  padding: 7px 12px !important;
        font-size: 0.65rem !important;
            }
            .btn-outline-custom {
                padding: 8px 18px;
                font-size: 0.84rem;
            }
            /* Fixed buttons */
            .whatsapp-btn {
                width: 44px;
                height: 44px;
                font-size: 1.4rem;
                bottom: 60px;
                left: 16px;
            }
            .back-to-top {
                width: 38px;
                height: 38px;
                bottom: 60px;
                right: 16px;
                font-size: 0.9rem;
            }
        }

/* ================================================
   Page Loader Styles
   ================================================ */

/* Page Loader Overlay */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* Loader Container */
.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Logo Animation */
.loader-logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    animation: logoFloat 2s ease-in-out infinite;
    font-family: 'Poppins', sans-serif;
}

.loader-logo i {
    color: #00d4ff;
    margin-right: 10px;
    animation: cubeRotate 3s linear infinite;
}

.loader-logo span {
    color: #00d4ff;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes cubeRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Main Spinner - Software/Tech Theme */
.spinner-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
}

/* Outer Ring */
.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #00d4ff;
    animation: spinClockwise 1.5s linear infinite;
}

.spinner-ring:nth-child(2) {
    width: 85%;
    height: 85%;
    top: 7.5%;
    left: 7.5%;
    border-top-color: #22d3ee;
    animation: spinCounterClockwise 1.2s linear infinite;
}

.spinner-ring:nth-child(3) {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-top-color: #0ea5e9;
    animation: spinClockwise 0.9s linear infinite;
}

@keyframes spinClockwise {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinCounterClockwise {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

/* Center Icon */
.spinner-center {
    position: absolute;
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner-center i {
    font-size: 28px;
    color: #00d4ff;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* Loading Text */
.loader-text {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

/* Loading Dots Animation */
.loading-dots {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.loading-dots span {
    width: 10px;
    height: 10px;
    background: #00d4ff;
    border-radius: 50%;
    animation: dotBounce 1.4s ease-in-out infinite;
}

.loading-dots span:nth-child(1) {
    animation-delay: 0s;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
    background: #22d3ee;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
    background: #0ea5e9;
}

.loading-dots span:nth-child(4) {
    animation-delay: 0.6s;
    background: #22d3ee;
}

.loading-dots span:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes dotBounce {
    0%, 80%, 100% {
        transform: scale(0.6);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Progress Bar */
.loader-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
}

.loader-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00d4ff, #22d3ee, #0ea5e9, #22d3ee, #00d4ff);
    background-size: 200% 100%;
    border-radius: 10px;
    animation: progressMove 2s ease-in-out infinite, progressGradient 2s linear infinite;
}

@keyframes progressMove {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

@keyframes progressGradient {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

/* Floating Particles */
.loader-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #00d4ff;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 4s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 0.5s; background: #22d3ee; }
.particle:nth-child(3) { left: 30%; animation-delay: 1s; background: #0ea5e9; }
.particle:nth-child(4) { left: 40%; animation-delay: 1.5s; }
.particle:nth-child(5) { left: 50%; animation-delay: 2s; background: #22d3ee; }
.particle:nth-child(6) { left: 60%; animation-delay: 2.5s; background: #0ea5e9; }
.particle:nth-child(7) { left: 70%; animation-delay: 3s; }
.particle:nth-child(8) { left: 80%; animation-delay: 3.5s; background: #22d3ee; }
.particle:nth-child(9) { left: 90%; animation-delay: 4s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Binary Code Effect */
.binary-rain {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: rgba(0, 212, 255, 0.15);
    white-space: nowrap;
    animation: binaryFall 8s linear infinite;
    pointer-events: none;
}

.binary-rain:nth-child(1) { left: 5%; animation-delay: 0s; }
.binary-rain:nth-child(2) { left: 15%; animation-delay: 1s; }
.binary-rain:nth-child(3) { left: 25%; animation-delay: 2s; }
.binary-rain:nth-child(4) { left: 35%; animation-delay: 3s; }
.binary-rain:nth-child(5) { left: 45%; animation-delay: 4s; }
.binary-rain:nth-child(6) { left: 55%; animation-delay: 5s; }
.binary-rain:nth-child(7) { left: 65%; animation-delay: 6s; }
.binary-rain:nth-child(8) { left: 75%; animation-delay: 7s; }
.binary-rain:nth-child(9) { left: 85%; animation-delay: 0.5s; }
.binary-rain:nth-child(10) { left: 95%; animation-delay: 1.5s; }

@keyframes binaryFall {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* Loader Responsive Styles */
@media (max-width: 576px) {
    .loader-logo {
        font-size: 1.8rem;
    }
    
    .spinner-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .spinner-center i {
        font-size: 22px;
    }
    
    .loader-text {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }
    
    .loader-progress {
        width: 160px;
    }
}

