@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url(../css/variables.css);
@import url(../css/font.css);
*{
    margin: 0px;
    padding: 0px;
    list-style: none;
    text-decoration: none;
    font-family: var(--font-Matter);
}
.container-3xl {
    width: 1560px;
    margin: auto;
}
.w-90{
    width: 90%;
}
.w-10 {
    width: 10%;
}

a{
    text-decoration: none;
    color: black;
}
p{
    margin: 0;
    padding: 0;
}
.bg-green {
    background-color: var(--clr-light-green);
}
.bg-lightyello {
    background-color: var(--clr-light-new-yello);
}
.bg-lightgreen {
    background-color: var(--clr-light-skylight-1);
}
.bg-lightblue {
    background-color: var(--clr-light-skyblue);
}
.bg-lightgreen_1 {
    background-color: var(--clr-light-green-1);
}
.bg-lightgreen_2 {
    background-color: var(--clr-light-green-2);
}
.bg-lightgreen_3 {
    background-color: var(--clr-light-green-3);
}
.bg-darkblue {
    background-color : var(--clr-dark-blue);
}
.bg-light-gary {
background-color : var(--clr-light-gray)
}
.text-v{
    font-size: 18px;
    font-weight: 500;
}
.text-vi{
    font-size: 26px;
    font-weight: 400;
}
.text-vii{
    font-size: 18px;
    font-weight: 300;
}
.text-viii {
    font-size: 18px;
    font-weight: 600;
}
.secondary-text {
    font-size: 16px;
}
.tertiary-text {
    font-weight: 500;
    font-size: 16px;
}
.text-iv {
    font-weight: 400;
    font-size: 20px;
    color: var(--cle-gray);
}
.text-secondary_2 {
    color: #fff;
}
.min-w-75 {
    max-width: 880px;
}
.min-w-135{
    min-width: 135px;
}
.min-w-250{
    min-width: 250px;
}
.primary-title{
    font-size: 52px;
    font-weight: 400;
    
}
.secondary-title {
    font-weight: 900;
    font-size: 24px;
}
.tertiary-title{
    font-weight: 500;
    font-size: 28x;
}
.quaternary-title {
    font-size: 44px;
    font-weight: 400;
}


table tr td {
    padding: 10px;
    border-top: 1px solid lightgrey ;
}
.w-30-px {
    width: 30px;
}

.transparent-btn{
    font-family: var(--font-Matter);
    min-width: 70px;
    font-weight: 700;
    font-size: 16px;
    padding: 5px 15px;
    border-radius: var(--radius-xl);
    text-transform: capitalize;
    border: 1px solid  var(--clr-light-green);
    background-color : transparent;
    color:  var(--clr-light-green);;
    transition:  0.3s all ease-in-out;
}

.transparent-btn:hover {
    background-color:  var(--clr-light-green);
    color: #fff;
}

.primary-btn{
    font-family: var(--font-Matter);
    min-width: 70px;
    font-weight: 700;
    font-size: 16px;
    padding: 5px 15px;
    border-radius: var(--radius-xl);
    text-transform: capitalize;
    border: 1px solid  var(--clr-light-green);
    color : var(--clr-white);
    background-color:  var(--clr-light-green);
    transition:  0.3s all ease-in-out;
}
.primary-btn:hover {
    color:  var(--clr-light-green);
    background-color: var(--clr-white);
}
.custom-list li {
    width: 95px;
}
.custom-list li a {
    position: relative;
    &::after {
        content: '';
        width: 0;
        height: 2px;
        position: absolute;
        background-color:  var(--clr-light-green);
        top: 190%;
        left: 0;
    }
}
.custom-list li a:hover {
    transition: 0.5s all ease-in-out;
    font-weight: 500;
    color:  var(--clr-light-green);
}
.custom-list li a:hover::after {
    transition: 0.5s all ease-in-out;
    width: 100%;
}
.min-w-130 {
    min-width: 186px;
    padding: 10px;
    font-size: 14px;
    border-radius: 12.5px;
    display: flex;
    justify-content: left;
    gap: 10px;
    flex-direction: column;
}

.min-w-130:hover {
    border: 1px solid lightgray;
}

.drag .main_box {
    width: 100%; 
    border: 3px dashed  var(--clr-light-green);
}

.effect{
        position: relative;
        display: flex;
        justify-content: center;
        z-index: 1;
        &::after {
            content: '';
            position: absolute;
            width: 0%;
            height: 2px;
            background-color:  var(--clr-light-green);
            position: absolute;
            left: 45%;
            bottom: 0;
            transition: width 0.3s ease-in-out;
        }
    }
    
.effect:hover::after {
        width: 130px;
}

.btn3 {
    background-color: transparent;
    border: 1px solid lightgray;
    border-radius: 5px;
    padding: 5px 10px;
    transition: 0.3s all ease-in-out ;
  }
  .btn3:hover {
      background-color: var(--clr-light-green);
      color: var(--clr-white);
  }
  .btn3 i {
    padding-right: 10px;
  }


.icon_list .icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #14AE651C;
    border-radius: 50%;
    transition: 0.3s all ease-in-out;
}
.icon_list .icon:hover {
    color: #1B1C27;
    background-color: var(--clr-white);
}

.list-t1:hover {
    .how-to-use-list {
        background-color: var(--clr-light-green);
        color: var(--clr-white);
        box-shadow: var(--shadow-box);
        &::after {
            background-color: var(--clr-light-green);
        }
    }
    p{
        color: var(--clr-light-green);
    }
}

.list-t1:hover {
    .how-to-use-list-last {
        background-color: var(--clr-light-green);
        color: var(--clr-white);
        box-shadow: var(--shadow-box);
    }
    p{
        color: var(--clr-light-green);
    }
}

.how-to-use-list{
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    &::after {
        content: '';
        width: 2px;
        height: 25px;
        background-color: lightgray;
        position: absolute;
        top: 100%;
        left: 50%;
        bottom: 0;
    }
}

.how-to-use-list-last{
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.feature-box {
    min-height: 200px;  /* Ensures all boxes have the same minimum height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  
  .text-box {
    flex-grow: 1;       /* Ensures text fills available space */
    display: flex;
    text-align: center;
    justify-content: center;
    padding: 0 10px;   /* Adds spacing for better readability */
  }

.custom-placeholder::placeholder {
        color: #6c757d;  /* Change this to any color */
        opacity: 1; /* Ensures full visibility */
}

.nav-item a {
        transition: color 0.3s ease-in-out;
}

.nav-item a:hover {
        color: var(--clr-light-green) !important; /* Change color on hover (Yellow in this case) */
}