
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body{
    font-family: 'Poppins', sans-serif;
}

.cursor-container {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.cursor {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 1px solid #000000; /* Red border color */
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: border 0.3s ease-out;
}

.highlight {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.highlight::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    z-index: -1;
    transition: background-color 0.3s ease-in-out;
    height: 45%;
}

.animated_heading_text:hover .highlight::after {
    background-color: #deefd7;
}

.dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #000000; 
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
/* hero section styling */
.HeroSection{
    padding: 30px 10px;
}

.HeroHeading{
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 35px;
}

.HeroHeading strong{
    font-weight: 600;
}

.HeroParagraph{
    padding: 10px 20px;
    border-left: 3px solid #42B242;
    font-size: 14px;
}

/* who we are section styling */
.who_we_are_area{
    background-color: #F9FBFA;
    padding: 5% 0;
}

.who_we_are_area .content_area{
    padding: 0 8%;
}

.who_we_are_area .content_area h2{
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #42B242;
}

.who_we_are_area .content_area p{
    font-size: 14px;
    line-height: 2em;
}

.who_we_are_area .who_we_are_items{
    align-items: center;
    gap: 60px;
    padding: 8% 0 0%;
}

.who_we_are_items .box_item{
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: inset 0px 5px 20px #00000029;
    opacity: 0.8;
    padding: 50px 40px;
    flex: 1;
}

.who_we_are_items .box_item:hover{
    background-color: #f2f8f0;
    cursor: pointer;
}

.who_we_are_items .box_item .box_item_content {
    min-height: 94.5px;
}

.who_we_are_items .box_item .box_item_content span{
    font-size: 14px;
}

.who_we_are_items .box_item .box_item_inner{
    gap: 15px;
}

.who_we_are_items .box_item img{
   width: 70px;
}

.box_item {
    transition: background-color 0.3s ease-in-out;
}

/* about us section styling  */
.about_us_section{
    padding: 5% 0;
}

.title_heading{
    padding-bottom: 25px;
    margin-bottom: 40px;
    border-bottom: 2px solid #42B242;
    font-size: 24px;
    color: #1A471A;
}

.about_us_section .row{
    gap: 20px;
}

.about_us_item{
    flex: 1;
}

.about_us_item_content{
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: inset 0px 5px 20px #00000029;
    opacity: 0.8;
    padding: 35px;
    text-align: center;
}

.about_us_item_content h3{
    padding-bottom: 20px;
}

.about_us_item_content p{
    font-size: 14px;
}

/* feature section styling */
.feature_section{
    background-color: #F9FBFA;
    padding: 5% 0;
}

.feature_section .row{
    gap: 70px;
    margin: 0 5%;
}

.feature_item{
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 10px 25px #00000029;
    border-radius: 5px;
    padding: 50px 30px;
    opacity: 1;
    flex: 1;
    flex-wrap: wrap;
    max-width: 29.33%;
}

@media (max-width: 600px) {
    .feature_item{
        max-width: 100%;
    }
    .post_item{
        max-width: 100% !important;
    }
}
.feature_item_content{
    text-align: center;
}

.feature_item_content img{
    width: 80px;
    padding-bottom: 30px;
}

/* company updates section */
.company_updates_section{
    padding: 5% 0;
}

.company_updates_section .row{
    gap: 40px;
    margin: 0 4%;
}

.post_item{
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 10px 25px #00000029;
    border-radius: 10px;
    opacity: 1;
    flex: 1;
    max-width: 29.33%;
    padding: 20px 10px;
    transition: background-color 0.3s ease-in-out;
}

.post_item:hover{
    background-color: #EDF6E9;
    cursor: pointer;
}

.post_item_content_inner{
    gap: 10px;
    padding-bottom: 20px;
}

.post_item_content_inner h5{
    font-size: 1rem;
}

.post_item_content{
    position: relative;
}

.post_item_content .published_time{
    position: absolute;
    right: 10px;
    top: -13px;
    font-size: 12px;
}

.post_item_content img{
    width: 80px;
}

.post_item_content p{
    color: #8F8F8F;
    font-size: 14px;
}

.post_item_content a.readmore{
    color: #000;
    display: block;
    text-align: right;
    font-size: 14px;
}

/* schedule section styling  */
.schedule_section{
    /* background-color: #F9FBFA; */
    background: url(../images/schedule_bg.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 5% 0;
}

/* footer styling starts */
.footer_area{
    background-color: #4E944E;
    color: #fff;
    padding: 5% 0;
}

.footer_logo_colum img{
    width: 250px;
}

.footer_logo_colum p{
    font-weight: 300;
    font-size: 15px;
}

.footer_inner a{
    color: #fff;
    display: block;
    text-decoration: none;
    margin: 10px;
    font-weight: 300;
    font-size: 15px;
}

.footer_last_colum{
    position: relative;
}

.footer_social_area{
    padding-left: 10px;
    position: absolute;
    top: 80%;
}

.footer_social_area a{
    margin: 2px;
}

.footer_social_area a svg{
    font-size: 22px;
}

/* our tools page */

.toolsHeroSection{
    padding: 5% 0;
}

.toolsHeroHeading{
    font-size: 34px;
    font-weight: 300;
    margin-bottom: 20px;
    padding: 10px 80px 10px 20px;
    border-left: 3px solid #1A471A;
}

.toolsHeroHeading strong{
    font-weight: 600;
    color: #42B242;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.toolsHeroHeading strong:hover {
    color: #1A471A; /* Set the text color on hover */
}

.toolsHeroHeading strong::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: transparent; /* Initial background color */
    z-index: -1;
    transition: background-color 0.3s ease-in-out;
}

.toolsHeroHeading strong:hover::after {
    background-color: #EDF6E9; /* Set the background color on hover */
}

.toolsHeroSection img{
    max-width: 450px;
}

.tools_area{
    background-color: #F9FBFA !important;
    background: url(../images/tools_bg.png);
    background-size: cover;
    background-position: center center;
    padding: 5% 0;
}

.tools_items{
    gap: 10px;
}

.tools_items .box_item{
    flex: 1;
    max-width: 33.33%;
}

.tools_items .box_item:hover .box_item_logo_area, .tools_items .box_item:hover .box_item_content_area{
    box-shadow: none;
    background: #EDF6E9;
    cursor: pointer;
}

.box_item_logo_area{
    background: #EDF6E9 0% 0% no-repeat padding-box;
    box-shadow: inset 0px 5px 20px #00000029;
    opacity: 0.8;
    padding: 50px 20px;
    text-align: center;
}

.box_item_content_area{
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: inset 0px 5px 20px #00000029;
    opacity: 0.8;
    padding: 30px 0px;
}

.box_item_content_area p{
    font-size: 13px;
    padding-bottom: 10px;
}

.tools_signup_area{
    padding: 5% 0;
}

.tools_signup_area img{
    max-width: 400px;
}

.tools_signup_area h2{
    color: #42B242;
    text-align: right;
    font-weight: 600;
}

.tools_signup_area p, .tools_signup_area form{
    text-align: right;
}

.tools_signup_area form input[type="text"]{
    border: 1px solid #42B242;
    box-shadow: 0px 5px 13px #00000029;
}

.tools_signup_area form input[type="submit"]{
    padding: 6px 25px;
}

.tools_signup_area form{
    padding-top: 30px;
}

/* Request a demo page styling */
.requestdemo_hero{
    padding: 5% 0;
    background-color: #F9FBFA;
}

.hero_content_area{
    border-left: 3px solid #42B242;
    padding: 10px 20px;
}

.hero_content_area h1{
    font-size: 34px;
    color: #1A471A;
}

.hero_content_area p{
    margin-bottom: 0;
}

.requestdemo_boxes_area{
    padding: 5% 0;
}

.requestdemo_items{
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.requestdemo_items .box_item .box_item_inner{
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: inset 0px 5px 20px #00000029;
    opacity: 0.8;
    padding: 60px 20px;
}

.requestdemo_items .box_item img{
    max-width: 90px;
}

.requestdemo_items .box_item h4{
    padding-top: 20px;
}

.requestdemo_items .box_item svg{
    font-size: 40px;
    color: #42B242;
}

/* =============================== */

.request_demo_form_area {
    padding: 5% 0;
    background-color: #F9FBFA;
}

.request_demo_form_area input:focus, .request_demo_form_area textarea:focus{
    box-shadow: none;
    background-color: transparent;
    border-color: #C5C5C5;
}

.request_demo_form_area .input-group input, .request_demo_form_area .input-group-text{
    background: transparent;
    border: none;
    border-bottom: 1px solid #C5C5C5;
    border-radius: initial;
}

.request_demo_form_area textarea{
    border: 1px solid #C5C5C5;
    background-color: transparent;
}

.request_demo_form_area .form-check-input[type=checkbox]{
    border: 2px solid #42B242;
}

.request_demo_form_area svg{
    color: #42B242;
    font-size: 18px;
}

.request_demo_form_area .form_radio_row{
    gap: 10px;
    padding-left: 13px;
    margin-bottom: 20px;
}

.request_demo_form_area .radio_bg{
    background-color: #fff;
    padding: 5px;
}

/* ================================= */

/* Genius page styling starts */

.genius_hero_section{
    background: url(../images/genius_banner_bg.png);
    background-size: cover;
    background-position: center center;
    padding: 20% 0;
}

.genius_hero_section .logo_area{
    padding: 0 40px 15px;
    border-bottom: 3px solid #42B242;
}

/* ======================================== */
.genius_intro_section{
    padding: 5% 0;
}

/* ======================================= */

.why_genius_section{
    padding: 5% 0;
    background-color: #F6FAFF;
}

.why_genius_section .col-md-6 img{
    max-width: 100px;
    padding-bottom: 20px;
}

.why_genius_section .col-md-6 h3{
    color: #4E944E;
    font-weight: 600;
}

.why_genius_section .col-md-6 a{
    color: #646464;
    margin-top: 30px;
}

.why_genius_section .second_row{
    margin-top: 8%;
}

.statistics_row{
    gap: 50px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 8%;
}

.statistics_row .box_section{
    background-color: #fff;
    text-align: center;
    padding: 4% 2%;
}

.statistics_row .box_section h4{
    color: #4E944E;
    font-weight: 600;
}

.statistics_row .box_section p{
    color: #646464;
}
/* ============================== */

.process_section{
    padding: 5% 0;
}

.process_img_section img{
    max-width: 90%;
}
.process_section_flex{
    display: flex;
    gap: 20px;
    align-items: center;
    padding-bottom: 10px;
}

.process_section_flex img{
    max-width: 80px;
}

.process_section_item{
    padding-bottom: 7%;
}

.process_section_item:last-child{
    padding-bottom: 0;
}

/* ============================ */

.signup_section{
    background: url('../images/bg-signup.png');
    background-size: cover;
    background-position: center center;
    padding: 8%;
}

.signup_form_section{
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 10px 20px #00000029;
    border-radius: 25px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 3% 10%;
    text-align: center;
    opacity: 0.8;
}


/* =============================== */

.login_section{
    background: url('../images/bg-login.png');
    background-size: cover;
    background-position: center center;
    padding: 6%; 
}

.login_form_section{
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 10px 20px #00000029;
    border-radius: 25px;
    opacity: 1;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 6% 4%;
    text-align: center;
    opacity: 0.9;
}

.content_area{
    padding: 10px 20px;
    /* border-left: 3px solid #42B242; */
}

.content_area h3{
    color: #1A471A;
    font-weight: 600;
}

.login_form_section form{
    padding-top: 50px;
}
.login_form_section h3{
    border-top: 2px solid #42B242;  
    padding-top: 5px;
    font-weight: 400;
}

.schedule_btn{
    padding: 6px 30px;
    background: #42B242;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 40px;
    display: inline-block;
}

.right_menu_area{
    align-items: center;
}

.right_menu_area a{
    text-decoration: none;
}

@media (max-width: 992px) {
    .navbar-brand img{
        max-width: 200px;
    }
    .right_menu_area {
        flex-wrap: wrap;
        flex-direction: column;
        width: 100%;
        gap: 20px;
        align-items: start;
    }
    .who_we_are_area .about_content_area{
        gap: 30px;
    }
    .who_we_are_area .who_we_are_items{
        padding: 8% 3% 0;
    }
    .tools_items{
        flex-direction: column;
    }
    .tools_items .box_item{
        max-width: 100%;
    }
    .toolsHeroSection img{
        max-width: 100%;
    }

    .tools_signup_area form .row{
        gap: 20px;
    }
}

.fancy-menu {
    position: fixed;
    top: 35%;
    left: 3%;
    z-index: 1000;
}

/* @media (min-width: 1500px){
    .fancy-menu {
        left: 10%;
        top: 30%;
    }
} */
.fancy-menu ul {
    list-style: none;
    padding: 0;
    background-color: #fff;
    border: 1px solid #286140;
    border-radius: 30px;
    margin: 0 auto;
    padding: 5px;
    text-align: center;
}

.fancy-menu li {
    margin-bottom: 10px;
}

.item-dot {
    width: 7px;
    height: 7px;
    background-color: #286140;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    position: relative;
}

.item-dot:hover::after {
    opacity: 1;
}

#particles-container {
    position: absolute;
    width: 100%;
    height: 80%;
    background-color: transparent;
}

.meta_information{
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
}

.meta_information .first_col span{
    font-size: 12px;
}

.meta_information .second_col a svg{
    color: #42B242;
    margin: 2px;
}

.meta_information .first_col svg{
    color: #42B242;
}

.meta_information .first_col span{
    color: #737373;
}

/* fade Animations css starts */
.animate {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
  
  /*=== Animations start here  ===*/
  
  /*==== FADE IN UP ===*/
  @-webkit-keyframes fadeInUp {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, 100%, 0);
      transform: translate3d(0, 100%, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, 100%, 0);
      transform: translate3d(0, 100%, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  
  .fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
  }
  
  /*=== FADE IN DOWN ===*/
  .fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
  }
  @-webkit-keyframes fadeInDown {
    0% {
      opacity: 0;
      -webkit-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
    }
    100% {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  @keyframes fadeInDown {
    0% {
      opacity: 0;
      -webkit-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
    }
    100% {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  
  /*=== FADE IN LEFT ===*/
  @-webkit-keyframes fadeInLeft {
    from {
      opacity: 0;
      -webkit-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      -webkit-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  
  .fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
  }
  
  /*==== FADE IN RIGHT ===*/
  @-webkit-keyframes fadeInRight {
    from {
      opacity: 0;
      -webkit-transform: translate3d(100%, 0, 0);
      transform: translate3d(100%, 0, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  @keyframes fadeInRight {
    from {
      opacity: 0;
      -webkit-transform: translate3d(100%, 0, 0);
      transform: translate3d(100%, 0, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  
  .fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
  }
  
  /*=== FADE IN  ===*/
  @-webkit-keyframes fadeIn {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  .fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
  }

  /* animations styling end */

  .primary_btn{
    background-color: #42B242;
    border-color: #42B242;
    color: #fff;
  }

  .primary_btn:hover{
    background-color: #286140 !important;
    color: #fff !important;
  }

  .outline_primary_btn{
    border-color: #42B242;
  }

  .outline_primary_btn:hover{
    background-color: #286140 !important;
    color: #fff !important;
  }

  .primary_text_color{
    color: #42B242;
    text-decoration: none;
  }

  .about_us_section.about_page{
    background-color: #F4F5F7;
  }

  .about_us_section.about_page .about_us_item{
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: inset 0px 5px 20px #00000029;
    padding: 40px;
  }

  .about_us_section.about_page .about_us_item:hover{
    background: #f0f7ed;
    cursor: pointer;
  }

  .about_us_section.about_page .about_us_item img{
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto;
    display: block;
  }

  .about_us_section.about_page .about_us_item .about_us_item_content{
    background: initial;
    box-shadow: none;
  }

.how-it-work.about_us_page_hiw{
    background: transparent;
}

.about_us_page_hiw .text_right{
    text-align: right;
}

.about_us_page_hiw .what-we-sec{
    background: #f0f7ed;
    box-shadow: inset 0px 5px 20px #00000029;
    border-radius: 10px;
}

.about_us_page_hiw .what-we-sec img, 
.about_us_page_hiw .what-we-sec .tools-title, 
.about_us_page_hiw .what-we-sec .vision-text{
    text-align: center;
    display: block;
    margin: 0 auto;
}


.signup_form_section input:focus, .signup_form_section select:focus, .login_form_section input:focus{
    box-shadow: none;
    background-color: transparent;
    border-color: #C5C5C5;
}

.signup_form_section .input-group input, .signup_form_section .input-group-text, 
.signup_form_section .input-group select, .login_form_section .input-group input,
.login_form_section .input-group-text{
    background: transparent;
    border: none;
    border-bottom: 1px solid #C5C5C5;
    border-radius: initial;
}

.signup_form_section svg, .login_form_section svg{
    color: #42B242;
    font-size: 18px;
}