
        :root {
            --primary: rgb(0, 51, 153);
            --secondary: rgb(252, 103, 1);
            --accent: wheat;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --blakc:black;
        }

        .support-card, .trial-card {
            background: #fff;
            border-radius: 12px;
            padding: 22px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            margin-bottom: 20px;
        }
        .trial-card {
            background: linear-gradient(135deg, #2e4aff, wheat);
            background: linear-gradient(135deg, #3a4169, #000000);
    color: #fff;
            color: #fff;
        }
        .trial-btn {
            background: #fff;
            color: #1e3cff;
            border-radius: 8px;
        }
        .form-container {
            background: #fff;
            padding: 35px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }
        
        .navbar {
            background-color:white !important;
            padding: 0px 0;
            transition: all 0.3s ease;
             box-shadow: 0 1px 10px rgba(0,0,0,0.15) !important; /* bottom shadow */
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.8rem;
        }
        
        .nav-link {
            color: var(--dark) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--accent) !important;
        }
        
        .hero-section {
           background-color: white;
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;

            
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: #1a1a2e;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
            color: #1a1a2e;
        }
        
        .btn-primary {
            background-color: var(--secondary);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background-color: #e05a00;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        .btn-outline-light {
            border-radius: 30px;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s;
            color: var(--dark);
            border: 2px solid #003399;

        }
        
        .btn-outline-light:hover {
            background-color: white;
            color: var(--dark);
            border:2px solid #003399;
        }
        
        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            font-weight: 700;
            color: var(--primary);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--secondary);
        }
        
        .service-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .trust-badge {
            background-color: white;
            padding: 30px 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            transition: all 0.3s;
        }
        
        .trust-badge:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .trust-badge i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .feature-box {
            padding: 30px 20px;
            border-radius: 10px;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            transition: all 0.3s;
            height: 100%;
        }
        
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(0, 51, 153, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .feature-icon i {
            font-size: 1.8rem;
            color: var(--primary);
        }
        
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        footer {
            background-color: var(--dark);
            color: white;
            padding: 70px 0 20px;
        }
        
        .footer-links h5 {
            color: var(--accent);
            margin-bottom: 25px;
            font-weight: 600;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--accent);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 50px;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            color: white;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
        }
        
        .highlight {
            color: var(--secondary);
        }
        
        .accent-color {
            color: var(--primary);
        }
        
        .stats-counter {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
        }
        
        .stats-label {
            font-size: 1rem;
            color: #666;
        }
        
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
        }


        .hero-image{
            display: flex;
            justify-content: center;
            
        }

         .network {
    position: relative;
    width: 400px;
    height: 400px;
  }

  /* Center BJ Infotech logo */
  .center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border: 2px solid #f44336;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    box-shadow: 0 0 12px rgba(244, 67, 54, 0.3);
  }
.node{
    color: #003399 !important;
}
  .center img {
    width: 50px;
    height: 50px;
  }

  /* Service nodes */
  .node {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 6px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    z-index: 5;
    transition: transform 0.3s ease;
  }

  .node img {
    width: 28px;
    height: 28px;
    margin-bottom: 4px;
  }

  .node:hover {
    transform: scale(1.1);
  }

  .node.sms { top: 5%; left: 50%; transform: translate(-50%, 0); }
  .node.whatsapp { right: 5%; top: 50%; transform: translate(0, -50%); }
  .node.rcs { bottom: 5%; left: 50%; transform: translate(-50%, 0); }
  .node.voice { left: 5%; top: 50%; transform: translate(0, -50%); }

  /* SVG lines connecting nodes */
  svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  line {
    stroke: #f44336;
    stroke-width: 2;
    stroke-dasharray: 4 8;
    animation: pulse 2s linear infinite;
  }

  @keyframes pulse {
    0% { stroke-dashoffset: 0; opacity: 0.6; }
    50% { opacity: 1; }
    100% { stroke-dashoffset: -30; opacity: 0.6; }
  }

  /* Optional glowing circle animation behind */
  .glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px dashed #00E885; 
    animation: rotate 10s linear infinite;
  }

  .highlighter{
    color: #e05a00;
  }

  @keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
  }

  .custom-height{
    height: 400px;
    
  }

  .map-bg{
    background: url('./images/map-bg.png');
    padding: 50px;
    background-attachment: fixed;
  }


  .service-card {
    position: relative;
    overflow: hidden;
    background: transparent;
    transition: color 0.3s ease;
    z-index: 1;
}

/* HOVER BACKGROUND FILL */
.service-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0%;
    height: 0%;
    background: #003399; /* your hover background color */
    transition: all 0.2s ease-in-out;
    z-index: -1;
}

/* EXPAND ON HOVER */
.service-card:hover::before {
    width: 100%;
    height: 100%;
}

/* Text to white on hover */
.service-card:hover,
.service-card:hover h4,
.service-card:hover p,
.service-card:hover li,
.service-card:hover i {
    color: #fff !important;
}

.trust-badge img{
    height: 50px;
}

.position-set{
    position: relative;
    top: -100px;
}

.faq-secton{
margin-top: 20px;
}
.faq-secton h2{
    color: wheat;
}

.myVideoSwiper{
    width: 100%;
    padding-top: 20px;
    padding-bottom: 40px;
}

.swiper{
    padding-bottom: 60px !important;
  
}
    


.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.8rem;
    color: #003399;

   
    
}

.swiper-pagination{
    display: none !important;
}

.swiper-button-next,.swiper-button-prev{
    width: 40px !important;
    height: 40px !important;
    background:#0033991a;;
    border-radius: 50%;
    top: 95%;
}

.swiper-button-prev{
left: 45%;

}

.swiper-button-next{
right: 45%;

}

@media (max-width: 768px) {
   .swiper-pagination{
    display: none !important;
   }

   .swiper-button-next,.swiper-button-prev{
    top:95%;
   }

   .swiper-button-prev{
    left: 30%;
   }    

   .swiper-button-next{
    right: 30%;
   }    

}   