@charset "utf-8";

/* CSS Document */
body, p, h1, h2, h3, h4,h5,h6,span, ul,ol, li,dl,dt,dd,form{padding:0;margin:0;}
html, body { padding: 0; margin: 0; height:auto;}

#p0 { text-indent: 2em; }
.row>* {
	padding: 0;
	
}


/*--------------FONTS--------------*/
/*@font-face {
  font-family: 'Graphik-Light';
  src: url('../fonts/Graphik-Light.eot');
  src: url('../fonts/Graphik-Light.eot?#iefix') format('embedded-opentype'),
       url('../fonts/Graphik-Light.woff') format('woff'),
       url('../fonts/Graphik-Light.ttf') format('truetype'),
       url('../fonts/Graphik-Light.svg#Graphik-Light') format('svg');
  font-weight: normal;
  font-style: normal;
}*/
@font-face {
  font-family: "Poppins-Light";
  src: url("../fonts/Poppins-Light.eot");
  src: url("../fonts/Poppins-Light.eot?iefix") format("embedded-opentype"), url("../fonts/Poppins-Light.woff") format("woff"), url("../fonts/Poppins-Light.ttf") format("truetype"), url("../fonts/Poppins-Light.svgPoppins-Light") format("svg");
  font-weight: normal;
  font-style: normal; 
}


/*Header block */
header .head_main {
	background: #ffffff !important;
}
header .head_main {
/*	position: absolute;*/
	left: 0;
	top: 0;
	background: rgba(0,0,0,0);
	width: 100%;
/*	z-index: 10;*/
}
header .head_main {
	padding: 20px;
}
header .head_main .head-menu {
	align-items: center;
  padding-right: 0;
}
header .head_main .head-menu .menu {
  padding-right: 0;
}
header .head_main .head-menu .menu .collapse.navbar-collapse {
  justify-content: right;
}
header .head_main .head-menu .menu nav.navbar {
	background: transparent!important;
}
header .head_main .head-menu .menu nav.navbar ul.navbar-nav li a {
	font-family: poppins;
	color: #4c4c4c;
	display: block;
	padding: 10px 18px;
}
header .head_main .head-menu .menu nav.navbar ul.navbar-nav li a:hover {
	color: #466adc;
	transition: 1s;
}
.logo img{
	width: 100%;
}

/*Header Ends*/

/*Main Content Starts*/
.herobanner {
	background: url("..//static/assets/images/banner-img.png");
  height: 50%;
 	background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.title-text {
	font-family: poppins;
 	font-weight: 600;
 	color: #fff;
 	font-size: 30px;
 	text-transform: uppercase;
  padding-top: 10px;
  padding-bottom: 5px;
}
.para-text {
	font-family: poppins;
/* 	font-weight: 600;*/
 	color: #fff;
 	font-size: 18px;
/* 	text-transform: uppercase;*/
  padding-top: 10px;
  padding-bottom: 5px;
}
.btn-primary {
  background-color: #3A31A4 !important;
  border-color: #3A31A4 !important;
  border-radius: 20px !important;
  padding: 5px;
  }

li.nav-item {
    font-size: 15px;
}
  .banner-content{
  	padding: 30px;
  }

  body {
      font-family: poppins;
      background-color: #fff;
  }

  .feature-box {
      background: #fff;
      padding: 10px;
      border-radius: 12px;
      text-align: center;
      transition: all 0.10s ease-in-out;
      box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
      height: 100%;
      border-color: #efefef;
  }

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

  .feature-box i {
      font-size: 32px;
      color: #3a31a4;
      padding: 12px;
  }

  .feature-box h4 {
      font-weight: bold;
      margin-top: 10px;
  }

  .smartwatch {
      max-width: 100%;
      height: auto;
      display: block;
      margin: auto;
  }

  .feature-section {
      display: flex;
      align-items: center;
/*      justify-content: space-between;*/
      flex-wrap: wrap;
      margin-top: 40px;
  }

  .features {
      flex: 1;
      max-width: 60%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
  }
   .features h4{
   	font-size: 18px;
   }
  .features p{
   	font-size: 13px;
   }
  .image-container {
      flex: 1;
      text-align: center;
  }

/*  .image-container img {
    transform: rotate(10deg);
}

.image-container img:hover {
    opacity: 0.7;
}*/
.image-container img {
    animation: swingEffect 1s infinite alternate ease-in-out;
}

@keyframes swingEffect {
    0% {
        transform: rotate(1deg);
    }
    100% {
        transform: rotate(-1deg);
    }
}

  @media (max-width: 991px) {
      .feature-section {
          flex-direction: column;
          text-align: center;
      }

      .features {
          max-width: 100%;
          grid-template-columns: 1fr;
      }
  }

  .feature_bg{
  	background: #eef8ff;
  }
/*Key Features Section Starts*/
  .keyfeature {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 500px;
    padding-bottom: 25px;
}
.keyfeature i{
	font-size: 30px;
	color: #3a31a4;
}
.container strong{
	
	color: #000 !important;
}

.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border: 2px dashed #3a31a4;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
/*    animation: rotateEffect 5s linear infinite;*/
}
@keyframes rotateEffect {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
 i {
    display: inline-block;
}
.text-content h2{
	font-size: 50px;
    font-weight: 800;	
}
.text-content p{
	font-size: 16px;
	padding-top: 15px;
}
.text-container{
	text-align: left;
}
.text-container h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.text-container p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666;
}
.image-container1 img{
	width: 70%;
}
/*Main Content Ends*/

.footer-copyright{
	color: #fff;
}


        .carousel-item {
            background: #3a31a4; /* Blue Background */

            color: white; /* White Text */
            padding: 20px 0;
        }
        .carousel-inner {
            max-width: 100%;
            margin: auto;
        }
        .row {
            align-items: center; /* Align content vertically */
        }
        .carousel-item img {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 10px;
            transition: transform 0.5s ease-in-out, opacity 0.5s;
        }
        .carousel-item .text-content {
            padding: 20px;
            transition: transform 0.5s ease-in-out, opacity 0.5s;
            padding-right: 50px;
        }
        .carousel-item.active img,
        .carousel-item.active .text-content {
            transform: translateX(0);
            opacity: 1;
        }
        .carousel-item:not(.active) img {
            transform: translateX(-50px);
            opacity: 0;
        }
        .carousel-item:not(.active) .text-content {
            transform: translateX(50px);
            opacity: 0;
        }
/*Product Manual Starts*/

		.product_manual body {
            font-family: Arial, sans-serif;
            background-color: #f9f9f9;
            margin: 0;
            padding: 0;
            color: #333;
        }

        /* Sidebar Styling */
        .product_manual .sidebar ul li{
        	margin-bottom: 10px;
        }
        .product_manual .sidebar {
            width: 300px;
            background-color: #fff;
            padding: 10px;
        }

        .product_manual .nav-link {
            color: #333;
            font-weight: 400;
            padding: 7px 7px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease;
            font-size: 14px;
        }

        .product_manual .nav-link:hover,
        .product_manual .nav-link.active {
            background-color: #3A31A4;
            color: #fff;
            border-radius: 5px;
        }
        /*.product_manual .nav-link:focus  {
            background: unset;
            color: #333;
        }*/
        /* Dropdown Styling */
        .product_manual .dropdown-menu {
            list-style: none;
            padding-left: 20px;
            display: none;
            background: none;
            border: none;
            position: static;
        }

        .product_manual .arrow {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .product_manual .arrow.open {
            transform: rotate(180deg);
        }
        
        /* Content Styling */
        /*.product_manual .content{
        	width:100%;
        }*/
        .product_manual .section {
            display: none;
            padding: 20px;
            background-color: #ffffff;
            margin-bottom: 20px;
        }

        .product_manual h2 {
            color: #3A31A4;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .product_manual h4 {
            color: #3A31A4;
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 16px;
        }

        .product_manual pre {
            background-color: #f5f5f5;
            padding: 10px;
            border-radius: 5px;
            overflow-x: auto;
            margin-top: 10px;
        }
        .product_manual code {
            color: #3A31A4;
            font-weight: 600;
            font-size: 14px;
        }
        .product_manual .section ul {
		    list-style: none;
		    padding-left: 0;
		}

		.product_manual .section li {
		    margin-bottom: 12px;
		    color: black;
		}
		.product_manual .listpoints li{
			list-style: square;
		}
		.product_manual .hidden-section {
	        display: none;
	        margin-top: 20px;
	        margin-left: 20px;
	        padding: 20px;
	        border-left: 4px solid #3A31A4;
	        background-color: #f9f9f9;
	    }
	    .product_manual li a {
	    	color: #3A31A4;
	    	font-weight: 700;
	    } 

	    .product_manual li a:hover, .product_manual li a:active {
	    	color: #3A31A4;
	    	font-weight: 400;
	    } 
	    .product_manual .screenshot {
		    width: 100%; /* Adjust size as needed */
		    max-width: 600px; /* Limits the maximum width */
		    height: auto; /* Keeps the aspect ratio */
		    margin-top: 12px;
		    border-radius: 8px;
		    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
		}

/*Product Manual Ends*/

/*-----------banner section ends------------*/

footer {
    
    width: 100%;
    color: #fff;
    text-align: center;

}

.product_manual {
	margin-bottom: 50px;
}
.product_manual .sidebar {
	width: 300px;
	margin-bottom: 50px;
	top: 100px;
}
.product_manual .content {
	margin-left: auto;
}
.scrollfx {
	overflow-y: scroll;
	height: calc(100vh - 200px);
	    padding: 10px;

}
.scrollfx::-webkit-scrollbar {
  width: 5px;
  height: 10px;
}
 
.scrollfx::-webkit-scrollbar-track {
  background: transparent;
  height: 10px;
/*  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);*/
}
 
.scrollfx::-webkit-scrollbar-thumb {
  background: #777777;
  border: 5px solid #777777;
  height: 10px;
  border-radius: 10px;
}
