@font-face {
    font-family: Rohi-fonts;
    src: url(Poppins-Regular.ttf);
}

/* ROOT */
:root {
    --bg-color: rgb(245, 245, 247);
    --para-color: rgba(0, 0, 0, 0.8);
    --nav-gap: 4rem;
    --main-color: #6e6e73;
    --link-color: #0071e3;
}

/* ------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Rohi-fonts, sans-serif, Arial, Helvetica, sans-serif;
}

/***** theme *****/
html {
    font-size: 62.5%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 3.2rem;
    color: var(--para-color);
}

p,
li,
a {
    font-size: 1.6rem;
    color: var(--para-color);
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
}

/***** Layout *****/

body {
    background-color: var(--bg-color);
    overflow-x: hidden;
}

/* Scrollbar width */
body::-webkit-scrollbar {
    width: 10px;
    /* Vertical scrollbar width */
    height: 10px;
    /* Horizontal scrollbar height */
}

/* Scrollbar track (background) */
body::-webkit-scrollbar-track {
    background: transparent;
    /* Ya koi bhi color jo tumhe chahiye */
}

/* Scrollbar thumb (jo move hoti hai) */
body::-webkit-scrollbar-thumb {
    background: var(--main-color);
    /* Scrollbar ka color */
    border-radius: 5px;
    /* Round edges */
}

/* Hover effect for better UX */
body::-webkit-scrollbar-thumb:hover {
    background: #565659;
}

.container {
    max-width: 128rem;
    margin: 0 auto;
    padding: 8rem 1rem 1.8rem 1rem;
}

.grid {
    display: grid;
}

.flex {
    display: flex;
}

.flex-between {
    display: flex;
    justify-content: space-between;
}

.flex-dir-cols {
    display: flex;
    flex-direction: column;
}

.link {
    color: var(--link-color);
    cursor: pointer;
}

.link:hover {
    text-decoration: underline;
}

.head-para {
    color: var(--para-color);
    font-weight: 600;
}

.common-head--tittle {
    color: var(--para-color);
    font-weight: 600;
    font-size: 2.8rem;
}

.head-para--2 {
    color: var(--main-color);
}

/****** module/reuseable ******/

/****** Strat navbar ******/
.section-navbar .container {
    display: flex;
    justify-content: center;
    padding: 0rem 0rem;

}

.section-navbar .container .navbar {
    min-width: 100rem;
    height: 4.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--nav-gap);
    margin: 0 -8px;
    user-select: none;
    padding: 2rem 0;
}

.section-navbar .container .navbar ul {
    display: flex;
    gap: var(--nav-gap);
    margin-bottom: 0.5rem;

    & a {
        font-size: 1.2rem;
    }
}

.ribbon {
    background-color: #fff;
}

.ribbon .ribbon-text {
    color: #1d1d1f;
    font-size: 1.4rem;
    text-align: center;
    padding-block: 2rem;
}

.ribbon .ribbon-text sup {
    font-size: 0.85rem;
}

/****** End navbar ******/

/****====== Start Hero section ======***/
/* .section-main .container .flex {
    justify-content: space-between;
} */
.section-main .container {
    gap: 10rem;
}

.main-head .main-head--text .para-color {
    color: var(--main-color);
}

.main-head .main-head--text {
    max-width: 64rem;
}

.main-head .main-head--text h1,
.para-color {
    font-size: 4.8rem;
}

.main-head .main-head--help {
    width: 22rem;
    height: auto;
    gap: 1.5rem;
    padding: 1rem 1.2rem;
}

.main-head .main-head--help .main-head-icon {
    gap: 1rem;
}

.main-head .main-head--help .main-head-icon img {
    width: 4rem;
    height: auto;
}

.main-head .main-head--help .main-head-icon .flex-dir-cols {
    gap: 0.3rem;
}

.main-head .main-head--help .main-head-icon .main-link .head-para,
.link {
    font-size: 1.4rem;
}

.main-head--items {
justify-content: space-between;
}

.main-head--items .head-items--div {
    text-align: center;
    max-width: 12rem;
    margin-top: 0.5rem;
}

.main-head--items .head-items--div img {
    max-width: 12rem;
    height: auto;
    margin-bottom: 1.5rem;
}

.main-head--items .head-items--div p:hover {
    cursor: pointer;
    text-decoration: 0.08rem solid var(--para-color) underline;
}

/****====== End Hero section ======***/

/* ********* Start Product Section ******** */
.section-product .container {
    width: 100vw;
}

.section-product .container .flex {
    gap: 2rem;
    width: 100vw;
    margin-bottom: 4rem;
    overflow-x: scroll;
    overflow-y: hidden;
}


/* Chrome, Edge, Safari ke liye */
.section-product .container .flex::-webkit-scrollbar {
    height: 10px;
    /* Horizontal scrollbar height */
}

.section-product .container .flex::-webkit-scrollbar-track {
    background: transparent;
}

.section-product .container .flex::-webkit-scrollbar-thumb {
    background: #0000008f;
    border-radius: 5px;
}

.section-product .container .product-cards .product-div {
    display: inline-block;
    position: relative;
    min-width: 40rem;
    height: 50rem;
    padding: 3rem;
    margin-top: 3rem;
    box-shadow: 2px 4px 12px #00000014;
    border-radius: 1.2rem;
    -webkit-border-radius: 1.2rem;
    -moz-border-radius: 1.2rem;
    -ms-border-radius: 1.2rem;
    -o-border-radius: 1.2rem;
    transition: all .3s cubic-bezier(0, 0, .5, 1);
    -webkit-transition: all .3s cubic-bezier(0, 0, .5, 1);
    -moz-transition: all .3s cubic-bezier(0, 0, .5, 1);
    -ms-transition: all .3s cubic-bezier(0, 0, .5, 1);
    -o-transition: all .3s cubic-bezier(0, 0, .5, 1);
    cursor: pointer;
}

.section-product .container .product-cards .product-div:hover {
    scale: 1.01;
    box-shadow: 1px 3px 18px #00000014;
}

.section-product .container .product-cards .product-div img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    object-fit: cover;
    border-radius: 1.2rem;
    -webkit-border-radius: 1.2rem;
    -moz-border-radius: 1.2rem;
    -ms-border-radius: 1.2rem;
    -o-border-radius: 1.2rem;
}

.product-div .card-info #tag {
    visibility: hidden;
    color: #b64400;
    font-weight: 600;
    font-size: 1.2rem;
}

.product-div .card-info #tag-visible {
    visibility: visible;
    color: #b64400;
    font-weight: 600;
    font-size: 1.2rem;
}

.product-div .card-info h3 {
    font-size: 2.8rem;
    margin-top: 0.5rem;
}

.product-div .card-info .head-para {
    margin: 1rem 0 1rem 0;
}

.product-div .card-info h3,
p {
    letter-spacing: -0.08rem;
}

.product-div .color-white .head-para,
.white {
    color: white;
}

/* ********* End Product Section ******** */


/* ********* Start footer Section ******** */
.quick-links {
    display: flex;
    margin-top: 2rem;
    gap: 2rem;
}

.link-btn {
    border: 1px solid var(--para-color);
    padding: 1rem 1.5rem;
    border-radius: 5rem;
    color: var(--para-color);
    -webkit-border-radius: 5rem;
    -moz-border-radius: 5rem;
    -ms-border-radius: 5rem;
    -o-border-radius: 5rem;

    &:hover {
        text-decoration: 0.1rem underline;
        background-color: var(--para-color);
        color: var(--bg-color);
    }

    &::after {
        content: "";
    }
}

.section-footer .container:first-child {
    padding-top: 3rem;
}

.section-footer .container:nth-child(2) {
    padding: 6.4rem 6.4rem 4rem 16rem;
}

.footer-para {
    color: #0000008f;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.1rem;
    line-height: 1.33337;
}

.footer-para--link {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.1rem;
    line-height: 1.33337;
    color: #000000b8;
    text-decoration: underline;
}

.footer-main-links {
    margin-top: 5.4rem;
    gap: 7.2rem;

}

.footer-main-links .last-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-main-links .last-links .head-para {
    font-size: 1.2rem;
    text-transform: capitalize;
    margin-top: 1.5rem;
    letter-spacing: -0.01em;
}

.footer-main-links .last-links .footer-para {
    color: #000000b8;
    text-transform: capitalize;
    font-weight: 200;

    &:hover {
        text-decoration: underline;
    }
}

.last-mini-link {
    margin: 2.6rem 0 1rem 0;
}

.section-footer .link {
    font-size: 1.2rem;
    color: #0066cc;
    text-decoration: underline;
}

.footer-last--section {
    gap: 2rem;
}

.footer-last--section .terms-link .footer-para,
.not-terms {
    color: #000000b8;
    margin-left: 0.4rem;

    &:hover {
        text-decoration: underline;
    }
}

.not-terms {
    margin-left: 3rem;
}

/* ********* End footer Section ******** */

/***** media quires *****/ 





@media (width <=1500px) {
    .container{
        padding-inline: 2.4rem;
    }
    .section-navbar .container .navbar ul{
        gap: 2rem;
    } 
    .main-head{
        justify-content:flex-start;
        gap: 15rem;
    }
.main-head--items{
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
}
}
@media (width <= 1260px) {
    html{
        font-size: 50%;
    }
    .section-navbar .container{
        justify-content: flex-start;
    }
     .section-navbar .container .navbar ul{
   gap:0.5rem;
    } 
    .main-head{
        padding-right: 4rem;
    }
}
@media (width <= 1060px) {
    html{
        font-size: 45%;
    }

    .section-navbar .container{
        justify-content: flex-start;
    }
    .main-head{
        flex-direction: column;
        justify-content: flex-start;
        gap: 2rem;
    }
}

@media (width <= 480px){

    .footer-main-links {
        margin-top: 4.2rem;
        gap: 1rem;
        flex-direction: column;
    }
    .section-navbar .container{
        width: 100%;
        padding: 0; 
    }
    .section-navbar .container .navbar {
        width: 100%;
        justify-content: flex-start;
        padding-left: 4rem;
    }
    .section-navbar .container .navbar ul{
        display: none;
    }
    .container{
        padding-inline: 1rem;
    }
}
.section-product .container .product-cards .product-div{
width: 30rem;
}
.section-footer .container:nth-child(2) {
    padding: 6rem 6rem 3rem 10rem;
}
.quick-links , .footer-last--section{
    flex-wrap: wrap;
}

/***** End media quires *****/