
@import url('https://fonts.googleapis.com/css2?family=Afacad+Flux:wght@100..1000&display=swap');

@font-face {
    font-family: 'YourCustomFont';
    src: url('fonts/YourCustomFont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body{
 background-color: #f7f9fc;   
}

/* hero section code starts from here  */
.hero-section-category {
    position: relative;
    width: 100%;
    height: auto; /* 40% of the viewport height */
    overflow: hidden;
}

.hero-section-category img {
    width: 100%;
    max-height: 65vh;
    object-fit: cover; /* Ensures the image covers the entire container while maintaining aspect ratio */
}

.hero-section-category .text-overlay {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: black; /* Adjust as necessary */
}

.hero-section-category .text-overlay h1 {
    font-size: 2.5rem; /* Adjust text size as needed */
    margin: 0;
    text-align: center;
    margin-bottom: 100px;
}

.hero-section-category .text-overlay p {
    font-size: 1.2rem;
    margin-top: 10px;
}


/* product block code starts from here  */

.product-promo-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    margin: 40px;
    background-color: white;
    width: 80vw;
    border-radius: 20px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    height: 70vh; /* Full height */
    overflow: hidden;

}

.product-promo-block .text-content,
.product-promo-block .image-content {
    width: 50%; /* Each section takes 50% */
}

.product-promo-block .new-product {
    color: red;
    font-size: 1.4rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.product-promo-block .product-title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.product-promo-block .product-title span {
    color: #2979ff; /* Blue color for "T6" */
}

.product-promo-block .product-subtitle {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #555;
}

.product-promo-block .product-features {
    list-style: none;
    padding: 0;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
}

.product-promo-block .learn-more-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #555;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.product-promo-block .learn-more-btn:hover {
    background-color: #333;
}

.product-promo-block .image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    position: relative;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    transition: 0.5s all ease-out;
}
.product-promo-block .image-content img:hover{
    transform: scale(1.04);
}

@media (max-width: 768px) {
    .product-promo-block {
        flex-direction: column;
        text-align: center;
    }

    .product-promo-block .text-content, 
    .product-promo-block .image-content {
        width: 100%; /* Full width on smaller screens */
    }

    .product-promo-block .image-content {
        margin-top: 20px;
    }
}


.tagline-mid{
    text-align: center;
    color: #555;
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 20px;
}

.tagline-mid h1{
    text-align: center;
}
.tagline-mid p{
    text-align: center;
}

#tagline-start2{
    margin-bottom: 50px;
}


/* two in one code starts from here  */

.two-in-one{
display: flex;
justify-content: center;
flex-direction: row;
height: 80vh;
}


.two-in-one .product-promo-block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    margin: 40px;
    background-color: white;
    align-content: center;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);

}

.two-in-one .product-promo-block .text-content {
    text-align: center;
    width: 100%;
    margin: 20px;
    padding: 0;
}
.two-in-one .product-promo-block .image-content {
    width: 60%; /* Each section takes 50% */
}
.two-in-one .product-promo-block .new-product {
    color: red;
    font-size: 1.4rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.two-in-one .product-promo-block .product-title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.two-in-one .product-promo-block .product-title span {
    color: #2979ff; /* Blue color for "T6" */
}

.two-in-one .product-promo-block .product-subtitle {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #555;
}

.two-in-one .product-promo-block .product-features {
    list-style: none;
    padding: 0;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
}

.two-in-one .product-promo-block .learn-more-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #555;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.two-in-one .product-promo-block .learn-more-btn:hover {
    background-color: #333;
}

.two-in-one .product-promo-block .image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    position: relative;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    transition: 0.5s all ease-out;
}
.two-in-one .product-promo-block .image-content img:hover{
    transform: scale(1.04);
}

@media (max-width: 768px) {
    .two-in-one .product-promo-block {
        flex-direction: column;
        text-align: center;
    }

    .two-in-one .product-promo-block .text-content, 
    .two-in-one .product-promo-block .image-content {
        width: 100%; /* Full width on smaller screens */
    }

    .two-in-one .product-promo-block .image-content {
        margin-top: 20px;
    }
}


.accept{
    /* background-color: #f5f7fb; */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.accept-container {
    text-align: center;
    margin-top: 20px;
}

.accept-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.accept-subtitle {
    font-size: 1rem;
    color: #888;
    margin-bottom: 50px;
}

.accept-payment-types {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.accept-payment-item {
    /* background-color: #fff; */
    border-radius: 15px;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    /* padding: 20px; */
    width: 400px;
    /* border: 1px  solid black; */
    text-align: center;
    transition: transform 0.3s ease;
}

.accept-payment-item:hover {
    transform: translateY(-10px);
}

.accept-payment-item img {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    border: 1px solid black;
    background: rgb(246, 244, 252);
    margin-bottom: 20px;
}

.accept-payment-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .accept-payment-types {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .accept-payment-item {
        width: 100%;
        max-width: 300px;
    }
}


/* section code here  */

#tagline-start{
    text-align: left;
}

.section {
     
    height: 110vh;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.1s ease;
    border-radius: 0 0 100px 100px; /* Add bottom border radius */

}


/* Ensures content after the sections scrolls normally */



/* first section code here  */
.centered-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    /* background-image: url('https://as2.ftcdn.net/v2/jpg/02/61/24/77/1000_F_261247749_9pWDH2Fqm72ibF1NMCPPHJbp7wIUZhnZ.jpg'); */
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #1C1D21;
    padding: 20px;
    box-sizing: border-box;
}

.centered-section h1 {
    margin: 0 0 20px 0;
    font-size: 120px;
    line-height: 1em;
    text-align: center;
    font-family: "Afacad Flux", sans-serif;
    font-weight: 300;
    margin-bottom: 40px;
}

.centered-section p {
    margin: 0 0 30px 0;
    font-size: 1rem;
    color: #1C1D21;
}

.centered-section button {
    background-color: black;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.2rem;
}

.centered-section button:hover {
    opacity: 0.85;
}



@media (min-width: 1024px) and (max-width:1600px){
    .centered-section h1{
        font-size: 80px;
    }
   
    .section{
        height: 100vh;
        border-radius: 0px;
    }
    #tagline-start{
        display: none;
    }
    .tagline-mid{
        font-size: 1rem;
        margin-left: 10px;
        margin-right: 10px;
    }
    .product-promo-block .product-title {
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 10px;
        color: #333;
    }
    .product-promo-block .product-subtitle {
        font-size: 1rem;
    }
    .product-promo-block .product-features{
        font-size: 1rem;
    }
    .product-promo-block .learn-more-btn{
        font-size: 0.8rem;
    }
    .section:nth-child(6){
        height: 120vh;
        padding-top: 80px;
        padding-bottom: 50px;
     }
     
     .accept-payment-item img{
        width: 250px;
        height: 300px
     }
     .accept-payment-item{
        width: auto;
     }
    
    .page-content {
        top: 550vh; /* Starts after all sections */
    }
    .footer {
        padding: 1px;
    }
}

@media (min-width: 768px) and (max-width:1024px){
    .centered-section h1{
        font-size: 60px;
    }
    .centered-section h1{
        font-size: 40px;
    }
    .section{
        height: 100vh;
        border-radius: 0px;
    }
    #tagline-start{
        display: none;
    }
    .tagline-mid{
        font-size: 1rem;
        margin-left: 10px;
        margin-right: 10px;
    }
    .product-promo-block .product-title {
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 10px;
        color: #333;
    }
    .product-promo-block .product-subtitle {
        font-size: 1rem;
    }
    .product-promo-block .product-features{
        font-size: 1rem;
    }
    .product-promo-block .learn-more-btn{
        font-size: 0.8rem;
    }
    .section:nth-child(6){
        height: 120vh;
        padding-top: 80px;
        padding-bottom: 50px;
    }
    .accept-payment-item img {
    max-height: 150px;
    }
    .page-content {
        top: 550vh; /* Starts after all sections */
    }
    .footer {
        padding: 1px;
    }
    .accept-payment-item img{
        width: 250px;
        height: 300px
     }
     .accept-payment-item{
        width: auto;
     }
}

@media (min-width: 480px) and (max-width:768px){
    .centered-section h1{
        font-size: 50px;
    }
    .centered-section h1{
        font-size: 40px;
    }
    .product-promo-block .image-content img:hover {
        max-width: 220px;
    }
    .product-promo-block .image-content img{
        max-width: 200px;
    }
    .section{
        height: 100vh;
        border-radius: 0px;
    }
    #tagline-start{
        display: none;
    }
    .tagline-mid{
        font-size: 1.2rem;
        margin-left: 10px;
        margin-right: 10px;
    }
    .product-promo-block .product-title {
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 10px;
        color: #333;
    }
    .product-promo-block .product-subtitle {
        font-size: 1.3rem;
    }
    .product-promo-block .product-features{
        font-size: 1.3rem;
    }
    .product-promo-block .learn-more-btn{
        font-size: 1rem;
    }
    .section:nth-child(6){
        height: 120vh;
        padding-top: 80px;
        padding-bottom: 50px;
    }
    .accept-payment-item img {
    max-height: 150px;
    }
    .page-content {
        top: 550vh; /* Starts after all sections */
    }
    .footer {
        padding: 1px;
    }
}
@media (max-width:480px){

    .centered-section h1{
        font-size: 40px;
    }
    .section{
        height: 100vh;
        border-radius: 0px;
    }
    #tagline-start{
        display: none;
    }
    .tagline-mid{
        font-size: 1rem;
        margin-left: 10px;
        margin-right: 10px;
    }
    .product-promo-block .product-title {
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 10px;
        color: #333;
    }
    .product-promo-block .product-subtitle {
        font-size: 1rem;
    }
    .product-promo-block .product-features{
        font-size: 1rem;
    }
    .product-promo-block .learn-more-btn{
        font-size: 0.8rem;
    }
    .section:nth-child(6){
        height: 120vh;
        padding-top: 80px;
        padding-bottom: 50px;
    }
    .accept-payment-item img {
    max-height: 150px;
    }
    .page-content {
        top: 550vh; /* Starts after all sections */
    }
    .footer {
        padding: 1px;
    }
}