@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  body{background-color: var(--app-container);font-family: Inter; overflow-x: hidden;}
  html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
  }
  :root {
    --app-container: #ffffff;
    --main-color: #EDEDED;
    --secondary-color: linear-gradient(11deg, white, #D2FFDE);
    --projects-section: #FFFFFF;
    --card-bg: linear-gradient(111.37deg, #FFFFFF 14.66%, rgba(248, 248, 248, 0.88) 87.33%);
    --tree-card-bg: linear-gradient(90deg, rgba(245,254,248,1) 45%, rgba(172,246,191,1) 100%);
    --card-back: linear-gradient(111.37deg, #FFFFFF 14.66%, #FBFBFBE0 87.33%);
    --link-color: #495057;
    --link-color-hover: #3FBB60;
    --link-color-active: #fff;
    --link-color-active-bg: #1f1c2e;
    --anchor-head: #18181B;
    --message-box-hover: #fafcff;
    --message-box-border: #e9ebf0;
    --more-list-bg: #ffffff;
    --more-list-bg-hover: #D2F4EA;
    --more-list-shadow: rgba(209, 209, 209, 0.4);
    --button-bg: #D2F4EA;
    --light-font: #3FBB60;
    --search-area-bg: #ffffff;
    --search-text: #667085;
    --star: #1ff1c2;
    --message-btn: #fff;
    --notify-btn: #F8F9FA;
    --notify-text: #6C757D;
    --gray-text:#343A40;
    --accent-green: #45c06b; /* pill & check */
    --card-bg: rgba(18, 18, 18, 0.55);
    --card-radius: 20px;
    --muted-white: rgba(255,255,255,0.9);
}
  
body.dark {
    --app-container: #121212; 
    --main-color: #FFFFFF;
    --secondary-color: linear-gradient(to bo, rgb(0, 0, 0), #212121);
    --projects-section: #0f0f0f;
    --card-bg: linear-gradient(111.37deg, #000000 14.66%, rgba(57, 57, 57, 0.88) 87.33%);
    --card-back: linear-gradient(111.37deg, #000000 14.66%, rgba(24, 24, 24, 0.88) 87.33%);
    --link-color: rgba(255,255,255,.8);
    --link-color-hover: rgba(195, 207, 244, 0.1);
    --link-color-active-bg: rgba(195, 207, 244, 0.2);
    --anchor-head: #FFFFFF;
    --message-box-hover: #243244;
    --message-box-border: rgba(255,255,255,.1);
    --more-list-bg: #2f3142;
    --more-list-bg-hover: rgba(195, 207, 244, 0.1);
    --more-list-shadow: rgba(195, 207, 244, 0.1);
    --button-bg: #000000;
    --light-font: #ffffff;
    --search-area-bg: #171717;
    --search-text: #ffffff;
    --star: #ffd92c;
    --message-btn: rgba(195, 207, 244, 0.1);
    --notify-btn: #000000;
    --notify-text: #FFFFFF;
    --gray-text:#ffffff;
}
  /*
  PRIMARY-COLOR: #3FBB60
  TEXT-COLOR: #031633
  */
h1,h2,h3,h4,h5,h6{
    color: var(--anchor-head);
    font-weight: 600;
}
a,button{
    text-decoration: none;
    cursor: pointer;
}
/*========Utilitise=========*/
.app-color{color: #3FBB60;}

.app-text{
    font-size: 16px;
    font-weight: 400;
    color: #ADB5BD;
}
.btn-success{
    background: #3FBB60;
    border: none;
    padding: 8px 30px;
    font-size: 14px;
}
.notify-capsule-danger{
background: #FEF3F2;
width: max-content;
padding: 3px 6px 3px 3px;
border-radius: 30px;
display: flex;
align-items: center;
font-size: 14px;
color: #B42318;
}
.notify-capsule-warning{
background: #FFFAEB;
width: max-content;
padding: 3px 6px 3px 3px;
border-radius: 30px;
display: flex;
align-items: center;
font-size: 14px;
font-weight: 500;
color: #B54708;
}
.notify-capsule-success{
background: #D1E7DD;
width: max-content;
padding: 3px 6px 3px 3px;
border-radius: 30px;
display: flex;
align-items: center;
font-size: 14px;
font-weight: 500;
color: #3FBB60;
}
.btn-badge-danger{
background: #D92D20;
color: #FFFFFF;
border: none;
font-size: 14px;
padding: 5px 10px;
font-weight: 500;
}
.btn-badge-warning{
background: #DC6803;
color: #FFFFFF;
border: none;
font-size: 14px;
padding: 5px 10px;
font-weight: 500;
}
.btn-badge-success{
  background: #3FBB60;
  border: none;
  font-size: 14px;    
  padding: 5px 10px;
  font-weight: 500;
}

.btn-outline-success {
    --bs-btn-color: #3FBB60;
    --bs-btn-border-color: #3FBB60;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #3FBB60;
    --bs-btn-hover-border-color: #3FBB60;
    --bs-btn-focus-shadow-rgb: 25,135,84;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #3FBB60;
    --bs-btn-active-border-color: #3FBB60;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #3FBB60;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #3FBB60;
    --bs-gradient: none;
      font-size: 14px;
}
.btn-shade-success{
    background: #D2F4EA;
    border: none;
    padding: 8px 30px;
    width: 145px;
    font-size: 14px;
    color: #3FBB60;
}
/*========HEADER=========*/
.logo-area{
    width: 150px;
}
.fixed-top{height: 94px;}
.nav-link{color: #343A40;font-size: 14px; font-weight: 400; font-family: 'Inter';}
.toast-container {
    max-width: 100%;
    overflow: hidden;
}

.slide-from-right {
    animation: slideFromRight 0.5s ease forwards;
    display: none;
}

@keyframes slideFromRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}
/*========HERO SECTION=======*/
.hero-section{
    text-align: center;
}
.hero-img{
    background: linear-gradient(to bottom, #ffffff, #fff);
    margin-bottom: 1px;
}
.app-update-notify{
    display: flex;
    justify-content: center;
}
.notify-capsule{
    background: #F3F4F5;
    width: max-content;
    padding: 3px 6px 3px 3px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #495057;
}
.app-start{
    z-index: 1;
    position: relative;
}
.app-dash{
    margin-top: -60px;
}
.hero-section .app-heading{  
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -1.600000023841858px;
}
.app-dash-cover {
    position: relative;
}

.cover-image-wrapper {
    position: relative;
    overflow: hidden;
}

.cover-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    top: auto;
    left: 0;
    width: 100%;
    height: 200px;
    background-image: url('../img/dash-cover.png');
    /* background: linear-gradient(to bottom, transparent, #fff); */
    pointer-events: none;
}
/*HOW IT WORKS*/

.how-works .container{
    box-shadow: 0 2px 6px rgb(0 0 0 / 10%);
    border-radius: 20px;
    padding: 20px 30px;
}
.video-container {
    position: relative;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    background-image: url('../img/play-btn.png');
    background-size: cover;
    display: none;
}

.video-container:hover .play-button {
    display: block;
}

/*========Why Choose Use=========*/
#why-us p{
    font-size: 14px;
    color: #6C757D;
}
.why-us{
    background: #fbfbfb;
}
.feature{
    background-image: url(../img/card-img.png);
    /* background: linear-gradient(to bottom, #e6e4ffa6, transparent); */
    border-radius: 20px;
    max-width: 295px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 45px 15px;
}
.feature-icon{
    width: 160px;
    height: 110px;
    object-fit: contain;
    /* background-image: url(../img/browser-img.png); */
    background-repeat: repeat;
}
/*SAVE TREE*/
#save-tree p{
    color: #616161;
}
.save-tree .first-box{
    background: #F3F4F5;
    border-radius: 25px;
    overflow: hidden;
    border: none;
}
.stats-image-wrapper {
    position: relative;
    overflow: hidden;
    border-right: 1px solid #ededed;
}
.stats-image-wrapper img{
    border-right: 1px solid #717171;
}
.stats-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 165px;
    width: 100%;
    height: 100%;
    background-image: url(../img/stats-cover.png);
    /* background: linear-gradient(to right, #ffffff00, #F3F4F5); */
    pointer-events: none;
}
.folder-image-cover {
    position: relative;
    overflow: hidden;
}
.folder-image-cover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 225px;
    background: linear-gradient(to bottom, #ffffff00, #F3F4F5);
    pointer-events: none;
}
.card-detail{
    margin-top: 20px;
    padding-bottom: 24px;
}
/*=====Partner=====*/
#partner p{
    color: #616161;
}
.partner-cover {
    position: relative;
    overflow: hidden;
}
.partner-cover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #ffffffa8, #f3f4f500);
    pointer-events: none;
}
/*FAQS*/
.accordion-item{
    border-top: none;
    border-left: none;
    border-right: none;
}
.accordion-button{
    height: 94px;
}
.accordion-button:focus {
    z-index: 3;
    border-color: var(--bs-accordion-btn-focus-border-color);
    outline: 0;
    box-shadow: none;
}
/*========FOOTER=========*/
#footer{
    background: #031633;
}
.footer-logo{
    width: 180px;
}
.footer-top{
    padding: 55px 0;
}
.list-group .list-group-item{
    border: none;
    background: #031633;
    padding: 10px 0;
}
.list-group .list-group-item a{
    color: #E6E4FF;
    text-decoration: none;
}
.copyright span{
    font-size: 14px;
    font-weight: 400;
    color: #F8F9FA;
}
.foot-copyright{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.social-links{
    gap: 12px;
    display: flex;
}
.social-links a i{
    color: #ffffff;
    font-size: 18px;
}

/*=====EXTRA======*/
.accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: #ffffff30;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.accordion-button {
    font-weight: 600;
}
.accordion-body{color: #ADB5BD;}
.text-body-emphasis {
    --bs-text-opacity: 1;
    font-size: 18px;
    color: #031633 !important;
    margin: 0;
    padding-left: 6px;
}
.font-20{
    font-size: 20px;
}
.font-18{
    font-size: 18px;
}
.font-17{
    font-size: 17px;
}
.font-16{
    font-size: 16px;
}
.font-15{
    font-size: 15px;
}
.font-14{  
    font-size: 14px;
}
.font-12{
    font-size: 12px;
}
.font-10{
    font-size:10px;
}
.p-txt-1{
    font-weight: 600;
}
.p-txt-2{
    font-weight: 500;
}
.p-txt-3{
    font-weight: 400;
}
.color-1{
    color: #6C757D;
}
.color-2{
    color: #495057;
}
.color-3{
    color: #383838;
}
.color-4{
    color: #667085;
}
.color-5{
    color: #343A40;
}
.gray{
    color: var(--gray-text);
}
.txt-bread{
    color: var(--anchor-head);
}
.date-gray{
    color: #ADB5BD;
}
.lh-8{
    line-height: 0.8;
}
.mt-n8{
    margin-top: -8px;
}
.choose-slider{
    width: 100%;
    overflow-x: auto;
    display: flex;
    gap: 20px;
    justify-content: left;
}
.choose-slider::after{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0px;
    width: 12%;
    height: 100%;
    background: linear-gradient(to right, #fafbfbc9, #FAFBFB);
    pointer-events: none;
}
.owl-item{
    padding-right: 18px;
}
.text-sm-align{
    text-align: left;
}
/*=========LANDING PAGE END============*/

/*=========SIGNUP============*/
.signup-area{
    /* padding: 50px 100px; */
    width: 360px;
}
.signup-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 5px;
    width: 246px;
}
.signup-step {
    flex-grow: 1;
    height: 6px;
    border-radius: 7px;
    background-color: #CED4DA;
}
.signup-step.active {
    background-color: #3FBB60;
}
.signup-about{
    height: 100%;
    background-size: cover;
    background-position: center;
    background-image: url(../img/signup-bg.jpg);
}
.signup-about-btn{
    background: #3FBB60;
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 12px 20px;
    border-radius: 55px;
}
.receipt-user-circle{
    background: #ffffff69;
    padding: 6px;
    border-radius: 50%;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.panel {
    width: 100%;
    height: 283px;
    box-sizing: border-box;
    display: inline-grid;
    font-size: 24px;
    border-radius: 24px;
    padding: 40px 25px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(16px);
    border-radius: 24px;
}
.carousel-control-prev {
    right: 57px;
    left: auto;
}
.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: 180px;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .5;
    transition: opacity .15s ease;
}
.carousel-control-next-icon, .carousel-control-prev-icon {
    display: inline-block;
    width: 21px;
    height: 23px;
    background-position: 50%;
    background-size: 100% 100%;
    background: #ffffff96;
    border-radius: 50%;
    border: 3px solid #fff;
}
.content {
    padding: 20px;
}

/* button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    background-color: #4285f4; 
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
} */

.prev {
    left: 10px;
}

.next {
    right: 10px;
}
/*=====Confirm Mail=====*/
.confirm-about{
    height: 100%;
    background-size: cover;
    background-position: center;
    background-image: url(../img/slider4-amriop.jpg); 
}
.forgot-password-bg{
    height: 100%;
    background-size: cover;
    background-position: center;
    background-image: url(../img/forgot-password.png); 
}
.bg-over{
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.reset-pwd-about{
    height: 100%;
    background-size: cover;
    background-position: center;
    background-image: url(../img/slider2-amriop.jpg); 
}
.login-about{
    height: 100%;
    background-size: cover;
    background-position: center;
    /* background-image: url(../img/login-img.jpg);  */
    background-image: url(../img/slider3-amriop.jpg); 
}
.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
}
.input-group-text{
    border: none;
    background: #ffffff;
}
.bdr-none{
    border: none;
}
.align-text{
    text-align: left;
}
.my-center{
    margin-top: auto;
    margin-bottom: auto;
}

/*PRIVACY & TERMS*/
#page-privacy h2{
    font-size: 28px;
    font-weight: 500;
    color: #031633;
    margin-top: 60px;
    margin-bottom: 20px;
  }
  
  #page-privacy p{
    font-size: 16px;
    font-weight: 400;
    color: #6C757D;
  }
  section .privacy-hero{
    background-image: url('../img/p&t.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  section .privacy-hero h2{
    color: #343A40;
    font-size: 48px;
    font-weight: 600;
  }
  section .terms-hero{
    background-image: url('../img/p&t.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 270px; display: flex;
    align-items: center;
    justify-content: center;
  }
  section .terms-hero h2{
    color: #343A40;
    font-size: 48px;
    font-weight: 600;
  }

  .btn-google, .btn-microsoft, .btn-google:hover, .btn-microsoft:hover {
    text-align: center;
    color: #000;
    text-decoration: none;
}
.btn-google, .btn-microsoft {
    background: #fff;
    transition: all .3s;
}
.btn-block {
    display: block;
    width: 100%;
    height: 46px;
    line-height: 46px;
    font-size: 18px;
    font-weight: 500;
    border: #D0D5DD solid 1px;
    border-radius: 8px;
    cursor: pointer;
}
/*========MOBILE-RESPONSIVE========*/

@media only screen and (max-width: 600px) {
    /* .choose-slider{
        width: 100%;
        overflow-x: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: center;
    } */
    .app-dash{
        margin-top: 0;
    }
    .fixed-top {
        padding-top: 0;
    }
    .feature {
        margin-left: auto;
        margin-right: auto;
    }
    .foot-copyright{
        display: flex;
        flex-direction: column;
    }
    /* .app-start {
        margin-bottom: 35px;
    } */
    .signup-steps {
        width: 158px;
        margin-left: auto;
        margin-right: auto;
    }
    .align-text{
        text-align: center;
    }
    .margin-text{
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }
    .privacy-hero h2{
        color: #343A40;
        font-size: 36px !important;
        font-weight: 600;
    }
    .terms-hero h2 {
        color: #343A40;
        font-size: 36px !important;
        font-weight: 600;
    }
    .col-sm-6{
        width: 50%;
    }
    .text-sm-align{
        text-align: center;
    }
    .bg-nav-sm{
        background: linear-gradient(to bottom, #E8FFEE, #ffffff);
    }
}