:root {
  --primary-color: #1794f9;
  --secondary-color: #0235fc;
}
        body {
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
        }

        .hero-gradient {
            background: linear-gradient(135deg, #1794f9 0%, #0ab0ea 100%);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .nav-link {
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .scroll-indicator {
            animation: bounce 2s infinite;
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateY(0);
            }

            40% {
                transform: translateY(-20px);
            }

            60% {
                transform: translateY(-10px);
            }
        }

        .dashboard-shadow {
            filter: drop-shadow(0px 25px 25px rgba(0, 0, 0, 0.15));
        }

        .floating {
            animation: floating 3s ease-in-out infinite;
        }

        .floating-delay-1 {
            animation-delay: 0.5s;
        }

        .floating-delay-2 {
            animation-delay: 1s;
        }

        .floating-delay-3 {
            animation-delay: 1.5s;
        }

        @keyframes floating {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-15px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .footer-gradient {
            background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
        }
        .logo{
            width:150px;
        }
          /* Custom styles for screenshot carousel */
        .screenshot-carousel {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            padding: 40px 0;
        }
        
        .carousel-item {
            flex: 0 0 33.333%;
            padding: 0 15px;
            transition: all 0.3s ease;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .carousel-item.center {
            transform: scale(1.15);
            z-index: 2;
            position: relative;
        }
        
        .carousel-item img {
            height: auto;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            border-radius: 30px;
        }
        
        .carousel-item.center img {
            /*border: 3px solid #068cc6;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);*/
        }
        
        .carousel-nav {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .carousel-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(6, 140, 198, 0.3);
        }
        
        .carousel-btn:hover {
            background: #0ab0ea;
            transform: scale(1.1);
        }
        
        .carousel-dots {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            padding-bottom: 10px;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            background: #cbd5e0;
            border-radius: 50%;
            margin: 0 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .dot.active {
            background: var(--primary-color);
            transform: scale(1.3);
        }
        
        .carousel-counter {
            text-align: center;
            margin-top: 20px;
            font-weight: 500;
            color: #4a5568;
            font-size: 1.1rem;
        }
        @media (max-width: 768px) {
         .carousel-item img {
            width: 50%;
            border-radius: 34px;
        }

}
   
.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    padding: 40px 0;
    width: 100%;
}

.carousel-item {
    flex: 0 0 33.333%;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .carousel-item {
        flex: 0 0 100%;
        padding: 0 10px;
    }
}

     
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        .blog_inner_pannel {
            background: #fff;
            border-radius: 5px;
            box-shadow: 0 0 15px rgba(0,0,0,0.3);
            padding: 40px;
            margin-top: 115px;
          

        }
        h1 {
            color: #222;
            font-size: 32px;
            margin-bottom: 20px;
            font-weight: 600;
        }
        h2 {
            color: rgb(30 58 95 / var(--tw-text-opacity, 1));
            font-size: 24px;
            margin: 30px 0 15px;
            font-weight: 600;
        }
        p, li {
            color: #555;
            font-size: 16px;
            margin-bottom: 15px;
        }
        ul {
            padding-left: 20px;
        }
        li {
            margin-bottom: 8px;
        }
        strong {
            color: #333;
        }
        .contact-box {
            background-color: #f5f8fc;
            border-left: 4px solid var(--secondary-color);
            padding: 15px 20px;
            margin: 20px 0;
        }
        .page-title{
            text-align: center;
            margin-top:50px;
            color:#fff;
            font-size: 55px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
        }
        .highlight {
            color: var(--primary-color);
            font-weight: 600;
        }
        @media (max-width: 768px) {
            .blog_inner_pannel {
                padding: 25px;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 22px;
            }
        }
        
    