*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root{
    --green: #0B4937;
    --green-lit-100: #89DB7F;
    --green-lit-200: #88f7c3d5;
    --green-drk-100: #161717;


    --lit-design: #FCF1D4;
    --lit-text-design: #955A0F;

    --lit-bg-100: #ffffff;
    --lit-bg-300: #BDBCBD;
    --lit-bg-500: #F6F6F6;

    --text-lit-100: #ffffff;
    --text-lit-200: #e2e2e2;

    --text-drk-100: #000000;
    --text-drk-200: #3a3a3a;
    --text-drk-300: #696969;
    
    --text-grn-100: #0E6149;
    --text-grn-200: #89DA7E;
}

html,
body{
    font-size: 14px;
    background: #F6F6F6;
}


.body{
    background: #ffffff !important;
}


.container{
    width: 1000px;
    margin-inline: auto;
}


nav{
    display: flex;
    padding: 2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav .nav-container{
    position: relative;
    display: flex;
    justify-content: space-between;
    background: var(--lit-bg-100);
    padding: 1rem 1.5rem;
    align-items: center;
    border-radius: 4ch;
    box-shadow: 1px 4px 10px rgba(0, 0, 0, 0.153);
}

nav .nav-container .logo{
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 900;
    font-size: 16px;
    color: var(--green-drk-100);
    cursor: pointer;
    text-decoration: none;
}

.nav-container .navlist{
    display: flex;
    gap: 2rem;
    
}
.list-items{
    list-style: none;
    cursor: pointer;

    a{
        text-decoration: none;
        color: var(--text-drk-300);
        text-transform: capitalize;
        font-weight: 500;
        letter-spacing: 1px;
        transition: all 500ms ease;
    }

    &:hover{
        a{
            color: var(--text-drk-100);
        }

        .dropdown{
            display: flex;
        }
    }
}



.dropdown{
    position: absolute;
    z-index: 100;
    left: 0;
    width: 100%;
    display: none;
    background: transparent;
    padding: 2rem 0 0 0;
    transition: all 500ms ease;
    height: fit-content;
    
    .dropdown-env{
        padding: 1rem;
        border-radius: 2ch;
        background: #fff;
        width: 100%;

        .dropdown-container{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;

        .privacy-container{
            grid-column: span 2;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;

            .privacy{
                position: relative;
                display: flex;
                align-items: end;
                overflow: hidden;
                background: var(--green);
                padding: 1rem;
                height: 18rem;
                color: var(--lit-bg-100);
                font-size: 28px;
                border-radius: 1ch;

                h3{
                    font-weight: 400;
                    width: min(12rem, 100%);
                    position: relative;
                    z-index: 1;
                }

                img{
                    width: 10rem;
                    position: absolute;
                    right: 0;
                }
            }

            .company{
                position: relative;
                display: flex;
                align-items: end;
                overflow: hidden;
                background: var(--green-lit-100);
                padding: 1rem;
                height: 18rem;
                font-size: 28px;
                border-radius: 1ch;
                
                h3{
                    color: var(--text-drk-200);
                    font-weight: 400;
                    width: min(12rem, 100%);
                    position: relative;
                    z-index: 1;
                }

                img{
                    width: 16rem;
                    position: absolute;
                    right: 0;
                }
            }
        }

        > .col-8{
            grid-column: span 2;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            padding: 1rem;
            border-radius: 1ch;
            background: var(--lit-bg-500);

            .key-container{
                display: flex;
                padding: 1rem;
                border-left:1px solid var(--lit-bg-300);

                .menukey-card{
                    display: flex;
                    flex-direction: column;
                    align-items: center;

                    .key-image{
                        width: 100%;
                        height: 100%;
                        display: inline;
                        
                        img{
                            width: 100%;
                            height: 100%;
                            object-fit: contain;
                        }
                    }
                    p{
                        font-size: 12px;
                        text-align: center;
                    }
                }

            }

            .col-right{
                display: flex;
                flex-direction: column;
                

                h2{
                    font-size: 16px;
                    font-weight: 800;
                    text-transform: capitalize;
                }
                p{
                    font-size: 12px;
                    color: var(--text-drk-300);
                    padding-bottom: 1rem;
                }

                > ul{
                    display: flex;
                    flex-direction: column;

                    li{
                        list-style: none;
                        padding: .5rem;
                        border-radius: 1ch;
                        transition: all 400ms ease;


                        a{
                            display: flex;
                            gap: 1rem;
                            align-items: center;

                            color: var(--text-drk-300);

                            i{
                                width: 30px;
                                height: 30px;
                                background: #ddd;
                                border-radius: 50%;
                                display:flex;
                                justify-content: center;
                                align-items: center;
                                font-size: 12px;
                                transition: all 300ms ease;
                            }
                        }

                        &:hover{
                            a{
                            i{
                            background: var(--lit-bg-300);
                        }
                    }
                    }

                }
                .dif{
                    a{
                        i{
                            background: var(--green) !important;
                            color: var(--lit-bg-500);
                        }
                    }
                }
            }
             }
         }

         .col{
            .col-right{
                display: flex;
                flex-direction: column;

                h2{
                    font-size: 16px;
                    font-weight: 800;
                    text-transform: capitalize;
                }
                p{
                    font-size: 12px;
                    color: var(--text-drk-300);
                    padding-bottom: 1rem;
                }

                > ul{
                    display: flex;
                    flex-direction: column;
                    gap: 1rem;

                    li{
                        list-style: none;
                        border-radius: 1ch;
                        transition: all 400ms ease;

                           a{
                            display: flex;
                            gap: 1rem;
                            align-items: center;

                            color: var(--text-drk-300);

                            i{
                                width: 30px;
                                height: 30px;
                                background: #ddd;
                                border-radius: 50%;
                                display:flex;
                                justify-content: center;
                                align-items: center;
                                font-size: 12px;
                                transition: all 300ms ease;
                            }

                        }
                        &:hover{
                            a{
                            i{
                            background: var(--lit-bg-300);
                        }
                    }
                    }
                    }
                        
                }
            }
         }

         > .col-4{
            display: grid;
            grid-template-rows: repeat(2,1fr);
            gap: 1rem;
            

            .col{
                display: flex;
                flex-direction: column;
                gap: .5rem;
                background: var(--lit-bg-500);
                padding: 1rem;
                border-radius: 1ch;


                h5{
                    font-size: 14px;
                    font-weight: 800;
                    color: var(--text-drk-100);
                    text-transform: capitalize;
                }

                p{
                    font-size: 11px;
                    width: min(14rem, 100%);
                    display: flex;
                    flex-direction: column;
                    gap: .5rem;
                    color: var(--text-drk-300);

                    span{
                        font-size: 14px;
                        font-weight: 500;
                        color: var(--green-drk-100);
                    }
                }
            }

            .col-1{
                background-image: url(../img/touch.webp);
                background-repeat: no-repeat;
                background-size: contain;
                background-position: right;
            }
            .col-2{
                background-image: url(../img/lappy.webp);
                background-repeat: no-repeat;
                background-size: contain;
                background-position: right;
            }

         }

        }

    }
}

img{
    width: 10px;
}

.right-nav{
    display: flex;
    gap: 1rem;
    align-items: center;

    li{
        display: flex;
        color: var(--text-drk-300);
        
        a{
            color: var(--text-drk-300);
            font-size: 12px;
            text-decoration: none;
        }
    }

    select{
        background: var(--lit-bg-500);
        padding: .3rem;
        border-radius: 4ch;
        border: none;
        outline: none;
        cursor: pointer;
        
        option{
            display: flex;
            padding: 1rem;
            cursor: pointer;
            background: var(--lit-bg-100);

            &:hover{
                background: var(--lit-bg-500);
            }
        }
    }
    .menutogler{
        font-size: 16px;
        cursor: pointer;
        display: none;
    }
}






aside{
    position: fixed;
    top: 7rem;left: 0;
    width: 100%;height: 100%;
    z-index: 1000;
    display: none;
}

aside.active{
    display: inline;
}

.sidenav{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 200;
    padding: 2rem;
    border-radius: 10px;
    background: var(--lit-bg-100);
    max-height: 80vh;
    overflow-y: scroll;

    &::-webkit-scrollbar-thumb{
        background: var(--green);
    }
    &::-webkit-scrollbar{
        width: 5px;
    }

    
    li{
        list-style: none;
        cursor: pointer;
        a{
            text-decoration: none;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: var(--green-drk-100);
        }

    }

    
    .sidnavdropdown{
        z-index: 100;
        left: 0;
        width: 100%;
        display: none;
        background: transparent;
        padding: 2rem 0;
        transition: all 500ms ease;
        height: fit-content;
        
        .dropdown-env{
            /* padding: 1rem; */
            border-radius: 2ch;
            /* background: #fff; */
            width: 100%;
    
            .dropdown-container{
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 1rem;

            > .col-8{
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
                padding: 1rem;
                border-radius: 1ch;
                background: var(--lit-bg-500);
    
                .key-container{
                    display: flex;
                    padding: 1rem;
                    border-left:1px solid var(--lit-bg-300);
                    flex-wrap: wrap;
                    gap: 1rem;
    
                    .menukey-card{
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        a{
                            text-decoration: none;
                            color: var(--text-drk-200);
                        .key-image{
                            width: 50px;
                            height: 50px;
                            display: inline;
                            
                            img{
                                width: 50px;
                                height: 50px;
                                object-fit: contain;
                            }
                        }
                        p{
                            font-size: 12px;
                            text-align: center;
                        }
                        }
                    }
    
                }
    
                .col-right{
                    display: flex;
                    flex-direction: column;
                    
    
                    h2{
                        font-size: 16px;
                        font-weight: 800;
                        text-transform: capitalize;
                    }
                    p{
                        font-size: 12px;
                        color: var(--text-drk-300);
                        padding-bottom: 1rem;
                    }
    
                    > ul{
                        display: flex;
                        flex-direction: column;
    
                        li{
                            list-style: none;
                            padding: .5rem;
                            border-radius: 1ch;
                            transition: all 400ms ease;
    
    
                            a{
                                display: flex;
                                gap: 1rem;
                                align-items: center;
                                text-decoration: none;
    
                                color: var(--text-drk-300);
    
                                i{
                                    width: 30px;
                                    height: 30px;
                                    background: #ddd;
                                    border-radius: 50%;
                                    display:flex;
                                    justify-content: center;
                                    align-items: center;
                                    font-size: 12px;
                                    transition: all 300ms ease;
                                }
                            }
    
                            &:hover{
                                a{
                                i{
                                background: var(--lit-bg-300);
                            }
                        }
                        }
    
                    }
                    .dif{
                        a{
                            i{
                                background: var(--green) !important;
                                color: var(--lit-bg-500);
                            }
                        }
                    }
                }
                 }
             }
             > .col-4{
                
                display: grid;
                grid-template-columns: repeat(2,1fr);
                gap: 1rem;
                
    
                .col{
                    display: flex;
                    flex-direction: column;
                    gap: .5rem;
                    background: var(--lit-bg-500);
                    padding: 1rem;
                    border-radius: 1ch;
                    text-decoration: none;
    
                    h5{
                        font-size: 14px;
                        font-weight: 800;
                        color: var(--text-drk-100);
                        text-transform: capitalize;
                    }
    
                    p{
                        font-size: 11px;
                        width: min(14rem, 100%);
                        display: flex;
                        flex-direction: column;
                        gap: .5rem;
                        color: var(--text-drk-300);
    
                        span{
                            font-size: 14px;
                            font-weight: 500;
                            color: var(--green-drk-100);
                        }
                    }
                }
    
                .col-1{
                    background-image: url(../img/touch.webp);
                    background-repeat: no-repeat;
                    background-size: contain;
                    background-position: right;
                }
                .col-2{
                    background-image: url(../img/lappy.webp);
                    background-repeat: no-repeat;
                    background-size: contain;
                    background-position: right;
                }
    
             }
    
            }
    
        }
    }

    .sidnavdropdown.active{
        display: flex;
    }

    .sidnavdropdown2{
        /* position: absolute; */
        z-index: 100;
        left: 0;
        width: 100%;
        display: none;
        padding: 2rem 0 0 0;
        transition: all 500ms ease;
        height: fit-content;
        
        .dropdown-env{
            padding: .5rem;
            border-radius: 2ch;
            background: #fff;
            width: 100%;

        .dropdown-container{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;

        .privacy-container{
            grid-column: span 2;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;

            .privacy{
                position: relative;
                display: flex;
                align-items: end;
                overflow: hidden;
                background: var(--green);
                padding: 1rem;
                height: 18rem;
                color: var(--lit-bg-100);
                font-size: 28px;
                border-radius: 1ch;

                h3{
                    font-weight: 400;
                    width: min(12rem, 100%);
                    position: relative;
                    z-index: 1;
                }

                img{
                    width: 10rem;
                    position: absolute;
                    right: 0;
                }
            }

            .company{
                position: relative;
                display: flex;
                align-items: end;
                overflow: hidden;
                background: var(--green-lit-100);
                padding: 1rem;
                height: 18rem;
                font-size: 28px;
                border-radius: 1ch;
                
                h3{
                    color: var(--text-drk-200);
                    font-weight: 400;
                    width: min(12rem, 100%);
                    position: relative;
                    z-index: 1;
                }

                img{
                    width: 16rem;
                    position: absolute;
                    right: 0;
                }
            }
        }

        .col{
            .col-right{
                display: flex;
                flex-direction: column;

                h2{
                    font-size: 16px;
                    font-weight: 800;
                    text-transform: capitalize;
                }
                p{
                    font-size: 12px;
                    color: var(--text-drk-300);
                    padding-bottom: 1rem;
                }

                > ul{
                    display: flex;
                    flex-direction: column;
                    gap: 1rem;

                    li{
                        list-style: none;
                        border-radius: 1ch;
                        transition: all 400ms ease;

                           a{
                            display: flex;
                            gap: 1rem;
                            align-items: center;

                            color: var(--text-drk-300);

                            i{
                                width: 30px;
                                height: 30px;
                                background: #ddd;
                                border-radius: 50%;
                                display:flex;
                                justify-content: center;
                                align-items: center;
                                font-size: 12px;
                                transition: all 300ms ease;
                            }

                        }
                        &:hover{
                            a{
                            i{
                            background: var(--lit-bg-300);
                        }
                    }
                    }
                    }
                        
                }
            }
         }

        }

        }

    }

    .sidnavdropdown2.active{
        display: flex;
    }
}













/* Hero section */
.hero{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: end;
    height: 50rem;
    overflow: hidden;
    padding: 2rem 0 4rem 0;

    .page-cloth{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.609);
        z-index: 3;
    }

    video{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .hero-container{
        position: relative;
        z-index: 20;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 4rem;
        
        .hero-content{
            width: min(30rem, 100%);
            display: flex;
            flex-direction: column;
            gap: 1rem;

            h1{
                font-size: 70px;
                color: var(--text-lit-200);
                font-weight: 500;
                display: flex;
                flex-direction: column;

                
                span{
                    position: relative;
                    width: max-content;

                    &::after{
                        content: "";
                        position: absolute;
                        bottom: .5rem;
                        left: 0;
                        width: 100%;
                        height: 3px;
                        background: var(--green);
                        z-index: 1;
                    }   
                }
            }

            p{
                font-size: 24px;
                color: var(--text-lit-200);
                font-weight: 500;
            }

            a{
                padding: 1rem 2rem;
                text-decoration: none;
                background: var(--green-lit-100);
                width: max-content;
                border-radius: 4ch;
                font-weight: 600;
                color: var(--green);
            }
        }

        .rate{
            display: flex;
            gap: 1rem;
            align-items: center;
            justify-content: space-between;
            
            .rate-right,
            .rate-left{
                align-items: center;
                display: flex;
                gap: 1rem;
                .rating{
                    display: flex;
                    gap: .8rem;
                    align-items: center;
                    padding: .5rem;
                    background: var(--lit-design);
                    border-radius: 4ch;

                    .rating-img{
                        width: 20px;
                        height: 20px;
                        overflow: hidden;
                        border-radius: 50%;

                        img{
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                        }
                    }

                    h6{
                        font-size: 14px;
                        font-weight: 600;
                    }

                    i{
                        color: orange;
                    }
                }   

                h5{
                    color: var(--text-lit-100);
                    display: flex;
                    gap: .5rem;
                    font-weight: 600;
                }

                .image-container{
                    display: flex;
                    gap: 1rem;
                    align-items: center;

                    img{
                        width: 100px;
                        object-fit: cover;
                    }
                }
            }

        }
    }
}


/* why section */
.why{
    padding: 5rem 0;
    background: var(--lit-bg-500);

    .why-container{
        display: flex;
        flex-direction: column;
        gap: 2rem;

        .why-content{
            display: flex;
            flex-direction: column;
            gap: 5rem;

            .why-heading{
                display: flex;
                justify-content: space-between;
                align-items: end;

                h1{
                    font-size: 70px;
                    width: min(39rem, 100%);
                    font-weight: 500;
                    color: var(--green-drk-100);
                }

                a{
                    padding: 1rem 2rem;
                    text-decoration: none;
                    background: var(--green);
                    color: var(--lit-bg-100);
                    border-radius: 4ch;
                    font-weight: 600;
                    font-size: 16px;
                }
            }

            .why-container-details{
                padding: 2rem;
                background: var(--lit-bg-100);
                border-radius: 2ch;
                display: grid;
                grid-template-columns: repeat(2, 1fr);

                .why-box{
                    display: flex;
                    flex-direction: column;
                    gap: 1.5rem;

                    h4{
                        font-size: 32px;
                        font-weight: 600;
                        color: var(--green-drk-100);
                    }

                    ul{
                        display: flex;
                        flex-direction: column;
                        gap: 1.5rem;

                        li{
                            font-size: 18px;
                            list-style: none;
                            display: flex;
                            align-items: center;
                            gap: 1rem;
                            font-weight: 500;
                            color: var(--text-drk-300);
                            i{
                                color: var(--green);
                            }
                        }
                    }
                }
                .green{
                    ul{
                        li{
                            i{
                                color: var(--green-lit-100);
                            }
                        }
                    }
                }
            }
            .why-image-section{
                display: flex;
                flex-direction: column;
                gap: 5rem;

                .first-whyimage{
                    height: 50vh;
                    position: relative;
                    overflow: hidden;
                    display: flex;
                    align-items: end;
                    justify-content: center;
                    padding: 1rem;
                    border-radius: 2ch;

                    .page-cloth{
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background: rgba(180, 180, 180, 0.609);
                        z-index: 3;
                    }
                
                    video{
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        z-index: 1;
                    }

                    .image-contents{
                        display: flex;
                        gap: 2rem;
                        position: relative;
                        z-index: 10;

                        p{
                            display: flex;
                            gap: 1rem;
                            font-size: 16px;
                            font-weight: 500;

                            i{
                                color: var(--green);
                            }
                        }
                    }
                }
                .second-whyimage{
                    background: url(../img/bgd.jpg.crdownload);
                    height: 60vh;
                    position: relative;
                    overflow: hidden;
                    display: flex;
                    align-items: end;
                    justify-content: center;
                    padding: 1rem;
                    border-radius: 2ch;

                    &::after{
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background: rgba(180, 180, 180, 0.609);
                        z-index: 3;
                    }

                    .image-contents{
                        display: flex;
                        flex-direction: column;
                        color: var(--lit-bg-100);
                        justify-content: space-between;
                        height: 100%;
                        width: 95%;
                        padding: 2rem 0;
                        margin-inline: auto;    

                        .col{
                            display: flex;
                            flex-direction: column;
                            gap: .5rem;

                            h3{
                                font-size: 55px;
                                font-weight: 500;
                            }
                            p{
                                width: min(30rem, 100%);
                                line-height: 25px;
                                font-size: 16px;
                                font-weight: 600;
                                letter-spacing: 1px;
                            }
                        }

                        a{
                            padding: 1rem 2rem;
                            text-decoration: none;
                            background: var(--green-lit-100);
                            width: max-content;
                            color: var(--green-drk-100);
                            font-weight: 600;
                            font-size: 16px;
                            border-radius: 4ch;
                            transition: all 500ms ease;
                            cursor: pointer;

                            &:hover{
                                background: var(--green-lit-200);
                            }
                        }
                    }
                }
            }

            .discover{
                display: grid;
                grid-template-columns: repeat(2,1fr);
                gap: 1rem;

                .col{
                    display: flex;
                    flex-direction: column;
                    gap: 2rem;
                    
                    .heading{
                        display: flex;
                        flex-direction: column;
                        gap: 1rem;

                        h1{
                            font-size: 70px;
                            font-weight: 600;
                            display: flex;
                            flex-direction: column;

                            span{
                                position: relative;
                                width: max-content;
            
                                &::after{
                                    content: "";
                                    position: absolute;
                                    bottom: .5rem;
                                    left: 0;
                                    width: 100%;
                                    height: 2px;
                                    background: var(--green);
                                    z-index: 1;
                                }   
                            }
                        }

                        a{
                            padding: 1rem 2rem;
                            text-decoration: none;
                            background: var(--green);
                            color: var(--lit-bg-100);
                            border-radius: 4ch;
                            font-weight: 600;
                            font-size: 16px;
                            width: max-content;
                            transition: all 350ms ease;
                            cursor: pointer;

                            &:hover{
                                background: var(--text-grn-100);
                            }
                        }

                    }

                    .safetrezorsafe-card{
                        position: relative;
                        overflow: hidden;
                        border-radius: 2ch;
                        height: 27rem;
                        background: var(--lit-bg-100);
                        justify-content: space-between;
                        display: flex;
                        flex-direction: column;
                        padding: 1.5rem;
                        gap: 2rem;
                        box-shadow: 1px 1px 20px #0001;

                        .price{
                            position: absolute;
                            right: 1rem;
                            top: 1rem;
                            padding: .5rem;
                            font-size: 18px;
                            font-weight: 500;
                            letter-spacing: 1px;
                            background: var(--lit-bg-500);
                        }

                        .card-image{
                            width: 100%;
                            height: 50%;
                            /* background: green; */

                            .card{
                                width: 100%;
                                height: 100%;
                                overflow: hidden;
                                
                                img{
                                    width: 100%;
                                    height: 100%;
                                    object-fit: contain;
    
                                }
                            }

                            .card {
                                display: none; /* Hide all images by default */
                            }
                            .card.active {
                                display: block; /* Only the active one is visible */
                            }
                        }



                        .changebtn{
                            display: flex;
                            gap: 1rem;
                            justify-content: center;
                        }
                        .changebtn div {
                            cursor: pointer; /* Show pointer on hover for buttons */
                            width: 15px;
                            height: 15px;
                            border-radius: 50%;
                            border: 1px solid #000;

                        }
                        .changebtn div.active {
                            outline: 2px solid #000;
                        }
                        .black { background-color: black; }
                        .brown { background-color: rgb(178, 178, 178); }
                        .yellow { background-color: rgb(243, 243, 193); }
                        .red { background-color: rgb(234, 152, 152); }
                        .green { background-color: rgb(0, 79, 60); }
                        .purple { background-color: rgb(48, 0, 64); }
                        .white { background-color: rgb(255, 255, 255); }
                        



                        .productname{
                            a{
                                display: flex;
                            flex-direction: column;
                            gap: .3rem;
                            font-size: 28px;
                            text-decoration: none;
                            font-weight: 600;
                            color: var(--text-drk-100);
                            
                            span{
                                font-size: 16px;
                                font-weight: 600;
                                color: var(--text-grn-100);
                            }
                            }
                        }
                    }
                }
            }
        }
    }

}
/* why section */

/* manage */
.manage{
    background: var(--lit-bg-500);

    .manage-container{
        gap: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;

        .manage-header{
            display: flex;
            justify-content: space-between;
            align-items: end;

            h1{
                font-size: 70px;
                font-weight: 600;
                display: flex;
                flex-direction: column;

                span{
                    position: relative;
                    width: max-content;

                    &::after{
                        content: "";
                        position: absolute;
                        bottom: .5rem;
                        left: 0;
                        width: 100%;
                        height: 2px;
                        background: var(--green);
                        z-index: 1;
                    }   
                }
            }
            a{
                padding: 1rem 2rem;
                text-decoration: none;
                background: var(--green);
                color: var(--lit-bg-100);
                border-radius: 4ch;
                font-weight: 600;
                font-size: 16px;
                transition: all 350ms ease;

                &:hover{
                    background: var(--text-grn-100);
                }
            }
        }

        .manage-image{
            height: 35rem;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: end;
            justify-content: center;
            padding: 1rem;
            border-radius: 2ch;

            .page-cloth{
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(180, 180, 180, 0.609);
                z-index: 3;
            }
        
            video{
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                z-index: 1;
            }

            .image-contents{
                display: flex;
                gap: 2rem;
                position: relative;
                z-index: 10;

                p{
                    display: flex;
                    gap: 1rem;
                    font-size: 16px;
                    font-weight: 500;

                    i{
                        color: var(--green);
                    }
                }
            }
        }

        .support{
            display: grid;
            grid-template-columns: repeat(2,1fr);
            height: 25rem;
            margin: 0 0 4rem;
            background: var(--lit-bg-500);
            border: 2ch;
            overflow: hidden;

            .col-support{
                display: flex;
                flex-direction: column;
                gap: 1rem;
                height: 100%;
                overflow: hidden;
                justify-content: end;
                padding: 2rem;
                border-radius: 2ch;

                p{
                    font-size: 40px;
                }
            }

            .col-box{
                background: url(../img/bgd.jpg.crdownload);
                position: relative;
                

                &::after{
                    content: "";
                    position: absolute;
                    top: 0;left: 0;
                    height: 100%;width: 100%;
                    background: #05050524;
                }

                p{
                    position: relative;
                    z-index: 10;
                    color: var(--text-lit-200);
                    width: min(30rem, 100%);
                }
            }

            .col-box-Two{
                text-align: center;
                align-items: center;
                justify-content: center;
                background: url(../img/bigbgd.webp);
                background-repeat: no-repeat;
                background-size: cover;
                background-position: center center;

                p{
                    font-size: 30px;
                    width: min(20rem, 100%);
                }

                a{
                    padding: 1rem 2rem;
                    text-decoration: none;
                    background: var(--green-drk-100);
                    border-radius: 4ch;
                    color: var(--text-lit-100);
                    transition: all 350ms ease;

                    &:hover{
                        background: #2f2f2f;
                    }
                }
            }
        }
    }
}


/* services */
.service{
    background: var(--lit-bg-500);
    padding: 5rem 0;

    .service-container{
        display: flex;
        flex-direction: column;
        gap: 2rem;

        h1{
            font-size: 60px;
            font-weight: 600;
            color: var(--green-drk-100);
        }

        .drk-green{
            background: var(--green);

            .bottom{
                display: flex;
                justify-content: space-between;

                h5{
                    color: var(--lit-bg-100);
                    font-size: 16px;
                    font-weight: 500;

                    span{
                        color: #99E686;
                    }
                }

                i{
                    background: var(--text-grn-100);
                    color: var(--lit-bg-100);
                }
            }
        }

        .lit-green{
            background: var(--text-grn-200);

            .bottom{
                display: flex;
                justify-content: space-between;

                h5{
                    color: var(--text-drk-100);
                    font-size: 16px;
                    font-weight: 500;

                    span{
                        color: var(--text-grn-100);
                    }
                }

                i{
                    background: var(--text-grn-100);
                    color: var(--lit-bg-100);
                }
            }
        }

        .service-card-container{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;

            .service-card{
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                padding: 2rem;
                height: 30rem;
                border-radius: 3ch;

                .upper{
                    /* background: green; */
                    height: 80%;

                    p{
                        font-size: 14px;
                        display: flex;
                        flex-direction: column;
                        gap: 1rem;
                        display: none;
                    }
                   
                    .service-img{
                        height: 100%;
                        /* background: purple; */
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        
                        img{
                            width: 100%;
                            height: 60%;
                        }
                    }
                }

                .bottom{
                    display: flex;
                    justify-content: space-between;
                    user-select: none;

                    h5{
                        display: flex;
                        flex-direction: column;
                        gap: .5rem;

                        span{
                            font-size: 11px;
                            font-weight: 400;
                        }
                    }

                    i{
                        font-size: 14px;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 40px;
                        height: 40px;
                        border-radius: 50%;
                        font-weight: 400;
                        cursor: pointer;
                    }
                }
            }
            .service-card.active{
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                height: 30rem;
                border-radius: 3ch;
                background: var(--lit-bg-100);
                box-shadow: 1px 1px 20px #0001;

                .upper{
                    /* background: green; */
                    height: 80%;

                    p{
                        font-size: 14px;
                        display: flex;
                        flex-direction: column;
                        gap: 1rem;
                        display: flex;
                    }
                   
                    .service-img{
                        height: 100%;
                        display: none;
                        align-items: center;
                        justify-content: center;
                        
                        img{
                            width: 100%;
                            height: 60%;
                        }
                    }
                }

                .bottom{
                    display: flex;
                    justify-content: space-between;

                    h5{
                        display: flex;
                        flex-direction: column;
                        gap: .5rem;
                        color: var(--green-drk-100) ;

                        span{
                            font-size: 11px;
                            font-weight: 400;
                            color: var(--text-grn-100);
                        }
                    }

                    i{
                        font-size: 14px;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 40px;
                        height: 40px;
                        border-radius: 50%;
                        font-weight: 400;
                        cursor: pointer;
                        background: var(--lit-bg-500);
                        color: var(--text-drk-300);
                    }
                }
            }
        }


    }
}



/* about */

.about{
    background: var(--lit-bg-500);
    height: 40rem;

    .about-container{
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background: url(../img/aboutbgd.jpeg);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        position: relative;
        padding: 2rem;
        overflow: hidden;
        border-radius: 2ch;

        /* the bgd overlay */
        &::after{
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;height: 100%;
            background:#0008;
        }

        h1{
            position: relative;
            z-index: 3;
            font-size: 70px;
            color: var(--text-lit-200);
            font-weight: 500;
            display: flex;
            flex-direction: column;
            
            span{
                position: relative;
                width: max-content;

                &::after{
                    content: "";
                    position: absolute;
                    bottom: .5rem;
                    left: 0;
                    width: 100%;
                    height: 3px;
                    background: var(--green-lit-100);
                    z-index: 1;
                }   
            }
        }

        .about-down{
            position: relative;
            z-index: 3;
            display: flex;
            gap: 1rem;
            flex-direction: column;


            > p{
                font-size: 20px;
                font-weight: 500;
                width: min(30rem, 100%);
                /* line-height: 30px; */
                color: var(--lit-bg-500);
            }

            .button-section{
                display: flex;
                gap: 1rem;
                justify-content: space-between;
                align-items: end;

                a{
                    padding: 1rem 3rem;
                    background: var(--green-lit-100);
                    text-decoration: none;
                    border-radius: 4ch;
                    font-size: 14px;
                    color: var(--green-drk-100);
                    font-weight: 700;
                    transition: all 350ms ease;
                    cursor: pointer;

                    &:hover{
                        background: var(--green-lit-200);
                    }
                }

                .fine-info{
                    display: flex;
                    color: var(--lit-bg-500);
                    gap: 2rem;
                    flex-wrap: wrap;

                    p{
                        display: flex;
                        gap: .5rem;
                    }
                }
            }
        }
    }
}



/* intro */
.intro{
    padding: 5rem 0;
    height: 40rem;
    background: var(--lit-bg-500);

    img{
        width: 180px;
    }

    .intro-container{
        display: flex;
        align-content: center;
        justify-content: center;
        background: var(--green-lit-100);
        height: 100%;
        position: relative;
        overflow: hidden;
        align-items: center;
        border-radius: 2ch;

        .intro-content{
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
            justify-content: center;

            h1{
             font-size: 70px;
             display: flex;
             flex-direction: column;
             text-align: center;
             align-items: center;

             span{
                position: relative;
                width: max-content;

                &::after{
                    content: "";
                    position: absolute;
                    bottom: .5rem;
                    left: 0;
                    width: 100%;
                    height: 3px;
                    background: var(--green);
                    z-index: 1;
                }   
                }
            }

            a{
                padding: 1rem 3rem;
                background: var(--green-drk-100);
                text-decoration: none;
                border-radius: 4ch;
                font-size: 14px;
                color: var(--text-lit-100);
                font-weight: 700;
                transition: all 350ms ease;
                cursor: pointer;

                &:hover{
                    background: var(--text-drk-200);
                }
            }
        }

        .intro-images{
            position: absolute;
            display: flex;
            flex-direction: column;

            .margin{
                margin: -8rem 0 0;
            }
        }

        .images-right{
            right: 0rem;
        }
        .images-left{
            left: 0rem;
        }
    }
}


/* =====FAQs======== */

.faq{
    padding: 5rem 0;
    background: var(--lit-bg-500);

    .faq-container{
        display: flex;
        flex-direction: column;
        gap: 1rem;
        

        

        h1{
            font-size: 40px;
            font-weight: 500;
        }

        .row{
            width: 100%;
            gap: .5rem;
            display: grid;
            grid-template-columns: repeat(1,1fr);

            .faq-item{
                width: 100%;
                background: var(--text-lit-100);
                border-radius: 15px;
                
                .faq-question{
                    padding: 1rem;
                    background: var(--text-lit-100);
                    
                    
                    h3{
                        font-size: 16px;
                    }
                }
            }
        }

    }
}


.faq-question {
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 18px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 2rem;

    i{
        padding: 1rem;
        background: #E4F2ED;
        font-size: 34px;
        color: var(--text-grn-100);
        border-radius: 5px;
    }
}

.toggle-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 10px 0;
}

.faq-answer p {
    padding: 1rem;
    font-size: 18px;
    line-height: 23px;
    color: #696969;
    width: 92%;
    margin-left: auto;
}

/* Opened state */
.active .faq-answer {
    display: block;
}

.active .toggle-icon {
    transform: rotate(45deg); /* Rotate '+' to 'x' */
}
/* =====FAQs======== */



/* footer */
footer{
    padding: 3rem 0;
    background: var(--text-drk-100);
    color: var(--lit-bg-100);
    border-radius: 20px 20px 0 0;

    .footer-container{
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        flex-wrap: wrap;

        .col-1{
            display: flex;
            gap: 2rem;
            flex-direction: column;
            justify-content: space-between;
        }

        .col{
            display: flex;
            gap: 2rem;
            flex-direction: column;

            .header{
                display: flex;
                flex-direction: column;
                gap: 1rem;
                .logo{
                    display: flex;
                    align-items: center;
                    gap: 1rem;
                    font-weight: 900;
                    font-size: 16px;
                    color: var(--lit-bg-100);
                    cursor: pointer;
                    text-decoration: none;
                }
                

            }

            .socials{
                display: flex;
                gap: 1rem;

                i{
                    cursor: pointer;
                    transition: all 350ms ease;
                    
                    &:hover{
                        color: var(--lit-bg-300);
                    }
                }
            }


            h2{
                font-size: 28px;
                font-weight: 500;
            }

            ul{
                display: flex;
                flex-direction: column;
                gap: 1rem;

                li{
                    list-style: none;

                    a{
                        text-decoration: none;
                        color: var(--lit-bg-300);
                        transition: all 350ms ease;

                        &:hover{
                            color: var(--lit-bg-100);
                        }
                    }
                }
            }
        }
    }
}







/* ------------Product Page ---------- */
.product-hero{
    padding: 10rem 0;
    
    
    
    .product-container{
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        border-bottom: 1px solid #d5d3d3;
        
        .product-content{
            display: flex;
            flex-direction: column;
            gap: 2rem;
            
            h1{
                font-size: 70px;
                font-weight: 600;
            }

            .product-tags{
                display: flex;
                gap: 1rem;
                flex-wrap: wrap;

                .active{
                    background: #9c9c9c;
                }
                li{
                    list-style: none;
                    padding: 1rem;
                    background: #bfbfbf;
                    border-radius: 4ch;
                    transition: all 350ms ease;
                    cursor: pointer;

                    &:hover{
                        background: #9c9c9c;
                    }

                    a{
                        text-decoration: none;
                        color: var(--text-drk-200);
                    }
                }
            }
        }

        .product-hero-image{
            width: 400px;

            img{
                width: 100%;
                object-fit: contain;
            }
        }   
    }
    
}

.discover1{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1rem;

    .col{
        display: flex;
        flex-direction: column;
        gap: 2rem;
        
        .heading{
            display: flex;
            flex-direction: column;
            gap: 1rem;
            padding: 0 1rem;

            h5{
                font-size: 20px;
                font-weight: 500;
                color: var(--green);
            }

            h2{
                font-size: 70px;
                font-weight: 500;
                color: var(--green-drk-100);
            }

            p{
                font-size: 14px;
                line-height: 20px;
                color: var(--text-drk-300);
            }
        }

         .safetrezorsaf-card{
            position: relative;
            overflow: hidden;
            border-radius: 2ch;
            height: fit-content;
            background: var(--lit-bg-100);
            justify-content: space-between;
            display: flex;
            flex-direction: column;
            padding: 4rem 1.5rem 1.5rem;
            gap: 1rem;
            box-shadow: 1px 1px 20px #0001;

            .discount{
                position: absolute;
                background: var(--green-drk-100);
                color: var(--lit-bg-100);
                font-size: 12px;
                font-weight: 500;
                top: 1rem;
                padding: .5rem;
                border-radius: 4ch;
            }

            .card-image{
                width: 100%;
                height: 15rem;
                /* background: green; */

                .card{
                    width: 100%;
                    height: 100%;
                    overflow: hidden;
                    
                    img{
                        width: 100%;
                        height: 100%;
                        object-fit: contain;

                    }
                }

                .card {
                    display: none; /* Hide all images by default */
                }
                .card.active {
                    display: block; /* Only the active one is visible */
                }
            }

            

            .changebtn{
                display: flex;
                gap: 1rem;
                justify-content: center;
            }
            .changebtn div {
                cursor: pointer; /* Show pointer on hover for buttons */
                width: 15px;
                height: 15px;
                border-radius: 50%;
                border: 1px solid #000;

            }
            .changebtn div.active {
                outline: 2px solid #000;
            }
            .black { background-color: black; }
            .brown { background-color: rgb(178, 178, 178); }
            .yellow { background-color: rgb(243, 243, 193); }
            .red { background-color: rgb(234, 152, 152); }
            .green { background-color: rgb(0, 79, 60); }
            .purple { background-color: rgb(48, 0, 64); }
            .white { background-color: rgb(255, 255, 255); }
            



            .productname{
                a{
                    display: flex;
                flex-direction: column;
                gap: .3rem;
                font-size: 16px;
                text-decoration: none;
                font-weight: 600;
                color: var(--text-drk-100);
                
                span{
                    font-size: 10px;
                    font-weight: 600;
                    color: var(--text-grn-100);
                }
                }
            }

            .work{
                display: flex;
                gap: .5rem;
                align-items: center;
                justify-content: space-between;
                padding: .5rem 1rem;
                border: 1px solid #ddd;
                border-radius: 4ch;

                h6{
                    font-size: 10px;
                    font-weight: 500;
                    color: var(--text-drk-300);
                }
                ul{
                    display: flex;
                    gap: 1rem;

                    li{
                        list-style: none;
                        font-size: 8px;
                        display: flex;
                        gap: .3rem;
                        padding: .4rem;
                        background: var(--lit-bg-500);
                        border-radius: 2ch;
                        color: var(--text-drk-300);
                    }
                }
            }

            > a{
                width: 100%;
                padding: 1rem;
                border-radius: 4ch;
                text-align: center;
                text-decoration: none;
                color: var(--lit-bg-100);
                background: var(--text-grn-100);
                transition: all 500ms ease;
                
                &:hover{
                    background: var(--green);
                }
            }
        }
    }
    .discoverBtn{
        padding: 1rem 2rem;
        grid-column: span 2;
        text-decoration: none;
        color: var(--text-drk-200);
        background: #c4c4c4;
        width: fit-content;
        border-radius: 4ch;
        transition: all 350ms ease;
        display: flex;
        justify-self: center;
        font-size: 10px;

        &:hover{
            background: var(--lit-bg-100);
        }
    }

}


/* why section */



.session{
    padding: 5rem 0;

    .session-container{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 1rem;
        padding: 1rem;
        border-radius: 20px;
        background: var(--lit-bg-100);
        min-height: 30rem;

        .session-image{
            background-image: url(../img/products/sessionbg.png);
            border-radius: 10px;
        }

        .session-content{
            display: flex;
            flex-direction: column;
            gap: 1rem;
            padding: 3rem;

            h1{
                font-size: 60px;
                font-weight: 500;
                line-height: 70px;
            }

            .session-list{
                display: flex;
                flex-direction: column;
                gap: 1rem;

                li{
                    list-style: none;
                    display: flex;
                    gap: 1rem;
                    line-height: 25px;
                    letter-spacing: 1px;
                    color: var(--text-drk-300);

                    i{
                        font-size: 14px;
                        color: var(--green);
                    }
                }
            }

            .session-buttons{
                display: flex;
                gap: 1rem;

                a{
                    text-decoration: none;
                    padding: 1rem;
                    cursor: pointer;
                    font-size: 14px;
                    font-weight: 600;
                    color: var(--text-drk-200);
                    background: var(--lit-bg-300);
                    border-radius: 4ch;
                }

                .btn-bgd{
                    background: var(--text-grn-100);
                    color: var(--lit-bg-100);
                    cursor: pointer;
                    transition: all 450ms ease;

                    &:hover{
                        background: var(--green);
                    }
                }
            }
        }
    }

}




.backup{
    background: var(--lit-bg-100);
    padding: 5rem 0;
.discover2{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1rem;

    .col{
        display: flex;
        flex-direction: column;
        gap: 2rem;
        
        .heading{
            display: flex;
            flex-direction: column;
            gap: 1rem;
            padding: 0 1rem;

            h5{
                font-size: 20px;
                font-weight: 500;
                color: var(--green);
            }

            h2{
                font-size: 60px;
                font-weight: 500;
                line-height: 60px;
                color: var(--green-drk-100);
            }

            p{
                font-size: 14px;
                line-height: 20px;
                color: var(--text-drk-300);
            }
        }

         .safetrezorsaf-card{
            position: relative;
            overflow: hidden;
            border-radius: 2ch;
            height: fit-content;
            background: #F6F7F7;
            justify-content: space-between;
            display: flex;
            flex-direction: column;
            padding: 4rem 1.5rem 1.5rem;
            gap: 1rem;
          

            .discount{
                position: absolute;
                background: var(--green-drk-100);
                color: var(--lit-bg-100);
                font-size: 12px;
                font-weight: 500;
                top: 1rem;
                padding: .5rem;
                border-radius: 4ch;
            }

            .card-image{
                width: 100%;
                height: 15rem;
                /* background: green; */

                .card{
                    width: 100%;
                    height: 100%;
                    overflow: hidden;
                    
                    img{
                        width: 100%;
                        height: 100%;
                        object-fit: contain;

                    }
                }

                .card {
                    display: none; /* Hide all images by default */
                }
                .card.active {
                    display: block; /* Only the active one is visible */
                }
            }

            

            .changebtn{
                display: flex;
                gap: 1rem;
                justify-content: center;
            }
            .changebtn div {
                cursor: pointer; /* Show pointer on hover for buttons */
                width: 15px;
                height: 15px;
                border-radius: 50%;
                border: 1px solid #000;

            }
            .changebtn div.active {
                outline: 2px solid #000;
            }
            .black { background-color: black; }
            .brown { background-color: rgb(178, 178, 178); }
            .yellow { background-color: rgb(243, 243, 193); }
            .red { background-color: rgb(234, 152, 152); }
            .green { background-color: rgb(0, 79, 60); }
            .purple { background-color: rgb(48, 0, 64); }
            .white { background-color: rgb(255, 255, 255); }
            



            .productname{
                a{
                    display: flex;
                flex-direction: column;
                gap: .3rem;
                font-size: 16px;
                text-decoration: none;
                font-weight: 600;
                color: var(--text-drk-100);
                
                span{
                    font-size: 10px;
                    font-weight: 600;
                    color: var(--text-grn-100);
                }
                }
            }

            .work{
                display: flex;
                gap: .5rem;
                align-items: center;
                justify-content: space-between;
                padding: .5rem 1rem;
                border: 1px solid #ddd;
                border-radius: 4ch;

                h6{
                    font-size: 10px;
                    font-weight: 500;
                    color: var(--text-drk-300);
                }
                ul{
                    display: flex;
                    gap: 1rem;

                    li{
                        list-style: none;
                        font-size: 8px;
                        display: flex;
                        gap: .3rem;
                        padding: .4rem;
                        background: var(--lit-bg-100);
                        border-radius: 2ch;
                        color: var(--text-drk-300);
                    }
                }
            }

            > a{
                width: 100%;
                padding: 1rem;
                border-radius: 4ch;
                text-align: center;
                text-decoration: none;
                color: var(--lit-bg-100);
                background: var(--text-grn-100);
                transition: all 500ms ease;
                
                &:hover{
                    background: var(--green);
                }
            }
        }
    }
    .discoverBtn{
        padding: 1rem 2rem;
        grid-column: span 2;
        text-decoration: none;
        color: var(--text-drk-200);
        background: #c4c4c4;
        width: fit-content;
        border-radius: 4ch;
        transition: all 350ms ease;
        display: flex;
        justify-self: center;
        font-size: 10px;

        &:hover{
            background: var(--lit-bg-100);
        }
    }

}
}


.popular{
    padding: 5rem 0;


    .popular-container{
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 1rem;

        .col-card{
            position: relative;
            overflow: hidden;
            border-radius: 2ch;
            height: fit-content;
            background: var(--lit-bg-100);
            justify-content: space-between;
            display: flex;
            flex-direction: column;
            padding: 4rem 1.5rem 1.5rem;
            gap: 1rem;
          

            .discount{
                position: absolute;
                background: var(--green-drk-100);
                color: var(--lit-bg-100);
                font-size: 12px;
                font-weight: 500;
                top: 1rem;
                padding: .5rem;
                border-radius: 4ch;
            }

            .card-image{
                width: 100%;
                height: 7rem;
                /* background: green; */

                .card{
                    width: 100%;
                    height: 100%;
                    overflow: hidden;
                    
                    img{
                        width: 100%;
                        height: 100%;
                        object-fit: contain;

                    }
                }

                .card {
                    display: none; /* Hide all images by default */
                }
                .card.active {
                    display: block; /* Only the active one is visible */
                }
            }




            .productname{
                a{
                    display: flex;
                flex-direction: column;
                gap: .3rem;
                font-size: 16px;
                text-decoration: none;
                font-weight: 500;
                color: var(--text-drk-100);
                
                span{
                    font-size: 12px;
                    font-weight: 500;
                    color: var(--text-drk-300);
                }
                }
            }

            .work{
                display: flex;
                gap: .5rem;
                align-items: center;
                justify-content: space-between;
                padding: .5rem 1rem;
                border: 1px solid #ddd;
                border-radius: 4ch;

                h6{
                    font-size: 10px;
                    font-weight: 500;
                    color: var(--text-drk-300);
                }
                ul{
                    display: flex;
                    gap: 1rem;

                    li{
                        list-style: none;
                        font-size: 8px;
                        display: flex;
                        gap: .3rem;
                        padding: .4rem;
                        background: var(--lit-bg-100);
                        border-radius: 2ch;
                        color: var(--text-drk-300);
                    }
                }
            }

            > a{
                width: 100%;
                padding: 1rem;
                border-radius: 4ch;
                text-align: center;
                text-decoration: none;
                color: var(--lit-bg-100);
                background: var(--text-grn-100);
                transition: all 500ms ease;
                
                &:hover{
                    background: var(--green);
                }
            }
        }

        .col-card-content{
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;

            h6{
                font-size: 16px;
                font-weight: 500;
                color: var(--green);
            }

            h4{
                font-size: 36px;
                font-weight: 500;
                color: var(--text-drk-200);
            }

            p{
                color: var(--text-drk-300);
            }
        }

        }
    }


.Bundles{
    padding: 5rem 0;
    background: var(--lit-bg-100);


    .popular-container{
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 1rem;

        .col-card{
            position: relative;
            overflow: hidden;
            border-radius: 2ch;
            height: fit-content;
            background: var(--lit-bg-500);
            justify-content: space-between;
            display: flex;
            flex-direction: column;
            padding: 4rem 1.5rem 1.5rem;
            gap: 1rem;
          

            .percentoff{
                position: absolute;
                background: #FBB861;
                color: var(--text-drk-200);
                font-size: 12px;
                font-weight: 500;
                top: 1rem;
                padding: .5rem;
                border-radius: 4ch;
            }

            .card-image{
                width: 100%;
                height: 7rem;
                /* background: green; */

                .card{
                    width: 100%;
                    height: 100%;
                    overflow: hidden;
                    
                    img{
                        width: 100%;
                        height: 100%;
                        object-fit: contain;

                    }
                }

                .card {
                    display: none; /* Hide all images by default */
                }
                .card.active {
                    display: block; /* Only the active one is visible */
                }
            }




            .productname{
                a{
                    display: flex;
                flex-direction: column;
                gap: .3rem;
                font-size: 16px;
                text-decoration: none;
                font-weight: 500;
                color: var(--text-drk-100);
                
                span{
                    font-size: 12px;
                    font-weight: 500;
                    color: var(--text-drk-300);
                }
                }
            }

            .work{
                display: flex;
                gap: .5rem;
                align-items: center;
                justify-content: space-between;
                padding: .5rem 1rem;
                border: 1px solid #ddd;
                border-radius: 4ch;

                h6{
                    font-size: 10px;
                    font-weight: 500;
                    color: var(--text-drk-300);
                }
                ul{
                    display: flex;
                    gap: 1rem;

                    li{
                        list-style: none;
                        font-size: 8px;
                        display: flex;
                        gap: .3rem;
                        padding: .4rem;
                        background: var(--lit-bg-100);
                        border-radius: 2ch;
                        color: var(--text-drk-300);
                    }
                }
            }

            > a{
                width: 100%;
                padding: 1rem;
                border-radius: 4ch;
                text-align: center;
                text-decoration: none;
                color: var(--lit-bg-100);
                background: var(--text-grn-100);
                transition: all 500ms ease;
                
                &:hover{
                    background: var(--green);
                }
            }
        }

        .col-card-content{
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;

            h6{
                font-size: 16px;
                font-weight: 500;
                color: var(--green);
            }

            h4{
                font-size: 36px;
                font-weight: 500;
                color: var(--text-drk-200);
            }

            p{
                color: var(--text-drk-300);
            }
        }

        }
    }






    
    /* checkout Page */

    .checkout{
        .checkout-container{
            height: 100%;
            display: grid;
            grid-template-columns: repeat(2,1fr);

            .fa-times{
                cursor: pointer;
            }
            
            .checkout-list{
                padding: 10rem 2rem 2rem;
                background: var(--lit-bg-500);
                height: 100%;
                min-height: 100vh;
                display: flex;
                flex-direction: column;
                gap: 2rem;

                h3{
                    font-size: 24px;
                    font-weight: 700;
                }

                .cart{
                    display: flex;
                    flex-direction: column;
                    gap: 1rem;

                    .cart-card{
                        display: flex;
                        justify-content: space-between;
                        padding: 1rem;
                        background: var(--lit-bg-100);
                        border-radius: 10px;

                        .cart-right-details{
                            display: flex;
                            gap: 1rem;
                            

                            .cart-image{
                                width: 70px;
                                height: 70px;
                                background: #EEEEEF;
                                padding: 1rem;
                                border-radius: 5px;

                                img{
                                    width: 100%;
                                    height: 100%;

                                }
                            }

                            h6{
                                font-size: 14px;
                                display: flex;
                                flex-direction: column;
                                gap: .5rem;

                                span{
                                    font-size: 12px;
                                    font-weight: 500;
                                }
                            }
                            
                        }

                        .cart-left-details{
                            display: flex;
                            gap: 1rem;

                            .price-tag{
                                display: flex;
                                flex-direction: column;
                                justify-content: space-between;
                                align-items: end;

                                .quantity{
                                    display: flex;
                                    gap: 1rem;
                                    padding: .4rem;
                                    border-radius: 2ch;
                                    background: #EEEEEF;
                                    align-items: center;

                                    p{
                                        font-size: 9px;
                                    }

                                    i{
                                        font-size: 9px;
                                        cursor: pointer;
                                    }
                                }
                            }
                        }
                    }
                }
            }

            .checkout-details{
                padding: 10rem 2rem 2rem;
                background: #EEEEEF;
                height: 100%;
                min-height: 100vh;
                .checkout-info{
                    display: flex;
                    flex-direction: column;
                    gap: 1rem;
                    border-bottom: 1px solid #acacac;
                    padding-bottom: 1rem;

                    .check{
                        display: flex;
                        justify-content: space-between;
                        align-items: center;

                        span{
                            font-size: 10px;
                            text-transform: capitalize;
                        }

                        select{
                            font-size: 10px;
                            background: transparent;
                            border: none;
                            cursor: pointer;

                            option{
                                font-size: 10px;
                                cursor: pointer;
                            }

                        }
                        h6{
                            color: var(--text-grn-100);
                        }
        
                    }

                    form.active{
                        display: flex;
                    }

                    form{
                        display: none;
                        width: 100%;
                        gap: 1rem;
                        input{
                            width: 100%;
                            padding: 1rem;
                            border-radius: 4ch;
                            border: none;
                            outline: none;
                        }

                        button{
                            padding: 1rem;
                            border-radius: 4ch;
                            background: var(--text-drk-200);
                            color: var(--lit-bg-500);
                            border: none;
                            outline: none;
                        }

                    }
                    .user{
                        display: flex;
                        gap: 1rem;
                        justify-content: end;
                        color: var(--text-grn-100);
                        cursor: pointer;
                    }

                    .user.active{
                        display: none;
                    }

                }

                .total{
                    padding: 2rem 0 0;
                    display: flex;
                    flex-direction: column;
                    gap: 1rem;

                    .total-content{
                        display: flex;
                        justify-content: space-between;
                        align-items: center;

                        text-transform: capitalize;
                    }

                    button{
                        padding: 1rem;
                        background: var(--text-grn-100);
                        cursor: pointer;
                        border: none;
                        outline: none;
                        border-radius: 4ch;
                        color: var(--lit-bg-100);
                        font-size: 14px;
                        transition: all 350ms ease;

                        &:hover{
                            background: var(--green);
                        }
                    }
                    .payment-gateways{
                        display: flex;
                        justify-content: center;
                        gap: 1rem;

                        img{
                            width: 40px;
                            object-fit: contain;
                        }
                    }   
                }
            }
        }


    }




    /* product descriptions */
    .product-des{
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 7rem 0 0;

        .product-des-container{
            display: grid;
            gap: 2rem;
            grid-template-columns: repeat(2,1fr);

            .col-image{
                display: grid;
                gap: 1rem;
                grid-template-columns: repeat(2,1fr);

                .firtimage{
                    display: flex;
                    flex-direction: column;
                    padding: 2rem;
                    grid-column: span 2;
                    width: 100%;
                    height: 70vh;
                    background: var(--lit-bg-500);
                    border: 1px solid var(--text-lit-200);
                    border-radius: 15px;

                    img{
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                    }

                    a{
                        display: flex;
                        text-decoration: none;
                        padding: 1rem 1.2rem;
                        gap: .5rem;
                        align-items: center;
                        align-self: end;
                        color: var(--green-drk-100);
                        background: var(--text-lit-200);
                        border-radius: 4ch;
                        font-weight: 700;
                        font-size: 12px;
                    }
                }

                .downimage{
                    height: 17rem;
                    padding: 2rem;
                    background: var(--lit-bg-500);
                    border: 1px solid var(--text-lit-200);
                    border-radius: 15px;

                    img{
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                    }
                }

                .forthimage{
                    height: 15rem;
                    width: 100%;
                    border-radius: 15px;
                    overflow: hidden;
                    grid-column: span 2;

                    img{
                        width: 100%;
                        height: 100%;
                    }
                }
            }

            .col-description{
                display: flex;
                flex-direction: column;
                gap: 2rem;
                padding: 2rem;
                box-shadow: 1px 1px 20px #0001;
                height: max-content;
                border-radius: 15px;
                position: sticky;
                top: 5rem;

                h2{
                    font-size: 62px;
                    font-weight: 500;
                    line-height: 60px;
                }
                p{
                    font-size: 15px;
                    line-height: 20px;
                    color: var(--text-drk-300);
                }

                .li{
                    display: flex;
                    flex-direction: column;
                    gap: .5rem;

                    li{
                        display: flex;
                        gap: 1rem;
                        align-items: center;

                        i{
                            font-size: 10px;
                            padding: .5rem;
                            border-radius: 50%;
                            background: #e4e4e4;
                        }
                    }
                }

                .uni-container{
                    display: flex;
                    flex-direction: column;
                    background: var(--lit-bg-500);
                    border-radius: 1ch;

                    .uni-box{
                        display: flex;
                        align-items: center;
                        gap: 1rem;
                        padding: .5rem;

                        .uni-image{
                            padding: .3rem;
                            height: fit-content;
                            width: max-content;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            background: #e4e4e4;

                            img{
                                width: 1rem;
                                height: 1rem;
                                object-fit: contain;
                            }
                        }

                        .uni-content{
                            display: flex;
                            flex-direction: column;
                            
                            h4{
                                display: flex;
                                flex-direction: column;
                                font-size: 14px;
                                gap: .2rem;
                                font-weight: 500;
                                color: var(--text-drk-100);

                                span{
                                    font-size: 12px;
                                    color: var(--text-drk-300);
                                }
                            }
                        }

                        &:hover{
                            background: var(--text-lit-100);
                            border-radius: 1ch;
                            box-shadow: 1px 1px 10px #0001 ;
                            cursor: pointer;
                        }
                    }


                    .active{
                        background: var(--text-lit-100);
                        border-radius: 1ch;
                        box-shadow: 1px 1px 10px #0001 ;
                    }
                }

                button{
                    padding: 1rem;
                    background: var(--text-grn-100);
                    cursor: pointer;
                    border: none;
                    outline: none;
                    border-radius: 4ch;
                    color: var(--lit-bg-100);
                    font-size: 14px;
                    transition: all 350ms ease;

                    &:hover{
                        background: var(--green);
                    }
                }
                .payment-gateways{
                    display: flex;
                    justify-content: center;
                    gap: 1rem;

                    img{
                        width: 40px;
                        object-fit: contain;
                    }
                }   
            }
        }
    }

    .padding{
        padding: 5rem 0;
    }

    .product-secimage{
        background: url(../img/suite_banner_T3T1.jpg);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        min-height: 10rem;
        
    }

    .product-sec-content{
        padding: 1rem !important;

        h1{
            font-size: 50px !important;
            line-height: 50px !important;
        }
    }


    .product-list{
        i{
            font-size: 10px !important;
            padding: .3rem;
            background: #e1e9eb;
            border-radius: 50%;
            height: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 1.5rem;
        }
    }

    .product-support{
        display: grid;
        grid-template-columns: repeat(1,1fr) !important;
        height: fit-content !important;
        overflow: none;
        border-radius: 15px !important;


        .col-box-Two{
            background-position: center !important;
            background-size: cover !important;
            height: 40rem !important;
        }
    }



    .secure{
        padding: 0 0 4rem;
        .secure-container{
            border-radius: 15px;
            padding: 2rem;
            height: 50rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            background: url(../img/videoframe_5870.png);
            background-position: center;
            background-size: cover;
            text-align: center;


            h2{
                font-size: 50px;
                display: flex;
                flex-direction: column;
                font-weight: 600;
            }
            
            .secure-bottom{
                flex-direction: column;
                display: flex;
                gap: 1rem;

                p{
                    font-size: 18px;
                    color: var(--green);
                }

                h4{
                    font-size: 40px;
                    font-weight: 500;
                }
            }
        }
    }



    .product-card{
        background: var(--lit-bg-100);
        padding: 5rem 0;
    
        .product-card-container{
            display: flex;
            flex-direction: column;
            gap: 2rem;
    
            h1{
                font-size: 60px;
                font-weight: 600;
                color: var(--green-drk-100);
            }
    
            .drk-green{
                background: #F2F4F6;
    
                .bottom{
                    display: flex;
                    justify-content: space-between;
    
                    h5{
                        color: var(--text-drk-100);
                        font-size: 24px;
                        font-weight: 500;
    
                        span{
                            color: #161616;
                        }
                    }
    
                    i{
                        background: var(--text-grn-100);
                        color: var(--lit-bg-100);
                    }
                }
            }
            
            .lit-bg{
                background: url(../img/videoframe_18518.png);
                .bottom{
                    display: flex;
                    justify-content: space-between;
    
                    h5{
                        color: var(--lit-bg-100);
                        font-size: 26px;
                        font-weight: 500;
    
                        span{
                            color: #ffffff;
                        }
                    }
    
                    i{
                        background: var(--lit-bg-300);
                        color: var(--green-drk-100);
                    }
                }
            }
          
            .prod-card-container{
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
    
                .service-card{
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    padding: 2rem;
                    height: 30rem;
                    border-radius: 3ch;
    
                    .upper{
                        /* background: green; */
                        height: 80%;
    
                        p{
                            font-size: 14px;
                            display: flex;
                            flex-direction: column;
                            gap: 1rem;
                            display: none;
                        }
                       
                        .service-img{
                            height: 100%;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            
                            img{
                                width: 100%;
                                height: 100%;
                                object-fit: contain;
                            }
                        }
                    }
    
                    .bottom{
                        display: flex;
                        justify-content: space-between;
                        user-select: none;
    
                        h5{
                            display: flex;
                            flex-direction: column;
                            gap: .5rem;
    
                            span{
                                font-size: 11px;
                                font-weight: 400;
                            }
                        }
    
                        i{
                            font-size: 14px;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            width: 40px;
                            height: 40px;
                            border-radius: 50%;
                            font-weight: 400;
                            cursor: pointer;
                        }
                    }
                }
                .service-card.active{
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    height: 30rem;
                    border-radius: 3ch;
                    background: var(--lit-bg-100);
                    box-shadow: 1px 1px 20px #0001;
    
                    .upper{
                        /* background: green; */
                        height: 80%;
    
                        p{
                            font-size: 14px;
                            display: flex;
                            flex-direction: column;
                            gap: 1rem;
                            display: flex;
                        }
                       
                        .service-img{
                            height: 100%;
                            display: none;
                            align-items: center;
                            justify-content: center;
                            
                            img{
                                width: 100%;
                                height: 60%;
                            }
                        }
                    }
    
                    .bottom{
                        display: flex;
                        justify-content: space-between;
    
                        h5{
                            display: flex;
                            flex-direction: column;
                            gap: .5rem;
                            color: var(--green-drk-100) ;
    
                            span{
                                font-size: 11px;
                                font-weight: 400;
                                color: var(--text-grn-100);
                            }
                        }
    
                        i{
                            font-size: 14px;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            width: 40px;
                            height: 40px;
                            border-radius: 50%;
                            font-weight: 400;
                            cursor: pointer;
                            background: var(--lit-bg-500);
                            color: var(--text-drk-300);
                        }
                    }
                }
            }
    
    
        }
    }


    .spec{
        padding: 1rem 0 5rem;
        .spec-container{
            display: grid;
            gap: 5rem;
            grid-template-columns: max-content auto;

            h1{
                font-size: 54px;
            }

            .spec-right{
                display: flex;
                flex-direction: column;
                gap: 2rem;  

                .first-section{
                    display: flex;
                    flex-direction: column;
                    gap: 1rem;           
                    padding: 2rem 0;
                    border-top: 1px solid #0002;               
                    border-bottom: 1px solid #0002;               

                    h4{
                        font-size: 34px;
                        font-weight: 500;
                    }

                    p{
                        font-size: 14px;
                        line-height: 25px;
                    }
                }

                .grid-section{
                    display: flex;
                    flex-direction: column;
                    gap: 2rem;
                    padding: 2rem 0;
                    border-bottom: 1px solid #0003;

                    h3{
                        font-size: 28px;
                        font-weight: 500;
                    }
                
                .grid-3{
                    display: grid;
                    grid-template-columns: repeat(3,1fr);
                    gap: 1rem;

                    li{
                        list-style: none;
                        display: flex;
                        gap: 1rem;

                        i{
                            color: var(--green);
                        }
                        span{
                            display: flex;
                            flex-direction: column;
                        }

                        p{
                            a{
                                color: var(--green-drk-100);

                                &:hover{
                                    color: var(--green);
                                }
                            }
                        }
                    }
                }

                .ops{
                    display: grid;
                    grid-template-columns: repeat(2,1fr);
                    gap: 1rem;

                .ops-col{
                    border: 1px solid #0003;
                    border-radius: 15px;
                    padding: 1rem;
                    width: 100%;
                    display: flex;
                    align-items: center;
                    justify-items: center;
                    text-align: center;

                    .centre{
                        width: 100%;
                        display: flex;
                        flex-direction: column;
                        gap: 1rem;
                        justify-content: center;

                        .icons{
                            font-size: 22px;
                            gap: 1rem;
                            
                            i{
                                padding: 0 .5rem;
                                color: #126334;
                            }
                        }

                        p{
                            font-size: 12px;
                        }
                    }
                    
                }                    

                }

                }
            }
        }
    }







@media(width < 1000px){
    .container{
        width: 90%;
    }
}

@media(width < 950px){
    .container{
        width: 80%;
    }

    /* Hero section */
.hero{
    
    .hero-container{
        
        .hero-content{
    
            h1{
                font-size: 70px;
                color: var(--text-lit-200);
                font-weight: 500;
                display: flex;
                flex-direction: column;

                
                span{
                    position: relative;
                    width: max-content;

                    &::after{
                        content: "";
                        position: absolute;
                        bottom: .5rem;
                        left: 0;
                        width: 100%;
                        height: 3px;
                        background: var(--green);
                        z-index: 1;
                    }   
                }
            }

            p{
                font-size: 18px;
                color: var(--text-lit-200);
                font-weight: 500;
            }

            a{
                padding: 1rem 2rem;
            }
        }

        .rate{
            display: flex;
            gap: 1rem;
            align-items: start;
            flex-direction: column;
            justify-content: space-between;
            
            .rate-left{
              
                .rating{
              
                    .rating-img{
              
                        img{
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                        }
                    }

                    h6{
                        font-size: 14px;
                        font-weight: 600;
                    }

                    i{
                        color: orange;
                    }
                }   

                h5{
                    color: var(--text-lit-100);
                    display: flex;
                    gap: .5rem;
                    font-weight: 600;
                }

                .image-container{
                    display: flex;
                    gap: .3rem;
                    align-items: center;

                    img{
                        width: 100px;
                        object-fit: cover;
                    }
                }
            }

        }
    }
}
 


/* why section */
.why{
   
    .why-container{
   
        .why-content{
            .why-heading{
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                align-items: start;
                gap: 1rem;

                h1{
                    font-size: 50px;
                    width: min(39rem, 100%);
                    font-weight: 500;
                    color: var(--green-drk-100);
                }

                a{
                    padding: 1rem 2rem;
                    text-decoration: none;
                    background: var(--green);
                    color: var(--lit-bg-100);
                    border-radius: 4ch;
                    font-weight: 600;
                    font-size: 14px;
                }
            }

            .why-container-details{
                display: grid;
                grid-template-columns: repeat(1, 1fr);
                gap: 2rem;

                .why-box{
                    

                    h4{
                        font-size: 28px;
                    }

                    ul{
                        display: flex;
                        flex-direction: column;
                        gap: 1.5rem;

                        li{
                            font-size: 16px;
                            i{
                                color: var(--green);
                            }
                        }
                    }
                }
                .green{
                    ul{
                        li{
                            i{
                                color: var(--green-lit-100);
                            }
                        }
                    }
                }
            }
            .why-image-section{
                display: flex;
                flex-direction: column;
                gap: 5rem;

                .first-whyimage{
                    height: 25rem;
                    position: relative;
                    overflow: hidden;
                    display: flex;
                    align-items: end;
                    justify-content: center;
                    padding: 1rem;
                    border-radius: 2ch;

                    .page-cloth{
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background: rgba(180, 180, 180, 0.609);
                        z-index: 3;
                    }
                

                    .image-contents{
                        display: flex;
                        gap: 2rem;
                        position: relative;
                        z-index: 10;

                        p{
                            display: flex;
                            gap: 1rem;
                            font-size: 14px;
                            font-weight: 500;

                            i{
                                color: var(--green);
                            }
                        }
                    }
                }

                .second-whyimage{
                    background: url(../img/bgd.jpg.crdownload);
                    height: 30rem;
                    

                    .image-contents{
                        display: flex;
                        flex-direction: column;
                        color: var(--lit-bg-100);
                        justify-content: space-between;
                        height: 100%;
                        width: 95%;
                        padding: 2rem 0;
                        margin-inline: auto;    

                        .col{
                            display: flex;
                            flex-direction: column;
                            gap: .5rem;

                            h3{
                                font-size: 40px;
                                font-weight: 600;
                            }
                            p{
                                width: min(30rem, 100%);
                                line-height: 25px;
                                font-size: 14px;
                                font-weight: 600;
                                letter-spacing: 1px;
                            }
                        }
                    }
                }
            }

            .discover{

                .col{
                    display: flex;
                    flex-direction: column;
                    gap: 2rem;
                    
                    .heading{
                        display: flex;
                        flex-direction: column;
                        gap: 1rem;

                        h1{
                            font-size: 50px;
                            font-weight: 600;
                            display: flex;
                            flex-direction: column;

                            span{
                                position: relative;
                                width: max-content;
            
                                &::after{
                                    content: "";
                                    position: absolute;
                                    bottom: .5rem;
                                    left: 0;
                                    width: 100%;
                                    height: 2px;
                                    background: var(--green);
                                    z-index: 1;
                                }   
                            }
                        }

                        a{
                            padding: 1rem 2rem;
                            text-decoration: none;
                            background: var(--green);
                            color: var(--lit-bg-100);
                            border-radius: 4ch;
                            font-weight: 600;
                            font-size: 16px;
                            width: max-content;
                            transition: all 350ms ease;
                            cursor: pointer;

                            &:hover{
                                background: var(--text-grn-100);
                            }
                        }

                    }

                    .trezorsafe-card{
                        position: relative;

                        .price{
                            position: absolute;
                            right: 1rem;
                            top: 1rem;
                            padding: .5rem;
                            font-size: 18px;
                            font-weight: 500;
                            letter-spacing: 1px;
                            background: var(--lit-bg-500);
                        }

                        .card-image{
                            width: 100%;
                            height: 50%;
                            /* background: green; */
                        }

                        .productname{
                            a{
                                display: flex;
                            flex-direction: column;
                            gap: .3rem;
                            font-size: 24px;
                            text-decoration: none;
                            font-weight: 600;
                            color: var(--text-drk-100);
                            
                            span{
                                font-size: 12px;
                                font-weight: 600;
                                color: var(--text-grn-100);

                            }
                            }
                        }
                    }
                }
            }
        }
    }

}
/* why section */


/* manage */
.manage{
    background: var(--lit-bg-500);

    .manage-container{
        gap: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;

        .manage-header{
            display: flex;
            justify-content: space-between;
            align-items: end;

            h1{
                font-size: 40px;
                font-weight: 600;
                display: flex;
                flex-direction: column;

                span{
                    position: relative;
                    width: max-content;

                    &::after{
                        content: "";
                        position: absolute;
                        bottom: .5rem;
                        left: 0;
                        width: 100%;
                        height: 2px;
                        background: var(--green);
                        z-index: 1;
                    }   
                }
            }
            a{
                padding: 1rem 2rem;
                text-decoration: none;
                background: var(--green);
                color: var(--lit-bg-100);
                border-radius: 4ch;
                font-weight: 600;
                font-size: 16px;
                transition: all 350ms ease;

                &:hover{
                    background: var(--text-grn-100);
                }
            }
        }

        .manage-image{
            height: 30rem;
        }

        .support{
            display: grid;
            grid-template-columns: repeat(2,1fr);
            height: 25rem;
            margin: 0 0 4rem;
            background: var(--lit-bg-500);
            border: 2ch;
            overflow: hidden;

            .col-support{
                display: flex;
                flex-direction: column;
                gap: 1rem;
                height: 100%;
                overflow: hidden;
                justify-content: end;
                padding: 2rem;
                border-radius: 2ch;

                p{
                    font-size: 40px;
                }
            }

            .col-box{
                background: url(../img/bgd.jpg.crdownload);
                position: relative;
                

                &::after{
                    content: "";
                    position: absolute;
                    top: 0;left: 0;
                    height: 100%;width: 100%;
                    background: #05050524;
                }

                p{
                    position: relative;
                    z-index: 10;
                    color: var(--text-lit-200);
                    width: min(30rem, 100%);
                }
            }

            .col-box-Two{
                text-align: center;
                align-items: center;
                justify-content: center;
                background: url(../img/bigbgd.webp);
                background-repeat: no-repeat;
                background-size: cover;
                background-position: center center;

                p{
                    font-size: 30px;
                    width: min(20rem, 100%);
                }

                a{
                    padding: 1rem 2rem;
                    text-decoration: none;
                    background: var(--green-drk-100);
                    border-radius: 4ch;
                    color: var(--text-lit-100);
                    transition: all 350ms ease;

                    &:hover{
                        background: #2f2f2f;
                    }
                }
            }
        }
    }
}


/* services */
.service{
    background: var(--lit-bg-500);
    padding: 5rem 0;

    .service-container{
        display: flex;
        flex-direction: column;
        gap: 2rem;

        h1{
            font-size: 40px;
            font-weight: 600;
            color: var(--green-drk-100);
        }

        .drk-green{
            background: var(--green);

            .bottom{
                display: flex;
                justify-content: space-between;

                h5{
                    color: var(--lit-bg-100);
                    font-size: 16px;
                    font-weight: 500;

                    span{
                        color: #99E686;
                    }
                }

                i{
                    background: var(--text-grn-100);
                    color: var(--lit-bg-100);
                }
            }
        }

        .lit-green{
            background: var(--text-grn-200);

            .bottom{
                display: flex;
                justify-content: space-between;

                h5{
                    color: var(--text-drk-100);
                    font-size: 16px;
                    font-weight: 500;

                    span{
                        color: var(--text-grn-100);
                    }
                }

                i{
                    background: var(--text-grn-100);
                    color: var(--lit-bg-100);
                }
            }
        }

        .service-card-container{
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 1rem;

            .service-card{
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                padding: 2rem;
                height: 30rem;
                border-radius: 3ch;

                .upper{
                    /* background: green; */
                    height: 80%;

                    p{
                        font-size: 14px;
                        display: flex;
                        flex-direction: column;
                        gap: 1rem;
                        display: none;
                    }
                   
                    .service-img{
                        height: 100%;
                        /* background: purple; */
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        
                        img{
                            width: 100%;
                            height: 60%;
                        }
                    }
                }

                .bottom{
                    display: flex;
                    justify-content: space-between;
                    user-select: none;

                    h5{
                        display: flex;
                        flex-direction: column;
                        gap: .5rem;

                        span{
                            font-size: 11px;
                            font-weight: 400;
                        }
                    }

                    i{
                        font-size: 14px;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 40px;
                        height: 40px;
                        border-radius: 50%;
                        font-weight: 400;
                        cursor: pointer;
                    }
                }
            }
            .service-card.active{
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                height: 30rem;
                border-radius: 3ch;
                background: var(--lit-bg-100);
                box-shadow: 1px 1px 20px #0001;

                .upper{
                    /* background: green; */
                    height: 80%;

                    p{
                        font-size: 14px;
                        display: flex;
                        flex-direction: column;
                        gap: 1rem;
                        display: flex;
                    }
                   
                    .service-img{
                        height: 100%;
                        display: none;
                        align-items: center;
                        justify-content: center;
                        
                        img{
                            width: 100%;
                            height: 60%;
                        }
                    }
                }

                .bottom{
                    display: flex;
                    justify-content: space-between;

                    h5{
                        display: flex;
                        flex-direction: column;
                        gap: .5rem;
                        color: var(--green-drk-100) ;

                        span{
                            font-size: 11px;
                            font-weight: 400;
                            color: var(--text-grn-100);
                        }
                    }

                    i{
                        font-size: 14px;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 40px;
                        height: 40px;
                        border-radius: 50%;
                        font-weight: 400;
                        cursor: pointer;
                        background: var(--lit-bg-500);
                        color: var(--text-drk-300);
                    }
                }
            }
        }


    }
}

/* about */

.about{
    background: var(--lit-bg-500);
    height: 35rem;

    .about-container{
        h1{
            position: relative;
            z-index: 3;
            font-size: 50px;
            color: var(--text-lit-200);
            font-weight: 500;
            display: flex;
            flex-direction: column;
            
            span{
                position: relative;
                width: max-content;

                &::after{
                    content: "";
                    position: absolute;
                    bottom: .5rem;
                    left: 0;
                    width: 100%;
                    height: 3px;
                    background: var(--green-lit-100);
                    z-index: 1;
                }   
            }
        }

        .about-down{
            position: relative;
            z-index: 3;
            display: flex;
            gap: 1rem;
            flex-direction: column;


            > p{
                font-size: 20px;
                font-weight: 500;
                width: min(30rem, 100%);
                /* line-height: 30px; */
                color: var(--lit-bg-500);
            }

            .button-section{
                display: flex;
                gap: 1rem;
                flex-direction: column;
                justify-content: space-between;
                align-items: start;

                a{
                    padding: 1rem 3rem;
                    background: var(--green-lit-100);
                    text-decoration: none;
                    border-radius: 4ch;
                    font-size: 14px;
                    color: var(--green-drk-100);
                    font-weight: 700;
                    transition: all 350ms ease;
                    cursor: pointer;

                    &:hover{
                        background: var(--green-lit-200);
                    }
                }

                .fine-info{
                    display: flex;
                    color: var(--lit-bg-500);
                    gap: 2rem;
                    flex-wrap: wrap;

                    p{
                        display: flex;
                        gap: .5rem;
                    }
                }
            }
        }
    }
}

/* intro */
.intro{
    padding: 5rem 0;
    height: 40rem;
    background: var(--lit-bg-500);

    .intro-container{
        display: flex;
        align-content: center;
        justify-content: center;
        background: var(--green-lit-100);
        height: 100%;
        position: relative;
        overflow: hidden;
        align-items: center;
        border-radius: 2ch;

        .intro-content{
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 3;

            h1{
             font-size: 50px;
             display: flex;
             flex-direction: column;
             text-align: center;
             align-items: center;

             span{
                position: relative;
                width: max-content;

                &::after{
                    content: "";
                    position: absolute;
                    bottom: .5rem;
                    left: 0;
                    width: 100%;
                    height: 3px;
                    background: var(--green);
                    z-index: 1;
                }   
                }
            }

            a{
                padding: 1rem 3rem;
                background: var(--green-drk-100);
                text-decoration: none;
                border-radius: 4ch;
                font-size: 14px;
                color: var(--text-lit-100);
                font-weight: 700;
                transition: all 350ms ease;
                cursor: pointer;

                &:hover{
                    background: var(--text-drk-200);
                }
            }
        }

        

        .images-right{
            right: -1rem;
        }
        .images-left{
            left: -1rem;
        }
    }
}










/* ------------Product Page ---------- */
.product-hero{
    padding: 10rem 0;
    
    
    
    .product-container{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        border-bottom: 1px solid #d5d3d3;
        
        .product-content{
            display: flex;
            flex-direction: column;
            gap: 2rem;
            align-items: center;
            
            h1{
                font-size: 70px;
                font-weight: 600;
            }

            .product-tags{
                display: flex;
                gap: 1rem;
                flex-wrap: wrap;
                justify-content: center;

                .active{
                    background: #9c9c9c;
                }
                li{
                    list-style: none;
                    padding: 1rem;
                    background: #bfbfbf;
                    border-radius: 4ch;
                    transition: all 350ms ease;
                    cursor: pointer;

                    &:hover{
                        background: #9c9c9c;
                    }

                    a{
                        text-decoration: none;
                        color: var(--text-drk-200);
                    }
                }
            }
        }

        .product-hero-image{
            width: mn(400px, 100%);

            img{
                width: 100%;
                object-fit: contain;
            }
        }   
    }
    
}





.discover1{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    /* background: red; */
    gap: 1rem;

    .discoverBtn{
        padding: 1rem 2rem;
        grid-column: span 1;
        text-decoration: none;
        color: var(--text-drk-200);
        background: #c4c4c4;
        width: fit-content;
        border-radius: 4ch;
        transition: all 350ms ease;
        display: flex;
        justify-self: center;
        font-size: 10px;

        &:hover{
            background: var(--lit-bg-100);
        }
    }

}








.session{
    padding: 5rem 0;

    .session-container{
        display: grid;
        grid-template-columns: repeat(1,1fr);
        gap: 1rem;
        padding: 1rem;
        border-radius: 20px;
        background: var(--lit-bg-100);
        min-height: 30rem;

        .session-image{
            background-image: url(../img/products/sessionbg.png);
            border-radius: 10px;
            height: 20rem;
        }

        .session-content{
            display: flex;
            flex-direction: column;
            gap: 1rem;
            padding: 3rem;

            h1{
                font-size: 60px;
                font-weight: 500;
                line-height: 70px;
            }

            .session-list{
                display: flex;
                flex-direction: column;
                gap: 1rem;

                li{
                    list-style: none;
                    display: flex;
                    gap: 1rem;
                    line-height: 25px;
                    letter-spacing: 1px;
                    color: var(--text-drk-300);

                    i{
                        font-size: 14px;
                        color: var(--green);
                    }
                }
            }

            .session-buttons{
                display: flex;
                gap: 1rem;

                a{
                    text-decoration: none;
                    padding: 1rem;
                    cursor: pointer;
                    font-size: 14px;
                    font-weight: 600;
                    color: var(--text-drk-200);
                    background: var(--lit-bg-300);
                    border-radius: 4ch;
                }

                .btn-bgd{
                    background: var(--text-grn-100);
                    color: var(--lit-bg-100);
                    cursor: pointer;
                    transition: all 450ms ease;

                    &:hover{
                        background: var(--green);
                    }
                }
            }
        }
    }

}







.backup{
    background: var(--lit-bg-100);
    padding: 5rem 0;
.discover2{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 1rem;

    .discoverBtn{
        padding: 1rem 2rem;
        grid-column: span 1;
        text-decoration: none;
        color: var(--text-drk-200);
        background: #c4c4c4;
        width: fit-content;
        border-radius: 4ch;
        transition: all 350ms ease;
        display: flex;
        justify-self: center;
        font-size: 10px;

        &:hover{
            background: var(--lit-bg-100);
        }
    }

}
}




.popular{
    padding: 5rem 0;


    .popular-container{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 1rem;
        }
    }









    .Bundles{
        padding: 5rem 0;
        background: var(--lit-bg-100);
    
    
        .popular-container{
            display: grid;
            grid-template-columns: repeat(2,1fr);
            gap: 1rem;
    
            .col-card{
                position: relative;
                overflow: hidden;
                border-radius: 2ch;
                height: fit-content;
                background: var(--lit-bg-500);
                justify-content: space-between;
                display: flex;
                flex-direction: column;
                padding: 4rem 1.5rem 1.5rem;
                gap: 1rem;
              
    
                .percentoff{
                    position: absolute;
                    background: #FBB861;
                    color: var(--text-drk-200);
                    font-size: 12px;
                    font-weight: 500;
                    top: 1rem;
                    padding: .5rem;
                    border-radius: 4ch;
                }
    
                .card-image{
                    width: 100%;
                    height: 7rem;
                    /* background: green; */
    
                    .card{
                        width: 100%;
                        height: 100%;
                        overflow: hidden;
                        
                        img{
                            width: 100%;
                            height: 100%;
                            object-fit: contain;
    
                        }
                    }
    
                    .card {
                        display: none; /* Hide all images by default */
                    }
                    .card.active {
                        display: block; /* Only the active one is visible */
                    }
                }
    
    
    
    
                .productname{
                    a{
                        display: flex;
                    flex-direction: column;
                    gap: .3rem;
                    font-size: 16px;
                    text-decoration: none;
                    font-weight: 500;
                    color: var(--text-drk-100);
                    
                    span{
                        font-size: 12px;
                        font-weight: 500;
                        color: var(--text-drk-300);
                    }
                    }
                }
    
                .work{
                    display: flex;
                    gap: .5rem;
                    align-items: center;
                    justify-content: space-between;
                    padding: .5rem 1rem;
                    border: 1px solid #ddd;
                    border-radius: 4ch;
    
                    h6{
                        font-size: 10px;
                        font-weight: 500;
                        color: var(--text-drk-300);
                    }
                    ul{
                        display: flex;
                        gap: 1rem;
    
                        li{
                            list-style: none;
                            font-size: 8px;
                            display: flex;
                            gap: .3rem;
                            padding: .4rem;
                            background: var(--lit-bg-100);
                            border-radius: 2ch;
                            color: var(--text-drk-300);
                        }
                    }
                }
    
                > a{
                    width: 100%;
                    padding: 1rem;
                    border-radius: 4ch;
                    text-align: center;
                    text-decoration: none;
                    color: var(--lit-bg-100);
                    background: var(--text-grn-100);
                    transition: all 500ms ease;
                    
                    &:hover{
                        background: var(--green);
                    }
                }
            }
    
            .col-card-content{
                display: flex;
                flex-direction: column;
                gap: 1rem;
                justify-content: center;
    
                h6{
                    font-size: 16px;
                    font-weight: 500;
                    color: var(--green);
                }
    
                h4{
                    font-size: 36px;
                    font-weight: 500;
                    color: var(--text-drk-200);
                }
    
                p{
                    color: var(--text-drk-300);
                }
            }
    
            }
        }
    
    



        .checkout{
            .checkout-container{
                width: 100%;
                margin: auto;
                height: 100%;
                display: grid;
                grid-template-columns: repeat(2,1fr);

                .checkout-list{
                    .cart{
                        position: relative;
                        .cart-card{
                            flex-direction: column;
                            gap: 1rem;


                            .cart-left-details{
                                .price-tag{
                                    display: flex;
                                    flex-direction: row;
                                    width: 100%;
                                    align-items: center;

                                }

                                > i{
                                    position: absolute;
                                    top: 1rem;
                                    right: 1rem;
                                }
                            }
                        }

                    }
                }
            }
        }           




        /* product descriptions */
        .product-des{
            .product-des-container{
                grid-template-columns: repeat(1,1fr);
            }
        }
    

        .product-secimage{
            background: url(../img/suite_banner_T3T1.jpg);
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            min-height: 20rem;   
        }

}


@media(width < 750px){
    .container{
        width: 95%;
    }

    nav{
        padding: 1rem 0;
    }



    .list-items{
        display: none;
    }


    .right-nav{
        display: flex;
        gap: 2rem;
        align-items: center;
    
        li{
            display: flex;
            color: var(--text-drk-300);
            
            a{
                color: var(--text-drk-300);
                font-size: 12px;
                text-decoration: none;
            }
        }
    
        select{
            display: none;
        }
        .menutogler{
            font-size: 16px;
            cursor: pointer;
            display: flex;
        }
    }
    

    aside{
        position: fixed;
        top: 5.5rem;left: 0;
        width: 100%;height: 100%;
        z-index: 1000;
        display: none;
    }
    
.sidenav{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 200;
    padding: 1rem;
    position: fixed;
    background: var(--lit-bg-100);
    max-height: 80vh;
    overflow-y: scroll;

    
    li{
        list-style: none;
        a{
            text-decoration: none;
            width: 100%;
            display: flex;
            justify-content: space-between;
            color: var(--green-drk-100);
        }

    }

    position: relative;

    .sidenavlist{
        display: flex;
        gap: 2rem;
        
    }
    .list-items{
        list-style: none;
        cursor: pointer;
    
        a{
            text-decoration: none;
            color: var(--text-drk-300);
            text-transform: capitalize;
            font-weight: 500;
            letter-spacing: 1px;
            transition: all 500ms ease;
        }
    
        &:hover{
            a{
                color: var(--text-drk-100);
            }
    
            .dropdown{
                display: flex;
            }
        }
    }
    
    
    .sidnavdropdown{
        z-index: 100;
        left: 0;
        width: 100%;
        display: none;
        background: transparent;
        padding: 2rem 0;
        transition: all 500ms ease;
        height: fit-content;
        
        .dropdown-env{
            /* padding: 1rem; */
            border-radius: 2ch;
            /* background: #fff; */
            width: 100%;
    
            .dropdown-container{
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 1rem;

            > .col-8{
                display: grid;
                grid-template-columns: repeat(1, 1fr);
                gap: 1rem;
                padding: .5rem;
                border-radius: 1ch;
                background: var(--lit-bg-500);
    
                .key-container{
                    display: flex;
                    padding: 1rem 0;
                    border-left:none;
                    border-top:1px solid var(--lit-bg-300);
                    flex-wrap: wrap;
                    gap: 1rem;
    
                    .menukey-card{
                        display: flex;
                        flex-direction: column;
                        align-items: center;

                        a{
                            text-decoration: none;
                            color: var(--text-drk-200);
                        .key-image{
                            width: 50px;
                            height: 50px;
                            display: inline;
                            
                            img{
                                width: 50px;
                                height: 50px;
                                object-fit: contain;
                            }
                        }
                        p{
                            font-size: 12px;
                            text-align: center;
                        }
                        }
                    }
    
                }
    
                .col-right{
                    display: flex;
                    flex-direction: column;
                    
    
                    h2{
                        font-size: 16px;
                        font-weight: 800;
                        text-transform: capitalize;
                    }
                    p{
                        font-size: 12px;
                        color: var(--text-drk-300);
                        padding-bottom: 1rem;
                    }
    
                    > ul{
                        display: flex;
                        flex-direction: column;
    
                        li{
                            list-style: none;
                            padding: .5rem;
                            border-radius: 1ch;
                            transition: all 400ms ease;
    
    
                            a{
                                display: flex;
                                gap: 1rem;
                                align-items: center;
                                text-decoration: none;
    
                                color: var(--text-drk-300);
    
                                i{
                                    width: 30px;
                                    height: 30px;
                                    background: #ddd;
                                    border-radius: 50%;
                                    display:flex;
                                    justify-content: center;
                                    align-items: center;
                                    font-size: 12px;
                                    transition: all 300ms ease;
                                }
                            }
    
                            &:hover{
                                a{
                                i{
                                background: var(--lit-bg-300);
                            }
                        }
                        }
    
                    }
                    .dif{
                        a{
                            i{
                                background: var(--green) !important;
                                color: var(--lit-bg-500);
                            }
                        }
                    }
                }
                 }
             }
    
             .col{
                .col-right{
                    display: flex;
                    flex-direction: column;
    
                    h2{
                        font-size: 16px;
                        font-weight: 800;
                        text-transform: capitalize;
                    }
                    p{
                        font-size: 12px;
                        color: var(--text-drk-300);
                        padding-bottom: 1rem;
                    }
    
                    > ul{
                        display: flex;
                        flex-direction: column;
                        gap: 1rem;
    
                        li{
                            list-style: none;
                            border-radius: 1ch;
                            transition: all 400ms ease;
    
                               a{
                                display: flex;
                                gap: 1rem;
                                align-items: center;
                                text-decoration: none;
    
                                color: var(--text-drk-300);
    
                                i{
                                    width: 30px;
                                    height: 30px;
                                    background: #ddd;
                                    border-radius: 50%;
                                    display:flex;
                                    justify-content: center;
                                    align-items: center;
                                    font-size: 12px;
                                    transition: all 300ms ease;
                                }
    
                            }
                            &:hover{
                                a{
                                i{
                                background: var(--lit-bg-300);
                                text-decoration: none;
                            }
                        }
                        }
                        }
                            
                    }
                }
             }
    
             > .col-4{
                
                display: grid;
                grid-template-columns: repeat(1,1fr);
                gap: 1rem;
                
    
                .col{
                    display: flex;
                    flex-direction: column;
                    gap: .5rem;
                    background: var(--lit-bg-500);
                    padding: 1rem;
                    border-radius: 1ch;
                    text-decoration: none;
    
                    h5{
                        font-size: 14px;
                        font-weight: 800;
                        color: var(--text-drk-100);
                        text-transform: capitalize;
                    }
    
                    p{
                        font-size: 11px;
                        width: min(14rem, 100%);
                        display: flex;
                        flex-direction: column;
                        gap: .5rem;
                        color: var(--text-drk-300);
    
                        span{
                            font-size: 14px;
                            font-weight: 500;
                            color: var(--green-drk-100);
                        }
                    }
                }
    
                .col-1{
                    background-image: url(../img/touch.webp);
                    background-repeat: no-repeat;
                    background-size: contain;
                    background-position: right;
                }
                .col-2{
                    background-image: url(../img/lappy.webp);
                    background-repeat: no-repeat;
                    background-size: contain;
                    background-position: right;
                }
    
             }
    
            }
    
        }
    }
}


        /* Hero section */
.hero{
    
    .hero-container{
        align-items: center;
        
        .hero-content{
            align-items: center;
            text-align: center;
            h1{
                text-align: center;
                font-size: 50px;
                color: var(--text-lit-200);
                font-weight: 500;
                display: flex;
                align-items: center;
                flex-direction: column;

                
                span{
                    text-align: center;
                    position: relative;
                    width: max-content;

                    &::after{
                        content: "";
                        position: absolute;
                        bottom: .5rem;
                        left: 0;
                        width: 100%;
                        height: 3px;
                        background: var(--green);
                        z-index: 1;
                    }   
                }
            }

            p{
                font-size: 18px;
                color: var(--text-lit-200);
                font-weight: 500;
            }

            a{
                padding: 1rem 2rem;
            }
        }

        .rate{
            display: flex;
            gap: 1rem;
            align-items: start;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            
            .rate-left{
              
                .rating{
              
                    .rating-img{
              
                        img{
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                        }
                    }

                    h6{
                        font-size: 14px;
                        font-weight: 600;
                    }

                    i{
                        color: orange;
                    }
                }   

                h5{
                    color: var(--text-lit-100);
                    display: flex;
                    gap: .5rem;
                    font-weight: 600;
                }

                .image-container{
                    display: flex;
                    gap: .3rem;
                    align-items: center;

                    img{
                        width: 100px;
                        object-fit: cover;
                    }
                }
            }

        }
    }
}
 

/* why section */
.why{
   
    .why-container{
   
        .why-content{
            .why-heading{
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                align-items: center;
                gap: 1rem;


                h1{
                    font-size: 40px;
                    width: min(39rem, 100%);
                    font-weight: 500;
                    text-align: center;
                    color: var(--green-drk-100);
                }

                a{
                    padding: 1rem 2rem;
                    text-decoration: none;
                    background: var(--green);
                    color: var(--lit-bg-100);
                    border-radius: 4ch;
                    font-weight: 600;
                    font-size: 14px;
                }
            }

            .why-container-details{
                display: grid;
                grid-template-columns: repeat(1, 1fr);
                gap: 2rem;

                .why-box{
                    text-align: center;
                    align-items: center;
                    
                    h4{
                        font-size: 28px;
                    }
                    
                    ul{
                        text-align: center;
                        display: flex;
                        flex-direction: column;
                        gap: 1.5rem;


                        li{
                            width: max-content;
                            font-size: 16px;
                            i{
                                color: var(--green);
                            }
                        }
                    }
                }
                .green{
                    ul{
                        li{
                            i{
                                color: var(--green-lit-100);
                            }
                        }
                    }
                }
            }
            .why-image-section{
                display: flex;
                flex-direction: column;
                gap: 5rem;

                .first-whyimage{
                    height: 25rem;
                    position: relative;
                    overflow: hidden;
                    display: flex;
                    align-items: end;
                    justify-content: center;
                    padding: 1rem;
                    border-radius: 2ch;
                

                    .image-contents{
                        display: flex;
                        flex-wrap: wrap;
                        align-items: center;
                        gap: 2rem;
                        position: relative;
                        z-index: 10;

                        p{
                            display: flex;
                            gap: 1rem;
                            font-size: 14px;
                            font-weight: 500;

                            i{
                                color: var(--green);
                            }
                        }
                    }
                }

                .second-whyimage{
                    background: url(../img/bgd.jpg.crdownload);
                    height: 30rem;
                    

                    .image-contents{
                        display: flex;
                        flex-direction: column;
                        color: var(--lit-bg-100);
                        justify-content: space-between;
                        height: 100%;
                        width: 95%;
                        padding: 2rem 0;
                        margin-inline: auto;    
                        align-items: center;

                        .col{
                            display: flex;
                            flex-direction: column;
                            gap: .5rem;
                            align-items: center;
                            text-align: center;

                            h3{
                                font-size: 40px;
                                font-weight: 600;
                            }
                            p{
                                width: min(30rem, 100%);
                                line-height: 25px;
                                font-size: 14px;
                                font-weight: 600;
                                letter-spacing: 1px;
                            }
                        }
                    }
                }
            }

            .discover{
                grid-template-columns: 1fr;

                .col{
                    display: flex;
                    flex-direction: column;
                    gap: 2rem;
                    
                    
                    .heading{
                        display: flex;
                        flex-direction: column;
                        gap: 1rem;
                        align-items: center;

                        h1{
                            font-size: 40px;
                            font-weight: 600;
                            display: flex;
                            text-align: center;
                            align-items: center;
                            flex-direction: column;

                            span{
                                position: relative;
                                width: max-content;
            
                                &::after{
                                    content: "";
                                    position: absolute;
                                    bottom: .5rem;
                                    left: 0;
                                    width: 100%;
                                    height: 2px;
                                    background: var(--green);
                                    z-index: 1;
                                }   
                            }
                        }

                        a{
                            padding: 1rem 2rem;
                            text-decoration: none;
                            background: var(--green);
                            color: var(--lit-bg-100);
                            border-radius: 4ch;
                            font-weight: 600;
                            font-size: 16px;
                            width: max-content;
                            transition: all 350ms ease;
                            cursor: pointer;

                            &:hover{
                                background: var(--text-grn-100);
                            }
                        }

                    }

                    .trezorsafe-card{
                        position: relative;
                        width: 100%;

                        .price{
                            position: absolute;
                            right: 1rem;
                            top: 1rem;
                            padding: .5rem;
                            font-size: 18px;
                            font-weight: 500;
                            letter-spacing: 1px;
                            background: var(--lit-bg-500);
                        }

                        .card-image{
                            width: 100%;
                            height: 50%;
                            /* background: green; */
                        }

                        .productname{
                            a{
                                display: flex;
                            flex-direction: column;
                            gap: .3rem;
                            font-size: 24px;
                            text-decoration: none;
                            font-weight: 600;
                            color: var(--text-drk-100);
                            
                            span{
                                font-size: 12px;
                                font-weight: 600;
                                color: var(--text-grn-100);

                            }
                            }
                        }
                    }
                }
            }
        }
    }

}
/* why section */


/* manage */
.manage{
    background: var(--lit-bg-500);

    .manage-container{
        gap: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;

        .manage-header{
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-direction: column;
            gap: 1rem;

            h1{
                font-size: 40px;
                font-weight: 600;
                display: flex;
                align-items: center;
                flex-direction: column;

                span{
                    position: relative;
                    width: max-content;

                    &::after{
                        content: "";
                        position: absolute;
                        bottom: .5rem;
                        left: 0;
                        width: 100%;
                        height: 2px;
                        background: var(--green);
                        z-index: 1;
                    }   
                }
            }
            a{
                padding: 1rem 2rem;
                text-decoration: none;
                background: var(--green);
                color: var(--lit-bg-100);
                border-radius: 4ch;
                font-weight: 600;
                font-size: 16px;
                transition: all 350ms ease;

                &:hover{
                    background: var(--text-grn-100);
                }
            }
        }

        .manage-image{
            height: 30rem;
        }

        .support{
            display: grid;
            grid-template-columns: repeat(1,1fr);
            height: 50rem;
            margin: 0 0 4rem;
            gap: 1rem;
            background: var(--lit-bg-500);
            border: 2ch;
            overflow: hidden;

            .col-support{
                display: flex;
                flex-direction: column;
                gap: 1rem;
                height: 100%;
                overflow: hidden;
                justify-content: end;
                padding: 2rem;
                border-radius: 2ch;

                p{
                    font-size: 40px;
                }
            }

            .col-box{
                background: url(../img/bgd.jpg.crdownload);
                position: relative;
                

                &::after{
                    content: "";
                    position: absolute;
                    top: 0;left: 0;
                    height: 100%;width: 100%;
                    background: #05050524;
                }

                p{
                    position: relative;
                    z-index: 10;
                    color: var(--text-lit-200);
                    width: min(30rem, 100%);
                }
            }

            .col-box-Two{
                text-align: center;
                align-items: center;
                justify-content: center;
                background: url(../img/bigbgd.webp);
                background-repeat: no-repeat;
                background-size: cover;
                background-position: center center;

                p{
                    font-size: 30px;
                    width: min(20rem, 100%);
                }

                a{
                    padding: 1rem 2rem;
                    text-decoration: none;
                    background: var(--green-drk-100);
                    border-radius: 4ch;
                    color: var(--text-lit-100);
                    transition: all 350ms ease;

                    &:hover{
                        background: #2f2f2f;
                    }
                }
            }
        }
    }
}


/* services */
.service{
    background: var(--lit-bg-500);
    padding: 5rem 0;

    .service-container{
        display: flex;
        flex-direction: column;
        gap: 2rem;
        
        h1{
            text-align: center;
            font-size: 40px;
            font-weight: 600;
            color: var(--green-drk-100);
        }

        .drk-green{
            background: var(--green);

            .bottom{
                display: flex;
                justify-content: space-between;

                h5{
                    color: var(--lit-bg-100);
                    font-size: 16px;
                    font-weight: 500;

                    span{
                        color: #99E686;
                    }
                }

                i{
                    background: var(--text-grn-100);
                    color: var(--lit-bg-100);
                }
            }
        }

        .lit-green{
            background: var(--text-grn-200);

            .bottom{
                display: flex;
                justify-content: space-between;

                h5{
                    color: var(--text-drk-100);
                    font-size: 16px;
                    font-weight: 500;

                    span{
                        color: var(--text-grn-100);
                    }
                }

                i{
                    background: var(--text-grn-100);
                    color: var(--lit-bg-100);
                }
            }
        }

        .service-card-container{
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 1rem;

            .service-card{
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                padding: 2rem;
                height: 30rem;
                border-radius: 3ch;

                .upper{
                    /* background: green; */
                    height: 80%;

                    p{
                        font-size: 14px;
                        display: flex;
                        flex-direction: column;
                        gap: 1rem;
                        display: none;
                    }
                   
                    .service-img{
                        height: 100%;
                        /* background: purple; */
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        
                        img{
                            width: 100%;
                            height: 60%;
                        }
                    }
                }

                .bottom{
                    display: flex;
                    justify-content: space-between;
                    user-select: none;

                    h5{
                        display: flex;
                        flex-direction: column;
                        gap: .5rem;

                        span{
                            font-size: 11px;
                            font-weight: 400;
                        }
                    }

                    i{
                        font-size: 14px;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 40px;
                        height: 40px;
                        border-radius: 50%;
                        font-weight: 400;
                        cursor: pointer;
                    }
                }
            }
            .service-card.active{
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                height: 30rem;
                border-radius: 3ch;
                background: var(--lit-bg-100);
                box-shadow: 1px 1px 20px #0001;

                .upper{
                    /* background: green; */
                    height: 80%;

                    p{
                        font-size: 14px;
                        display: flex;
                        flex-direction: column;
                        gap: 1rem;
                        display: flex;
                    }
                   
                    .service-img{
                        height: 100%;
                        display: none;
                        align-items: center;
                        justify-content: center;
                        
                        img{
                            width: 100%;
                            height: 60%;
                        }
                    }
                }

                .bottom{
                    display: flex;
                    justify-content: space-between;

                    h5{
                        display: flex;
                        flex-direction: column;
                        gap: .5rem;
                        color: var(--green-drk-100) ;

                        span{
                            font-size: 11px;
                            font-weight: 400;
                            color: var(--text-grn-100);
                        }
                    }

                    i{
                        font-size: 14px;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 40px;
                        height: 40px;
                        border-radius: 50%;
                        font-weight: 400;
                        cursor: pointer;
                        background: var(--lit-bg-500);
                        color: var(--text-drk-300);
                    }
                }
            }
        }


    }
}

/* about */

.about{
    background: var(--lit-bg-500);
    height: 35rem;

    .about-container{
        h1{
            align-items: center;
            position: relative;
            z-index: 3;
            font-size: 50px;
            text-align: center;
            color: var(--text-lit-200);
            font-weight: 500;
            display: flex;
            flex-direction: column;
            
            span{
                position: relative;
                width: max-content;

                &::after{
                    content: "";
                    position: absolute;
                    bottom: .5rem;
                    left: 0;
                    width: 100%;
                    height: 3px;
                    background: var(--green-lit-100);
                    z-index: 1;
                }   
            }
        }

        .about-down{
            position: relative;
            z-index: 3;
            display: flex;
            gap: 1rem;
            flex-direction: column;
            align-items: center;


            > p{
                font-size: 20px;
                font-weight: 500;
                width: min(30rem, 100%);
                /* line-height: 30px; */
                color: var(--lit-bg-500);
                text-align: center;
            }

            .button-section{
                display: flex;
                gap: 1rem;
                align-items: center;
                flex-direction: column;
                justify-content: space-between;

                a{
                    padding: 1rem 3rem;
                    background: var(--green-lit-100);
                    text-decoration: none;
                    border-radius: 4ch;
                    font-size: 14px;
                    color: var(--green-drk-100);
                    font-weight: 700;
                    transition: all 350ms ease;
                    cursor: pointer;

                    &:hover{
                        background: var(--green-lit-200);
                    }
                }

                .fine-info{
                    display: flex;
                    color: var(--lit-bg-500);
                    gap: 2rem;
                    text-align: center;
                    justify-content: center;
                    flex-wrap: wrap;

                    p{
                        display: flex;
                        gap: .5rem;
                    }
                }
            }
        }
    }
}

/* intro */
.intro{
    padding: 5rem 0;
    height: 40rem;
    background: var(--lit-bg-500);

    .intro-container{
        display: flex;
        align-content: center;
        justify-content: center;
        background: var(--green-lit-100);
        height: 100%;
        position: relative;
        overflow: hidden;
        align-items: center;
        border-radius: 2ch;

        .intro-content{
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 3;

            h1{
             font-size: 40px;
             display: flex;
             flex-direction: column;
             text-align: center;
             align-items: center;

             span{
                position: relative;
                width: max-content;

                &::after{
                    content: "";
                    position: absolute;
                    bottom: .5rem;
                    left: 0;
                    width: 100%;
                    height: 3px;
                    background: var(--green);
                    z-index: 1;
                }   
                }
            }

            a{
                padding: 1rem 3rem;
                background: var(--green-drk-100);
                text-decoration: none;
                border-radius: 4ch;
                font-size: 14px;
                color: var(--text-lit-100);
                font-weight: 700;
                transition: all 350ms ease;
                cursor: pointer;

                &:hover{
                    background: var(--text-drk-200);
                }
            }
        }

        

        .images-right{
            right: -1rem;
        }
        .images-left{
            left: -1rem;
        }
    }
}






.checkout{
    .checkout-container{
        width: 100%;
        margin: auto;
        height: 100%;
        display: grid;
        grid-template-columns: repeat(1,1fr);

        .checkout-list{
            height: fit-content;
            min-height: fit-content;

            .cart{
                position: relative;
                .cart-card{
                    flex-direction: column;
                    gap: 1rem;


                    .cart-left-details{
                        .price-tag{
                            display: flex;
                            flex-direction: row;
                            width: 100%;
                            align-items: center;

                        }

                        > i{
                            position: absolute;
                            top: 1rem;
                            right: 1rem;
                        }
                    }
                }

            }
        }

        .checkout-details{
            padding: 3rem 2rem 2rem;
            min-height: 50vh;
        }
    }
}           



}

@media(width < 600px){
    .product-des{

        .product-des-container{

            .col-image{
                display: grid;
                gap: 1rem;
                grid-template-columns: repeat(1,1fr);

                .firtimage{
                    width: 100%;
                    height: 70vh;
                    grid-column: span 1;
                }

                .forthimage{
                    grid-column: span 1;
                }
            }

            .col-description{
                display: flex;
                flex-direction: column;
                gap: 2rem;
                padding: 2rem;
                box-shadow: 1px 1px 20px #0001;
                height: max-content;
                border-radius: 15px;
                position: sticky;
                top: 5rem;

                h2{
                    font-size: 62px;
                    font-weight: 500;
                    line-height: 60px;
                }
                p{
                    font-size: 15px;
                    line-height: 20px;
                    color: var(--text-drk-300);
                }

                .li{
                    display: flex;
                    flex-direction: column;
                    gap: .5rem;

                    li{
                        display: flex;
                        gap: 1rem;
                        align-items: center;

                        i{
                            font-size: 10px;
                            padding: .5rem;
                            border-radius: 50%;
                            background: #e4e4e4;
                        }
                    }
                }

                .uni-container{
                    display: flex;
                    flex-direction: column;
                    background: var(--lit-bg-500);
                    border-radius: 1ch;

                    .uni-box{
                        display: flex;
                        align-items: center;
                        gap: 1rem;
                        padding: .5rem;

                        .uni-image{
                            padding: .3rem;
                            height: fit-content;
                            width: max-content;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            background: #e4e4e4;

                            img{
                                width: 1rem;
                                height: 1rem;
                                object-fit: contain;
                            }
                        }

                        .uni-content{
                            display: flex;
                            flex-direction: column;
                            
                            h4{
                                display: flex;
                                flex-direction: column;
                                font-size: 14px;
                                gap: .2rem;
                                font-weight: 500;
                                color: var(--text-drk-100);

                                span{
                                    font-size: 12px;
                                    color: var(--text-drk-300);
                                }
                            }
                        }

                        &:hover{
                            background: var(--text-lit-100);
                            border-radius: 1ch;
                            box-shadow: 1px 1px 10px #0001 ;
                            cursor: pointer;
                        }
                    }


                    .active{
                        background: var(--text-lit-100);
                        border-radius: 1ch;
                        box-shadow: 1px 1px 10px #0001 ;
                    }
                }

                button{
                    padding: 1rem;
                    background: var(--text-grn-100);
                    cursor: pointer;
                    border: none;
                    outline: none;
                    border-radius: 4ch;
                    color: var(--lit-bg-100);
                    font-size: 14px;
                    transition: all 350ms ease;

                    &:hover{
                        background: var(--green);
                    }
                }
                .payment-gateways{
                    display: flex;
                    justify-content: center;
                    gap: 1rem;

                    img{
                        width: 40px;
                        object-fit: contain;
                    }
                }   
            }
        }
    }


    .product-secimage{
        background: url(../img/suite_banner_T3T1.jpg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        min-height: 10rem;   
    }

    .product-card{
        .product-card-container{
            .prod-card-container{
                grid-template-columns: repeat(1,1fr);
            }
        }
    }

    .spec{
        .spec-container{
            grid-template-columns: 1fr;
        }
    }
}
@media(width < 550px){
    .container{
        width: 95%;
    }

    nav{
        padding: 1rem 0;
    }

    .list-items{
        display: none;
    }




    .sidnavdropdown2{     
        .dropdown-env{
        .dropdown-container{
        >.privacy-container{
            display: flex !important;
            flex-direction: column;

            .privacy{
                position: relative;
                display: flex;
                align-items: end;
                overflow: hidden;
                background: var(--green);
                padding: 1rem;
                height: 14rem !important;
                color: var(--lit-bg-100);
                font-size: 28px;
                border-radius: 1ch;

                h3{
                    font-weight: 400;
                    width: min(12rem, 100%);
                    position: relative;
                    z-index: 1;
                }

                img{
                    width: 10rem;
                    position: absolute;
                    right: 0;
                }
            }

            .company{
                position: relative;
                display: flex;
                align-items: end;
                overflow: hidden;
                background: var(--green-lit-100);
                padding: 1rem;
                height: 14rem !important;
                font-size: 28px;
                border-radius: 1ch;
                
                h3{
                    color: var(--text-drk-200);
                    font-weight: 400;
                    width: min(12rem, 100%);
                    position: relative;
                    z-index: 1;
                }

                img{
                    width: 16rem;
                    position: absolute;
                    right: 0;
                }
            }
        }

        .col{
            .col-right{
                display: flex;
                flex-direction: column;

                h2{
                    font-size: 16px;
                    font-weight: 800;
                    text-transform: capitalize;
                }
                p{
                    font-size: 12px;
                    color: var(--text-drk-300);
                    padding-bottom: 1rem;
                }

                > ul{
                    display: flex;
                    flex-direction: column;
                    gap: 1rem;

                    li{
                        list-style: none;
                        border-radius: 1ch;
                        transition: all 400ms ease;

                        a{
                            display: flex;
                            gap: 1rem;
                            align-items: center;

                            color: var(--text-drk-300);

                            i{
                                width: 30px;
                                height: 30px;
                                background: #ddd;
                                border-radius: 50%;
                                display:flex;
                                justify-content: center;
                                align-items: center;
                                font-size: 12px;
                                transition: all 300ms ease;
                            }

                        }
                        &:hover{
                            a{
                            i{
                            background: var(--lit-bg-300);
                        }
                    }
                        }
                    }
                        
                }
            }
         }

        }

        }

    }



        /* Hero section */
    .hero{
        height: 100vh;
        .hero-container{
            align-items: center;
            
            .hero-content{
                align-items: center;
                text-align: center;
                h1{
                    text-align: center;
                    font-size: 50px;
                    color: var(--text-lit-200);
                    font-weight: 500;
                    display: flex;
                    align-items: center;
                    flex-direction: column;

                    
                    span{
                        text-align: center;
                        position: relative;
                        width: max-content;

                        &::after{
                            content: "";
                            position: absolute;
                            bottom: .5rem;
                            left: 0;
                            width: 100%;
                            height: 3px;
                            background: var(--green);
                            z-index: 1;
                        }   
                    }
                }

                p{
                    font-size: 18px;
                    color: var(--text-lit-200);
                    font-weight: 500;
                }

                a{
                    padding: 1rem 2rem;
                }
            }

            .rate{
                display: flex;
                gap: 1rem;
                align-items: start;
                flex-direction: column;
                align-items: center;
                justify-content: space-between;
                
                

                .rate-right,
                .rate-left{
                
                    .rating{
                        

                        .rating-img{
                
                            img{
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                            }
                        }

                        h6{
                            font-size: 14px;
                            font-weight: 600;
                        }

                        i{
                            color: orange;
                        }
                    }   

                    h5{
                        color: var(--text-lit-100);
                        display: flex;
                        gap: .5rem;
                        font-weight: 600;
                    }

                    .image-container{
                        display: flex;
                        flex-wrap: wrap;
                        gap: .3rem;
                        align-items: center;

                        img{
                            width: 100px;
                            object-fit: cover;
                        }
                    }
                }

                .rate-right{
                    align-items: center;
                    display: flex;
                    flex-direction: column;
                }
            }
        }
    }
 

    /* why section */
    .why{
    
        .why-container{
    
            .why-content{
                .why-heading{
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    align-items: center;
                    gap: 1rem;


                    h1{
                        font-size: 40px;
                        width: min(39rem, 100%);
                        font-weight: 500;
                        text-align: center;
                        color: var(--green-drk-100);
                    }

                    a{
                        padding: 1rem 2rem;
                        text-decoration: none;
                        background: var(--green);
                        color: var(--lit-bg-100);
                        border-radius: 4ch;
                        font-weight: 600;
                        font-size: 14px;
                    }
                }

                .why-container-details{
                    display: grid;
                    grid-template-columns: repeat(1, 1fr);
                    gap: 2rem;

                    .why-box{
                        text-align: center;
                        align-items: center;
                        
                        h4{
                            font-size: 28px;
                        }
                        
                        ul{
                            text-align: center;
                            display: flex;
                            flex-direction: column;
                            gap: 1.5rem;


                            li{
                                width: max-content;
                                font-size: 16px;
                                i{
                                    color: var(--green);
                                }
                            }
                        }
                    }
                    .green{
                        ul{
                            li{
                                i{
                                    color: var(--green-lit-100);
                                }
                            }
                        }
                    }
                }
                .why-image-section{
                    display: flex;
                    flex-direction: column;
                    gap: 5rem;

                    .first-whyimage{
                        height: 25rem;
                        position: relative;
                        overflow: hidden;
                        display: flex;
                        align-items: end;
                        justify-content: center;
                        padding: 1rem;
                        border-radius: 2ch;
                    

                        .image-contents{
                            display: flex;
                            flex-wrap: wrap;
                            justify-content: center;
                            gap: 2rem;
                            position: relative;
                            z-index: 10;
                            
                            p{
                                text-align: center;
                                display: flex;

                                gap: 1rem;
                                font-size: 14px;
                                font-weight: 500;

                                i{
                                    color: var(--green);
                                }
                            }
                        }
                    }

                    .second-whyimage{
                        background: url(../img/bgd.jpg.crdownload);
                        height: 30rem;
                        

                        .image-contents{
                            display: flex;
                            flex-direction: column;
                            color: var(--lit-bg-100);
                            justify-content: space-between;
                            height: 100%;
                            width: 95%;
                            padding: 2rem 0;
                            margin-inline: auto;    
                            align-items: center;

                            .col{
                                display: flex;
                                flex-direction: column;
                                gap: .5rem;
                                align-items: center;
                                text-align: center;

                                h3{
                                    font-size: 40px;
                                    font-weight: 600;
                                }
                                p{
                                    width: min(30rem, 100%);
                                    line-height: 25px;
                                    font-size: 14px;
                                    font-weight: 600;
                                    letter-spacing: 1px;
                                }
                            }
                        }
                    }
                }

                .discover{
                    grid-template-columns: 1fr;

                    .col{
                        display: flex;
                        flex-direction: column;
                        gap: 2rem;
                        
                        
                        .heading{
                            display: flex;
                            flex-direction: column;
                            gap: 1rem;
                            align-items: center;

                            h1{
                                font-size: 40px;
                                font-weight: 600;
                                display: flex;
                                text-align: center;
                                align-items: center;
                                flex-direction: column;

                                span{
                                    position: relative;
                                    width: max-content;
                
                                    &::after{
                                        content: "";
                                        position: absolute;
                                        bottom: .5rem;
                                        left: 0;
                                        width: 100%;
                                        height: 2px;
                                        background: var(--green);
                                        z-index: 1;
                                    }   
                                }
                            }

                            a{
                                padding: 1rem 2rem;
                                text-decoration: none;
                                background: var(--green);
                                color: var(--lit-bg-100);
                                border-radius: 4ch;
                                font-weight: 600;
                                font-size: 16px;
                                width: max-content;
                                transition: all 350ms ease;
                                cursor: pointer;

                                &:hover{
                                    background: var(--text-grn-100);
                                }
                            }

                        }

                        .trezorsafe-card{
                            position: relative;
                            width: 100%;

                            .price{
                                position: absolute;
                                right: 1rem;
                                top: 1rem;
                                padding: .5rem;
                                font-size: 18px;
                                font-weight: 500;
                                letter-spacing: 1px;
                                background: var(--lit-bg-500);
                            }

                            .card-image{
                                width: 100%;
                                height: 50%;
                                /* background: green; */
                            }

                            .productname{
                                a{
                                    display: flex;
                                flex-direction: column;
                                gap: .3rem;
                                font-size: 24px;
                                text-decoration: none;
                                font-weight: 600;
                                color: var(--text-drk-100);
                                
                                span{
                                    font-size: 12px;
                                    font-weight: 600;
                                    color: var(--text-grn-100);

                                }
                                }
                            }
                        }
                    }
                }
            }
        }

    }
    /* why section */


    /* manage */
    .manage{
        background: var(--lit-bg-500);

        .manage-container{
            gap: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;

            .manage-header{
                display: flex;
                justify-content: space-between;
                align-items: center;
                flex-direction: column;
                gap: 1rem;
                

                h1{
                    font-size: 28px;
                    font-weight: 600;
                    display: flex;
                    align-items: center;
                    flex-direction: column;
                    text-align: center;

                    span{
                        position: relative;
                        width: max-content;

                        &::after{
                            content: "";
                            position: absolute;
                            bottom: .5rem;
                            left: 0;
                            width: 100%;
                            height: 2px;
                            background: var(--green);
                            z-index: 1;
                        }   
                    }
                }
                a{
                    padding: 1rem 2rem;
                    text-decoration: none;
                    background: var(--green);
                    color: var(--lit-bg-100);
                    border-radius: 4ch;
                    font-weight: 600;
                    font-size: 16px;
                    transition: all 350ms ease;

                    &:hover{
                        background: var(--text-grn-100);
                    }
                }
            }

            .manage-image{
                height: 30rem;
            }

            .support{
                display: grid;
                grid-template-columns: repeat(1,1fr);
                height: 50rem;
                margin: 0 0 4rem;
                gap: 1rem;
                background: var(--lit-bg-500);
                border: 2ch;
                overflow: hidden;

                .col-support{
                    display: flex;
                    flex-direction: column;
                    gap: 1rem;
                    height: 100%;
                    overflow: hidden;
                    justify-content: end;
                    padding: 2rem;
                    border-radius: 2ch;

                    p{
                        font-size: 40px;
                    }
                }

                .col-box{
                    background: url(../img/bgd.jpg.crdownload);
                    position: relative;
                    

                    &::after{
                        content: "";
                        position: absolute;
                        top: 0;left: 0;
                        height: 100%;width: 100%;
                        background: #05050524;
                    }

                    p{
                        position: relative;
                        z-index: 10;
                        font-size: 20px;
                        color: var(--text-lit-200);
                        width: min(30rem, 100%);
                    }
                }

                .col-box-Two{
                    text-align: center;
                    align-items: center;
                    justify-content: center;
                    background: url(../img/bigbgd.webp);
                    background-repeat: no-repeat;
                    background-size: cover;
                    background-position: center center;

                    p{
                        font-size: 30px;
                        width: min(20rem, 100%);
                    }

                    a{
                        padding: 1rem 2rem;
                        text-decoration: none;
                        background: var(--green-drk-100);
                        border-radius: 4ch;
                        color: var(--text-lit-100);
                        transition: all 350ms ease;

                        &:hover{
                            background: #2f2f2f;
                        }
                    }
                }
            }
        }
    }


    /* services */
    .service{
        background: var(--lit-bg-500);
        padding: 5rem 0;

        .service-container{
            display: flex;
            flex-direction: column;
            gap: 2rem;
            
            h1{
                text-align: center;
                font-size: 28px;
                font-weight: 600;
                color: var(--green-drk-100);
            }

            .drk-green{
                background: var(--green);

                .bottom{
                    display: flex;
                    justify-content: space-between;

                    h5{
                        color: var(--lit-bg-100);
                        font-size: 16px;
                        font-weight: 500;

                        span{
                            color: #99E686;
                        }
                    }

                    i{
                        background: var(--text-grn-100);
                        color: var(--lit-bg-100);
                    }
                }
            }

            .lit-green{
                background: var(--text-grn-200);

                .bottom{
                    display: flex;
                    justify-content: space-between;

                    h5{
                        color: var(--text-drk-100);
                        font-size: 16px;
                        font-weight: 500;

                        span{
                            color: var(--text-grn-100);
                        }
                    }

                    i{
                        background: var(--text-grn-100);
                        color: var(--lit-bg-100);
                    }
                }
            }

            .service-card-container{
                display: grid;
                grid-template-columns: repeat(1, 1fr);
                gap: 1rem;

                .service-card{
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    padding: 2rem;
                    height: 30rem;
                    border-radius: 3ch;

                    .upper{
                        /* background: green; */
                        height: 80%;

                        p{
                            font-size: 14px;
                            display: flex;
                            flex-direction: column;
                            gap: 1rem;
                            display: none;
                        }
                    
                        .service-img{
                            height: 100%;
                            /* background: purple; */
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            
                            img{
                                width: 100%;
                                height: 60%;
                            }
                        }
                    }

                    .bottom{
                        display: flex;
                        justify-content: space-between;
                        user-select: none;

                        h5{
                            display: flex;
                            flex-direction: column;
                            gap: .5rem;

                            span{
                                font-size: 11px;
                                font-weight: 400;
                            }
                        }

                        i{
                            font-size: 14px;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            width: 40px;
                            height: 40px;
                            border-radius: 50%;
                            font-weight: 400;
                            cursor: pointer;
                        }
                    }
                }
                .service-card.active{
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    height: 30rem;
                    border-radius: 3ch;
                    background: var(--lit-bg-100);
                    box-shadow: 1px 1px 20px #0001;

                    .upper{
                        /* background: green; */
                        height: 80%;

                        p{
                            font-size: 14px;
                            display: flex;
                            flex-direction: column;
                            gap: 1rem;
                            display: flex;
                        }
                    
                        .service-img{
                            height: 100%;
                            display: none;
                            align-items: center;
                            justify-content: center;
                            
                            img{
                                width: 100%;
                                height: 60%;
                            }
                        }
                    }

                    .bottom{
                        display: flex;
                        justify-content: space-between;

                        h5{
                            display: flex;
                            flex-direction: column;
                            gap: .5rem;
                            color: var(--green-drk-100) ;

                            span{
                                font-size: 11px;
                                font-weight: 400;
                                color: var(--text-grn-100);
                            }
                        }

                        i{
                            font-size: 14px;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            width: 40px;
                            height: 40px;
                            border-radius: 50%;
                            font-weight: 400;
                            cursor: pointer;
                            background: var(--lit-bg-500);
                            color: var(--text-drk-300);
                        }
                    }
                }
            }


        }
    }

    /* about */

    .about{
        background: var(--lit-bg-500);
        min-height: 35rem;

        .about-container{
            h1{
                align-items: center;
                position: relative;
                z-index: 3;
                font-size: 30px;
                text-align: center;
                color: var(--text-lit-200);
                font-weight: 500;
                display: flex;
                flex-direction: column;
                
                span{
                    position: relative;
                    width: max-content;

                    &::after{
                        content: "";
                        position: absolute;
                        bottom: .5rem;
                        left: 0;
                        width: 100%;
                        height: 3px;
                        background: var(--green-lit-100);
                        z-index: 1;
                    }   
                }
            }

            .about-down{
                position: relative;
                z-index: 3;
                display: flex;
                gap: 1rem;
                flex-direction: column;
                align-items: center;


                > p{
                    font-size: 14px;
                    font-weight: 500;
                    width: min(30rem, 100%);
                    /* line-height: 30px; */
                    color: var(--lit-bg-500);
                    text-align: center;
                }

                .button-section{
                    display: flex;
                    gap: 1rem;
                    align-items: center;
                    flex-direction: column;
                    justify-content: space-between;

                    a{
                        padding: 1rem 3rem;
                        background: var(--green-lit-100);
                        text-decoration: none;
                        border-radius: 4ch;
                        font-size: 14px;
                        color: var(--green-drk-100);
                        font-weight: 700;
                        transition: all 350ms ease;
                        cursor: pointer;

                        &:hover{
                            background: var(--green-lit-200);
                        }
                    }

                    .fine-info{
                        display: flex;
                        color: var(--lit-bg-500);
                        gap: 2rem;
                        text-align: center;
                        justify-content: center;
                        flex-wrap: wrap;

                        p{
                            display: flex;
                            gap: .5rem;
                            font-size: 12px;
                        }
                    }
                }
            }
        }
    }

    /* intro */
    .intro{
        padding: 5rem 0;
        height: 30rem;
        background: var(--lit-bg-500);

        .intro-container{
            display: flex;
            align-content: center;
            justify-content: center;
            background: var(--green-lit-100);
            height: 100%;
            position: relative;
            overflow: hidden;
            align-items: center;
            border-radius: 2ch;

            .intro-content{
                display: flex;
                flex-direction: column;
                gap: 1rem;
                align-items: center;
                justify-content: center;
                position: relative;
                z-index: 3;

                h1{
                font-size: 30px;
                display: flex;
                flex-direction: column;
                text-align: center;
                align-items: center;

                span{
                    position: relative;
                    width: max-content;

                    &::after{
                        content: "";
                        position: absolute;
                        bottom: .5rem;
                        left: 0;
                        width: 100%;
                        height: 3px;
                        background: var(--green);
                        z-index: 1;
                    }   
                    }
                }

                a{
                    padding: 1rem 3rem;
                    background: var(--green-drk-100);
                    text-decoration: none;
                    border-radius: 4ch;
                    font-size: 14px;
                    color: var(--text-lit-100);
                    font-weight: 700;
                    transition: all 350ms ease;
                    cursor: pointer;

                    &:hover{
                        background: var(--text-drk-200);
                    }
                }
            }

            

            .images-right{
                right: -1rem;

                img{
                    width: 100px;
                }
            }
            .images-left{
                left: -1rem;
                img{
                    width: 100px;
                }
            }
        }
    }




    
.popular{
    padding: 5rem 0;


    .popular-container{
        display: grid;
        grid-template-columns: repeat(1,1fr);
        gap: 1rem;
        }
    }









    .Bundles{
        padding: 5rem 0;
        background: var(--lit-bg-100);
    
    
        .popular-container{
            display: grid;
            grid-template-columns: repeat(1,1fr);
            gap: 1rem;
    
            .col-card{
                position: relative;
                overflow: hidden;
                border-radius: 2ch;
                height: fit-content;
                background: var(--lit-bg-500);
                justify-content: space-between;
                display: flex;
                flex-direction: column;
                padding: 4rem 1.5rem 1.5rem;
                gap: 1rem;
              
    
                .percentoff{
                    position: absolute;
                    background: #FBB861;
                    color: var(--text-drk-200);
                    font-size: 12px;
                    font-weight: 500;
                    top: 1rem;
                    padding: .5rem;
                    border-radius: 4ch;
                }
    
                .card-image{
                    width: 100%;
                    height: 7rem;
                    /* background: green; */
    
                    .card{
                        width: 100%;
                        height: 100%;
                        overflow: hidden;
                        
                        img{
                            width: 100%;
                            height: 100%;
                            object-fit: contain;
    
                        }
                    }
    
                    .card {
                        display: none; /* Hide all images by default */
                    }
                    .card.active {
                        display: block; /* Only the active one is visible */
                    }
                }
    
    
    
    
                .productname{
                    a{
                        display: flex;
                    flex-direction: column;
                    gap: .3rem;
                    font-size: 16px;
                    text-decoration: none;
                    font-weight: 500;
                    color: var(--text-drk-100);
                    
                    span{
                        font-size: 12px;
                        font-weight: 500;
                        color: var(--text-drk-300);
                    }
                    }
                }
    
                .work{
                    display: flex;
                    gap: .5rem;
                    align-items: center;
                    justify-content: space-between;
                    padding: .5rem 1rem;
                    border: 1px solid #ddd;
                    border-radius: 4ch;
    
                    h6{
                        font-size: 10px;
                        font-weight: 500;
                        color: var(--text-drk-300);
                    }
                    ul{
                        display: flex;
                        gap: 1rem;
    
                        li{
                            list-style: none;
                            font-size: 8px;
                            display: flex;
                            gap: .3rem;
                            padding: .4rem;
                            background: var(--lit-bg-100);
                            border-radius: 2ch;
                            color: var(--text-drk-300);
                        }
                    }
                }
    
                > a{
                    width: 100%;
                    padding: 1rem;
                    border-radius: 4ch;
                    text-align: center;
                    text-decoration: none;
                    color: var(--lit-bg-100);
                    background: var(--text-grn-100);
                    transition: all 500ms ease;
                    
                    &:hover{
                        background: var(--green);
                    }
                }
            }
    
            .col-card-content{
                display: flex;
                flex-direction: column;
                gap: 1rem;
                justify-content: center;
    
                h6{
                    font-size: 16px;
                    font-weight: 500;
                    color: var(--green);
                }
    
                h4{
                    font-size: 36px;
                    font-weight: 500;
                    color: var(--text-drk-200);
                }
    
                p{
                    color: var(--text-drk-300);
                }
            }
    
            }
        }
    
    



        .session{
            padding: 5rem 1rem;
        
            .session-container{
                display: grid;
                grid-template-columns: repeat(1,1fr);
                gap: 1rem;
                padding: 1rem;
                border-radius: 20px;
                background: var(--lit-bg-100);
                min-height: 30rem;
                width: 100%;
        
                .session-image{
                    background-image: url(../img/products/sessionbg.png);
                    border-radius: 10px;
                    /* width: 100%; */
                    display: none;
                }
        
                .session-content{
                    display: flex;
                    flex-direction: column;
                    gap: 1rem;
                    padding:0;
                }
                
            }
        
        }
        
    
/* footer */
footer{
    padding: 3rem 2rem;
    background: var(--text-drk-100);
    color: var(--lit-bg-100);
    border-radius: 20px 20px 0 0;

    .footer-container{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 3rem;
        flex-wrap: wrap;
    }
}






.checkout{
    .checkout-container{
        width: 100%;
        margin: auto;
        height: 100%;
        display: grid;
        grid-template-columns: repeat(1,1fr);

        .checkout-list{
            height: fit-content;
            min-height: fit-content;
            padding: 7rem 1rem 2rem;

            .cart{
                position: relative;
                .cart-card{
                    flex-direction: column;
                    gap: 1rem;


                    .cart-left-details{
                        .price-tag{
                            display: flex;
                            flex-direction: row;
                            width: 100%;
                            align-items: center;

                        }

                        > i{
                            position: absolute;
                            top: 1rem;
                            right: 1rem;
                        }
                    }
                }

            }
        }

        .checkout-details{
            padding: 3rem 1rem 2rem;
            min-height: 50vh;
        }
    }
}



 /* product descriptions */
 .product-des{

    .product-des-container{

        .col-description{
            display: flex;
            flex-direction: column;
            gap: 2rem;
            padding: 2rem;
            box-shadow: 1px 1px 20px #0001;
            height: max-content;
            border-radius: 15px;
            position: sticky;
            top: 5rem;

            h2{
                font-size: 32px;
                font-weight: 500;
                line-height: 30px;
            }
        }
    }
}




.product-sec-content{
    padding: 1rem !important;

    h1{
        font-size: 30px !important;
        line-height: 30px !important;
    }
}



.secure{
    .secure-container{
        height: 40rem;

        h2{
            font-size: 30px;
            display: flex;
            flex-direction: column;
            font-weight: 600;
        }

        .secure-bottom{
            flex-direction: column;
            display: flex;
            gap: 1rem;

            p{
                font-size: 12px;
                color: var(--green);
            }

            h4{
                font-size: 20px;
                font-weight: 500;
            }
        }
    }
}


.spec{
    .spec-container{
        .spec-right{
            .grid-section{
                .ops{
                    grid-template-columns: repeat(1,1fr);
                }
                .grid-3{
                    grid-template-columns: repeat(2,1fr);
                }
            }
        }
    }
}


}

@media(width < 380px){
    .product-hero{
        .product-container{
            .product-hero-image{
                width: min(200px, 100%);
    
                img{
                    width: 100%;
                    object-fit: contain;
                }
            }    
        }
    }

    .discover1{
        .col{
            .heading{
                h5{
                    font-size: 16px;
                }
                h2{
                    font-size: 40px;
                }
            }
        }
    }


    .session{
        .session-container{
            .session-content{
                padding: .5rem;

                h1{
                    font-size: 30px;
                    line-height: 40px;
                    text-align: center;
                }

                .session-buttons{
                    flex-direction: column;

                    a{
                        text-align: center;
                        /* width: max-content;  */
                    }
                }
            }
        }
    }





    .backup{
        .discover2{
            .col{
                .heading{
                    h2{
                        font-size: 40px;
                        text-align: center;
                    }
                }
            }
        }
    }




    
.spec{
    .spec-container{
        .spec-right{
            .grid-section{
                .grid-3{
                    grid-template-columns: repeat(1,1fr);
                }
            }
        }
    }
}

}


