@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@400;500;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    font-family: "poppins";
    text-decoration: none;
    box-sizing: border-box;
}

body {
    background-color: #eee;
    font-family: Arial, sans-serif;
    margin: 0;
    height: 100vh;
}

/* For WebKit (Chrome, Safari, Opera) */
::-webkit-scrollbar {
    width: 10px;
    background-color: transparent;
    /* Set the width of the scrollbar */
}

::-webkit-scrollbar-thumb {
    background-color: #00172d;
    width: 8px;
    /* Set the color of the thumb */
    border-radius: 3px;
    /* Optional: Add rounded corners to the thumb */
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

header {
    background: #001d35;
    /* background-color: white; */
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 100;
    height: 7vh;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content {
    width: 80%;
    /* border: 1px solid red; */
    height: 7vh;
    display: flex;
}

.content .logo {
    width: 25%;
    height: 7vh;
    /* border: 1px solid green; */
}

.content .logo img {
    height: 100%;
}

nav {
    width: 45%;
    padding: 10px;
    height: 7vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* border: 1px solid green; */
}

nav a {
    /* border: 1px solid orange; */
    padding: 8px 10px;
    border-radius: 5px;
    transition: color 0.3s ease-in-out;
    position: relative;
    color: #ddd;
}

nav a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ff9900;
    /* Change to your preferred underline color */
    transform: scaleX(0);
    /* Initially, set the width to 0 */
    transform-origin: bottom right;
    transition: transform 0.3s ease-in-out;
}

nav a:hover {
    color: #ff9900;
    /* Change to your preferred hover color */
}

a:hover::before {
    transform: scaleX(1);
    /* Expand the underline to full width on hover */
    transform-origin: bottom left;
}
nav a.normal_text.active {
    color: orange;
    border-bottom: 2px solid #ff9900;
}

.buttons {
    width: 30%;
    height: 7vh;
    /* border: 1px solid red; */
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.button_div {
    border: 1px solid red;
    padding: 6px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button_div img {
    width: 20px;
    margin-right: 3px;
    filter: brightness(0) saturate(100%) invert(46%) sepia(97%) saturate(6693%) hue-rotate(29deg) brightness(114%) contrast(94%);
}

.button_div p {
    color: #fff;
    font-size: 12px;
}

.order_btn {
    margin-right: 20px;
    background-color: rgb(0, 0, 0);
    border: none;
    border-radius: 10px;
    padding: 9px 25px;
}

.account_btn {
    margin-right: 20px;
    /* background-color: green; */
    border: 2px solid #ff9900;
    /* border: none; */
    border-radius: 10px;
}
.menubtn {
    display: none;
}
.center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.para_title {
    font-size: 30px;
    text-transform: uppercase;

    color: #ff9900;
    font-weight: 700;
}

.normal_text {
    font-size: 13px;
    color: #ddd;
}

.normal_body_text {
    color: black;
    font-size: 13px;
    margin-top: 10px;
}
.top{
    width: 100%;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(45deg,
                transparent 25%,
                rgba(255, 255, 255, 0.05) 5%,
                rgba(255, 255, 255, 0.05) 80%,
                transparent 10%,
                transparent 10%,
                rgba(0, 0, 0, 0.05) 75%,
                rgba(0, 0, 0, 0.05) 100%);
    background-size: 10px 10px;
    background-color: #00172d;
    position: relative;
    margin-top: 7vh;
}
.custom-shape-divider-bottom-1705429212 {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1705429212 svg {
    position: relative;
    display: block;
    width: calc(172% + 1.3px);
    height: 59px;
}

.custom-shape-divider-bottom-1705429212 .shape-fill {
    fill: #eee;
}
.titleblock{
    width: 80%;
    height: 15vh;
    /* border: 1px solid red; */
}
.titleblock p{
    font-weight: 900;
    font-size: 50px;
    color: #ddd;
}
.titleblock span {
    font-weight: 600;
    font-size: 14px;
    color: #666;
}

.paragraph{
    display: flex;
    width: 80%;
    margin-left: 10%;
    height: auto;
    border-radius: 10px;
    padding: 20px;
    padding-bottom: 50px;
    margin-top: 20px;
    background-color: #f9f9f9;

    /* box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5); */
        /* Light cream color */
    /* background-image:
        linear-gradient(45deg,
            transparent 25%,
            rgba(0, 0, 0, 0.05) 25%,
            rgba(0, 0, 0, 0.05) 50%,
            transparent 50%,
            transparent 75%,
            rgba(0, 0, 0, 0.05) 75%,
            rgba(0, 0, 0, 0.05) 100%);
    background-size: 4px 4px; */
    
}
.paragraph .images {
    width: 40%;
    padding: 20px;
    /* border: 1px solid red; */
    height: 70vh;
}
.paragraph .images img{
    width: 100%;
    height: 100%;
}
.paragraph .about_us_text {
    width: 60%;
    /* border-left: 3px solid #ff9900; */
    padding: 20px;
    height: 70vh;
}
.paragraph .about_us_text hr{
    height: 4px;
    border: none;
    background: linear-gradient(45deg,orange 40%,#000 50% );
    width: 15%;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
}
.paragraph p{
    color: #666;
    font-style: oblique;
    font-size: 14px;
    word-wrap: break-word;
}
.paragraph p img{
    width: 20%;
    height: 20%;
}
p.heading_para {
    width: 30%;
    /* border: 1px solid red; */
    font-weight: 900;
    color: #ff9900;
    font-size: 30px;
    background: linear-gradient(45deg,orange 40%,#000 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* --------------------------------OUR GUarantee section-------------------------------- */
.guarantees {
    width: 80%;
    height: 60vh;
    margin-left: 10%;
    margin-top: 20px;
    /* border: 1px solid red; */
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
}

.section_title {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: bolder;
    background: linear-gradient(45deg,orange 40%,#000 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section_hr {
    border: none;
    background-color: #ddd;
    width: 30%;
    height: 5px;
    margin-top: 20px;
    border-radius: 10px;
}

.flex_div {
    /* border: 1px solid red; */
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    gap: 20px;
}

.guaratee {
    width: 100%;
    height: 40vh;
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
}

.guaratee img {
    height: 20vh;
}

.tite {
    color: #ff9900;
    font-size: 20px;
    font-weight: bolder;
    margin-top: 20px;
    margin-bottom: 5px;
}
.sidenav {
    display: none;
}
@media only screen and (max-width:800px) {

    header {
        background: #001d35;
        /* background-color: white; */
        width: 100%;
        height: 7vh;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .content {
        width: 100%;
        /* border: 1px solid red; */
        height: 7vh;
        /* display: none; */
    }

    .content .logo {
        width: 25%;
        height: 7vh;
        /* border: 1px solid green; */
    }

    .content .logo img {
        width: 100%;
        height: 100%;
    }

    nav {
        display: none;
    }

    .buttons {
        width: 75%;
        height: 7vh;
        /* border: 1px solid red; */
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .button_div {
        /* border: 1px solid red; */
        padding: 8px 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .button_div img {
        width: 15px;
        margin-right: 3px;
        filter: brightness(0) saturate(100%) invert(46%) sepia(97%) saturate(6693%) hue-rotate(29deg) brightness(114%) contrast(94%);
    }

    .button_div p {
        color: #fff;
        font-size: 10px;
    }

    .order_btn {
        margin-right: 10px;
        background-color: rgb(0, 0, 0);
        border: none;
        border-radius: 5px;
        padding: 9px 10px;
    }

    .account_btn {
        margin-right: 10px;
        /* background-color: green; */
        border: 2px solid #ff9900;
        /* border: none; */
        border-radius: 10px;
    }

    .menubtn {
        background-color: transparent;
        border: none;
        margin: 10px;
        display: block;

    }

    .menubtn img {
        width: 30px;
        filter: brightness(0) invert(1);
    }

    .center {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .para_title {
        font-size: 30px;
        text-transform: uppercase;

        color: #ff9900;
        font-weight: 700;
    }

    .normal_text {
        font-size: 13px;
        color: #ddd;
    }

    .normal_body_text {
        color: black;
        font-size: 13px;
        margin-top: 10px;
    }

    .top {
        height: 30vh;
    }


    .titleblock {
        width: 96%;
        height: 20vh;
        /* border: 1px solid red; */
    }

    .titleblock p {
        font-weight: 900;
        font-size: 35px;
        color: #ddd;
    }

    .titleblock span {
        font-weight: 600;
        font-size: 14px;
        color: #666;
    }
    .paragraph {
        width: 96%;
        margin-left: 2%;
    }
    .paragraph p {
        color: #666;
        font-style: oblique;
        font-size: 12px;
        word-wrap: break-word;
    }

    /* --------------------------------OUR GUarantee section-------------------------------- */
    .guarantees {
        width: 96%;
        height: 180vh;
        margin-left: 2%;
    }

    .section_title {
        font-size:25px;
        color: #666;
    }

    .section_hr {
        width: 80%;
    }

    .flex_div {
        /* border: 1px solid red; */
        height: 40vh;
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-content: space-between;
        margin-top: 20px;
    }

    .guaratee {
        width: 100%;
        height: 40vh;
    }

    .guaratee img {
        height: 20vh;
    }

    .guaratee img {
        height: 20vh;
    }

    .tite {
        color: #ff9900;
        font-size: 20px;
        font-weight: bolder;
        margin-top: 10px;
        margin-bottom: 5px;
    }
    .sidenav {
        display: block;
        height: 100%;
        /* 100% Full-height */
        width: 0;
        /* 0 width - change this with JavaScript */
        position: fixed;
        /* Stay in place */
        z-index: 1000;
        /* Stay on top */
        top: 0;
        /* Stay at the top */
        left: 0;
        background-image: linear-gradient(45deg,
                transparent 25%,
                rgba(255, 255, 255, 0.05) 5%,
                rgba(255, 255, 255, 0.05) 80%,
                transparent 10%,
                transparent 10%,
                rgba(0, 0, 0, 0.05) 75%,
                rgba(0, 0, 0, 0.05) 100%);
        background-size: 10px 10px;
        background-color: #00172d;
        /* Black*/
        overflow-x: hidden;
        /* Disable horizontal scroll */
        padding-top: 60px;
        /* Place content 60px from the top */
        transition: 0.5s;
        /* 0.5 second transition effect to slide in the sidenav */
    }

    /* The navigation menu links */
    .sidenav a {
        width: 90%;
        margin-left: 5%;
        margin-top: 10px;
        height: 50px;
        padding-left: 20px;
        display: flex;
        align-items: center;
        border: 2px solid #ff9900;
        text-decoration: none;
        font-size: 16px;
        color: #818181;
        /* display: block; */
        transition: 0.3s;
    }

    /* Position and style the close button (top right corner) */
    .sidenav .closebtn {
        padding: 0px 10px;
        position: absolute;
        top: 10px;
        background-color: #00172d;
        border-radius: 50%;
        color: white;
        right: 10px;
        font-size: 35px;
        margin-left: 0px;
    }
}