
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --global-color:  #3982ef;
    --secondary-color: #05b8eb;
    --color-3 : #f8de46;
    --color-4:#f6b433;
    --light-color: #dfe8ff;
    --white-color:#ffffff;
    --dark-color: #0c121d;
    --link-color-normal: #222222;
    --link-color-hover:#3982ef;
    --global-color-rgb:rgb(5, 184, 235) ;
    --secondary-color-rgb: rgb(5, 184, 235);
    --responsive-breakpoint: 1200px;
    --global-font-family:'Poppins', sans-serif;
    --body-typography-font-family:'Poppins', sans-serif;
    --body-typography-variant: regular;
    --body-typography-font-size: 16px;
    --body-typography-line-height: 24px;
    --body-typography-color: #888888;
    --heading-typography-font-family:'Poppins', sans-serif;
    --heading-color: #222222;
    --heading-font-variant: 700;
    --btn-typography-font-family:'Poppins', sans-serif;
    --btn-typography-variant: 700;
    --btn-typography-font-size: 14px;
    --btn-typography-line-height: 26px;
    --border-radius: 3px;
    --color-white-100: hsl(206, 0%, 100%);
    --color-white-200: hsl(206, 0%, 90%);
    --color-white-300: hsl(206, 0%, 80%);
    --color-white-400: hsl(206, 0%, 65%);
    --color-white-500: hsl(206, 0%, 50%);
    --color-black-100: hsl(217, 30%, 18%);
    --color-black-200: hsl(217, 27%, 15%);
    --color-black-300: hsl(217, 27%, 12%);
    --color-black-400: hsl(217, 52%, 9%);
    --color-blue-100: hsl(215, 97%, 87%);
    --color-blue-200: hsl(215, 96%, 78%);
    --color-blue-300: hsl(215, 94%, 68%);
    --color-blue-400: hsl(215, 91%, 60%);
    --color-blue-500: hsl(215, 83%, 53%);
    --color-blue-600: hsl(215, 76%, 48%);
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
       0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
       0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
       0 4px 6px -2px rgba(0, 0, 0, 0.05);
       --global-linear-gradiennt:linear-gradient(135deg, #3982ef 20%, #05b8eb 100%);
 --linear-gradiennt-2:linear-gradient(135deg, #f8de46, #f6b433);
 --linear-gradiennt-3:linear-gradient(to bottom, #3982ef 20%, #05b8eb 50%, #93e8ff 80%,#d2f5ff 100% );
 --linear-gradiennt-4:linear-gradient(to top, #05b8eb, #3982ef);
}
 *,
*::before,
*::after ,ul,p{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body{
    font-family: var(--body-typography-font-family);
    overflow-x: hidden;
}
a{
  text-decoration: none;
}
a:hover {
    color: var(--global-color);
}
/********************btn1*******************/

.btn-1 {
  font-family: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8em;
  height: 2.6em;
  line-height: 2.5em;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid var(--global-color);
  transition: color 0.5s;
  z-index: 1;
  font-size: 17px;
  border-radius: 30px;
  font-weight: 500;
  color: var(--global-color);
  transition: all 0.7s;
}

.btn-1:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: var(--global-color); /* fallback */
  height: 150px;
  width: 200px;
  border-radius: 50%;
  top: 100%;
  left: 100%;
  transition: all 0.7s;
}

/* Add gradient on hover */
.btn-1:hover:before {
  top: -30px;
  left: -30px;
  background: var(--linear-gradiennt-3); /* Apply gradient here */
}

.btn-1:hover {
  color: #fff;
  border-color: #fff;
  transition: all 0.7s;
}

.btn-1:active:before {
  background: var(--global-color);
  transition: background 0s;
}
  .title{
font-family: var(--global-font-family);
font-size: 40px;
background: var(--global-linear-gradiennt);
background-size: 100% 100%; /* Full height so gradient spans entire block */
background-repeat: no-repeat;
background-position: top; /* Align gradient from top for all lines */

-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
color: transparent;

text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
margin-bottom: 20px;
font-weight: var(--heading-font-variant);
  }
  .sub-title{
    font-family: var(--global-font-family);
    font-size: 24px;
    background: var(--global-linear-gradiennt);
    background-size: 100% 100%; /* Full height so gradient spans entire block */
    background-repeat: no-repeat;
    background-position: top; /* Align gradient from top for all lines */
    
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    font-weight: var(--heading-font-variant);
  }
  .points {
    list-style: none; /* default bullet remove */
    padding: 0;
    margin: 0;
  }
  
  .points li {
    position: relative;
    padding-left: 30px; /* space for icon */
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  .points li::before {
    content: "\f058"; /* Font Awesome icon code (checkmark icon) */
    font-family: "Font Awesome 6 Free"; 
    font-weight: 900; /* For solid icons */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 22px;
  
    background: var(--global-linear-gradiennt);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .w-20{
    width: 20%;
  }
/*********************btn2*************************/ 
  
section{
    padding: 60px 0;
}
/* h1, h2, h3, h4 {
  font-weight: var(--heading-font-variant);
  background: var(--global-linear-gradiennt);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: top;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
} */

/*********Header start**********/
.navbar-brand img{
  max-height: 100px;
}
/* Navbar Styling */
.custom-navbar {
  transition: all 0.4s ease;
  background: #ffffff !important;
  padding: 0.8rem 0;
  box-shadow: none;
  border-bottom: 1px solid #ccc;
}

.navbar-brand img {
  height: 60px;
}

.nav-link {
  color: #222 !important;
  font-weight: 500;
  margin-left: 10px;
  position: relative;
  transition: 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--global-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--global-color) !important;
}

.nav-link.active {
  color: var(--global-color) !important;
}

/* Sticky Header Class (will be added via jQuery) */
.sticky-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff !important;
  z-index: 999;
  
  /* Smooth transition */
  transition: all 0.4s ease-in-out;

  /* Awesome shadow */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.sticky-header .custom-navbar{
  border-bottom: none;
}


.banner-section{
  background: var(--global-linear-gradiennt);
  padding-bottom: 0;
}
  .banner-column {
    position: relative;
    display: grid;
    align-items: center;
    row-gap: 2rem;
  }

  .banner-image {
   width: 100%;
  }
  @media only screen and (min-width: 48rem) {
    .banner-column {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      justify-content: center;
      margin-top: 4rem;
    }
  }
  @media only screen and (min-width: 64rem) {
    .banner-column {
      grid-template-columns: 1fr -webkit-max-content;
      grid-template-columns: 1fr max-content;
      -moz-column-gap: 2rem;
           column-gap: 2rem;
    }
  }
  .banner-image {
    display: block;
    max-width: 25rem;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    justify-self: center;
  }
  @media only screen and (min-width: 48rem) {
    .banner-image {
      order: 1;
      max-width: 28rem;
      height: auto;
    }
  }
  @media only screen and (min-width: 64rem) {
    .banner-image {
      max-width: 33rem;
      height: auto;
      
    }
  }
  .banner-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 1.5rem;
  }
  .banner-inner h3, .banner-inner h1{
    color: #fff;
  }
  .banner-inner .points li {
    color: #fff;
}
.banner-inner .points li::before {
  -webkit-text-fill-color: #fff;

}
/****************Header start*****************/

/****************Header end*****************/



/****************Section 1 start*****************/
.plugin-feature-bg, .plugin-feature-bg2 {
    position: absolute;
    left: 0;
    top: 40px;
    width: 40%;
    height: calc(100% - 180px);
    background-image: url('../img/plug-f2bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}
.plugin-feature-bg2 {
  left: auto;
  right: 0;
  bottom: 140px;
  
}
.feature-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 1;
}
/****************Section 1 end*****************/


/****************Section 2 start*****************/
.feature-section {
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: overlay;
  padding-top: 0;
}

.feature-section .sub-title{
margin-bottom: 35px;
}
.flip-card {
  background-color: transparent;
  width: 180px;
  height: 200px;
  perspective: 1000px;
  font-family: var(--global-font-family);
  margin: auto;
  cursor: pointer;
}
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
   
  }
  
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  
  .flip-card-front, .flip-card-back {
    box-shadow: 0 8px 14px 0 #ffffff43;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border: 2px solid var(--white-color);
    border-radius: 1rem;
  }
  
  .flip-card-front {
    background: #fff;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
  .flip-card-front img{
    width: 50px;
    margin-bottom: 15px;
    color: var(--global-color);
    filter: brightness(0) saturate(100%) invert(27%) sepia(15%) saturate(6093%) hue-rotate(234deg) brightness(92%) contrast(100%);
  }
  .flip-card-front h6{
    font-size: 18px;
    font-weight: 600;
    color: var(--global-color);
  }
  .flip-card-back {
    background: var(--global-linear-gradiennt);
    color: white;
    transform: rotateY(180deg);
    padding: 20px;
}
/****************Section 2 end*****************/



/****************Section 3 start*****************/
@media (min-width: 1000px) {
    #timeline .demo-card:nth-child(even) .head::after, #timeline .demo-card:nth-child(odd) .head::after {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-top: 15px solid transparent;
      border-bottom: 15px solid transparent;
    }
  
    #timeline .demo-card:nth-child(even) .head::before, #timeline .demo-card:nth-child(odd) .head::before {
      position: absolute;
      content: "";
      width: 15px;
      height: 15px;
      background-color: var(--global-color);
      border-radius: 9px;
      box-shadow: 0px 0px 2px 8px #f7f7f7;
    }
  }
  /* Some Cool Stuff */
  .demo-card:nth-child(1) {
    order: 1;
  }
  
  .demo-card:nth-child(2) {
    order: 4;
  }
  
  .demo-card:nth-child(3) {
    order: 2;
  }
  
  .demo-card:nth-child(4) {
    order: 5;
  }
  
  .demo-card:nth-child(5) {
    order: 3;
  }
  
  .demo-card:nth-child(6) {
    order: 6;
  }
  
  /* Border Box */
  * {
    box-sizing: border-box;
  }
  
  /* Fonts */
 
  #timeline {
    background: var(--white-color);
    padding-bottom: 0;
  }
  #timeline h1 {
    text-align: center;
    font-size: 3rem;
    font-weight: 200;
    margin-bottom: 20px;
  }
  #timeline p.leader {
    text-align: center;
    max-width: 90%;
    margin: auto;
    margin-bottom: 45px;
  }
  #timeline .demo-card-wrapper {
    position: relative;
    margin: auto;
  }
  @media (min-width: 1000px) {
    #timeline .demo-card-wrapper {
      display: flex;
      flex-flow: column wrap;
      width: 1170px;
      height: 1650px;
      margin: 0 auto;
    }
  }
  #timeline .demo-card-wrapper::after {
    z-index: 1;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    border-left: 1px solid rgba(191, 191, 191, 0.4);
  }
  @media (min-width: 1000px) {
    #timeline .demo-card-wrapper::after {
      border-left: 1px solid #bdbdbd;
    }
  }
  #timeline .demo-card {
    position: relative;
    display: block;
    margin: 10px auto 80px;
    max-width: 94%;
    z-index: 2;
  }
  @media (min-width: 480px) {
    #timeline .demo-card {
      max-width: 60%;
      box-shadow: 0px 1px 22px 4px rgba(0, 0, 0, 0.07);
    }
  }
  @media (min-width: 720px) {
    #timeline .demo-card {
      max-width: 40%;
    }
  }
  @media (min-width: 1000px) {
    #timeline .demo-card {
      max-width: 450px;
      height: 400px;
      margin: 90px;
      margin-top: 45px;
      margin-bottom: 45px;
    }
    #timeline .demo-card:nth-child(odd) {
      margin-right: 45px;
    }
    #timeline .demo-card:nth-child(odd) .head::after {
      border-left-width: 15px;
      border-left-style: solid;
      left: 100%;
    }
    #timeline .demo-card:nth-child(odd) .head::before {
      left: 488.5px;
    }
    #timeline .demo-card:nth-child(even) {
      margin-left: 45px;
    }
    #timeline .demo-card:nth-child(even) .head::after {
      border-right-width: 15px;
      border-right-style: solid;
      right: 100%;
    }
    #timeline .demo-card:nth-child(even) .head::before {
      right: 486.5px;
    }
    #timeline .demo-card:nth-child(2) {
      margin-top: 180px;
    }
  }
  #timeline .demo-card .head {
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 400;
  }
  #timeline .demo-card .head .number-box {
    display: inline;
    float: left;
    margin: 15px;
    padding: 10px;
    font-size: 35px;
    line-height: 35px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.17);
  }
  #timeline .demo-card .head h2 {
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: inherit;
    letter-spacing: 2px;
    margin: 0;
    padding-bottom: 6px;
    line-height: 1rem;
    color: var(--white-color);
    text-align: left;
    -webkit-text-fill-color: #fff;
  }
  @media (min-width: 480px) {
    #timeline .demo-card .head h2 {
      font-size: 165%;
      line-height: 1.2rem;
    }
  }
  #timeline .demo-card .head h2 span {
    display: block;
    font-size: 0.6rem;
    margin: 0 0 8px;
  }
  @media (min-width: 480px) {
    #timeline .demo-card .head h2 span {
      font-size: 0.8rem;
    }
  }
  #timeline .demo-card .body {
    background: #fff;
    border: 1px solid rgba(191, 191, 191, 0.4);
    border-top: 0;
    padding: 15px;
  }
  @media (min-width: 1000px) {
    #timeline .demo-card .body {
      height: 315px;
    }
  }
  #timeline .demo-card .body p {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 15px;
  }
  #timeline .demo-card .body img {
    display: block;
    width: 100%;
  }
  #timeline .demo-card {
    background: var(--linear-gradiennt-3);
  }
  #timeline .demo-card .head::after {
    border-color: var(--global-color);
  }
/****************Section 3 end*****************/






/****************Section 4 start*****************/

.pricing-table{
   box-shadow: 0px 0px 18px #ccc;
   text-align: center;
   padding: 30px 0px;
   border-radius: 5px;
   position: relative;
 
}
.pricing-table .head {
    border-bottom:1px solid #eee;
    padding-bottom: 50px;
    transition: all 0.5s ease;
}
.pricing-table:hover .head{
   border-bottom:1px solid var(--global-color);
   
}

.pricing-table .head .title{
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
}

.pricing-table .content .price{
    background: var(--global-linear-gradiennt);
    width: 90px;
    height: 90px;
    margin: auto;
    line-height: 90px;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0px 0px 10px #ccc;
    margin-top: -50px;
     transition: all 0.5s ease;
}
.pricing-table:hover .content .price{
    transform: scale(1.2);
 
}
.pricing-table .content .price h1{
    color:#fff;
    font-size: 24px;
    font-weight: 600;
    display: inline;
}
.sign-up .btn-1{
 margin: auto;
}
.pricing-table .content ul{
   list-style-type: none;
   margin-bottom: 20px;
   padding-top: 10px;
}

.pricing-table .content ul li{
    margin: 20px 0px;
    font-size: 14px;
    color:#555;
}


/****************Section 4 end*****************/






/****************Section 5 start*****************/

/****************Section 5 end*****************/




/****************Footer start*****************/
.footer.plugin-footer {
    padding-top: 180px;
    padding-bottom: 50px;
    position: relative;
}
.footer {
  background: var(--global-linear-gradiennt);
}
.bg-img {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.footer.plugin-footer .footer-shape {
    position: absolute;
    left: 0;
    top: -1px;
    width: 100%;
    height: 80px;
}
.footer .widget {
    margin-bottom: 30px;
    padding: 0;
    background-color: transparent;
}
.footer .widget:last-child {
    margin-bottom: 50px;
}
.widget-logo{
   max-width: 250px;
   margin-bottom: 20px;
}
.footer .widget.widget_text p {
    margin-bottom: 30px;
    font-weight: 300;
    max-width: 380px;
}
.social-icon.plug a {
    background: #fff;
}
.social-icon a:not(:last-child) {
    margin-right: 10px;
}
.social-icon a {
    width: 40px;
    height: 40px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #292929;
    background: #f9f9f9;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 20px;
}
.social-icon a:hover{
  color: var(--white-color);
  background: var(--linear-gradiennt-4);
  border: 1px solid var(--white-color);
}
.social-icon.plug a i {
    color: #292929;
}
.widget .widget_title {
    font-size: 20px;
    color: #292929;
    margin-bottom: 20px;
}

.footer .widget .widget_title h3 {
    font-size: 26px;
    color: #fff;
    -webkit-text-fill-color:#fff;
    font-weight: 700;
    margin-bottom: 24px;
}
.widget.widget_footer_menu{
    max-width: 250px;
    margin: auto;
}
.widget.widget_footer_menu .footer_menu ul {
    padding: 0;
    list-style: none;
   margin: 0;
}
.widget.widget_footer_menu .footer_menu li a {
    color: #fff;
    font-weight: 300;
    text-transform: capitalize;
    padding-bottom: 10px;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease-in;
}
.widget.widget_footer_menu .footer_menu li a:hover{
  font-weight:500;
}
/****************Footer end*****************/

/****************Animation**********************/
@keyframes upDown {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(30px); 
  }
}
.moving-image {
  width: 200px;
  animation: upDown 2s infinite alternate;
}


/*******Pricinng page css*******/
.other-hero{
  padding-bottom: 0;
  padding-top: 60px;
  background: var(--global-linear-gradiennt);
}
.other-hero-content {
  margin-bottom: 20px
}
.other-hero-content .title{
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}
.other-hero .other-hero-content img{
max-width: 600px;
}
.other-hero-content .sub-tilte{
  color: #fff;
}
/*************FAQ************/
.faq-container {
  margin-top: 50px;
}
.category-list {
  border-right: 2px solid #ccc;
  padding: 20px;
  background: #fff;
 
}
.category-list .list-group-item {
  border: none;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 20px;
  padding: 15px 20px;
}
.category-list .list-group-item:last-child {
  border-bottom: none;
}
.category-list .list-group-item.active {
  background-color: transparent;
  color: var(--global-color);
  border-left: 3px solid var(--global-color);
  box-shadow: var(--shadow-large);
}
.accordion-button::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\2b"; /* plus icon */
  background-image: none;
}

.accordion-button {
  font-weight: 600;
}
.accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: rotate(-135deg);
}
.faq-section h3{
  margin-bottom: 30px;
}
.accordion-button:not(.collapsed) {
  color: var(--global-color);
  background-color: var(--white-color);
  box-shadow: none;
}
.accordion-item{
  margin-bottom: 20px;
  box-shadow: var(--shadow-medium);
}
.accordion-button:focus {
  border-color: inherit;
  outline: 0;
  box-shadow: none;
}
/******Contact us*******/
.contact-form {
  padding: 30px;
}
.common-input {
  font-weight: 400;
  outline: none;
  width: 100%;
  padding: 10px 0px;
  background-color: transparent !important;
  border: none;
  border-bottom: 1px solid var(--body-typography-color);
  color: hsl(var(--dark-color));
  line-height: 1;
  font-size: var(--body-typography-font-sizes);
}
.common-input:focus {
  border-bottom: 1px solid var(--global-color);
  box-shadow: none;
}
.contact-us .title{
  margin-bottom: 40px;
}
.contact-us .card .d-flex .icon{
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--global-linear-gradiennt);
  margin-right: 25px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.contact-us .card{
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 5px;
}
.contact-img{
  max-width: 415px;
  margin: auto;
}