*{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.menu-container{
    padding: 15px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-section img{
    width: 150px;
    margin-bottom: 10px; /* Ensure some space below the logo */
}

.upper-nav-container{
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0;
}

.contact-info-section{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Allow contact items to stack on small screens */
    margin-top: 10px;
    margin-left: 10px;
}

.contact-menu{
    padding: 5px;
    font-size: 14px;
}

.contact-menu a{
    color: #444444;
    text-decoration: none;
    font-size: 13px;
}

.search-bar{
    padding: 0 60px;
    display: flex;
    justify-content: flex-end; /* Align search bar to the right */
    align-items: center;
    position: relative; /* Needed to place result box near the search bar */
    width: 100%;
    margin-top: -30px;
}

.search-bar input{
    padding: 7px 20px;
    width: 250px;
    background-color: #f0f0f0;
    outline: none;
    border: none;
    border-radius: 20px;
    box-shadow: 1px 2px 2px rgba(34, 34, 34, 0.3);
}

.search-bar input::placeholder{
    color: #444444;
}

.search-icon{
    position: absolute;
    display: flex;
    justify-content: baseline;
    right: 70px; /* Adjusted to bring it closer to the input box */
    font-size: 20px;
    cursor: pointer;
}

/*------search Result box--------*/
.result-box{
    max-height: 200px;
    width: 400px;
    overflow-y: scroll;
    background-color: #ff7b00;
    color: #ffffff;
    text-align: justify;
    padding: 0 10px;
    position: absolute;
    top: 40px; /* Adjusted to place it near the search input */
    right: 0;
    z-index: 9999;
}

.result-box ul{
    border-top: 1px solid #f6f6f6;
    padding: 10px 10px;
    text-align: justify;
}

.result-box ul li {
    list-style: none;
    padding: 5px 10px;
    border-bottom: 1px solid #ffb671;
    cursor: pointer;
    color: #ffffff;
}

.result-box ul li a{
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.result-box ul li:hover{
    background-color: #163f03;
}

.bottom-nav-container{
    display: flex;
    justify-content: space-between;
    background-color: #001881;
    padding: 10px 30px;
    width: 100%;
}

.nav-menu{
}

.nav-menu a{
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
}

.nav-menu a:hover{
    background-color: #ff7b00;
    padding: 10px 20px;
}

.horizontal-nav{
    display: flex;
    padding: 10px 0;
    border-bottom: 1px dashed #c0bfbf;
    width: 100%;
}

.horizontal-nav a{
    font-size: 15px;
}

.home-nav{
    padding: 0 2px;   
}

.home-nav a{
    text-decoration: none;
    color: #444444;
}

.home-nav a:hover{
    text-decoration: underline;
    color: #444444;
}

.navigationMenu{
    display: none;
    justify-content: space-between;
    background-color: #001881;
    padding: 10px 30px;
    width: 93%;
}

@media screen and (max-width: 820px) {
    .menu-container{
        padding: 10px 10px;
    }

    .logo-section img{
        width: 150px;
    }

    .upper-nav-container{
        flex-direction: column; /* Stack the logo and contact information vertically */
        align-items: center; /* Center everything */
        width: 100%;
        padding: 10px 0;
    }

    .contact-info-section{
        margin-left: 0;
        margin-top: 10px;
        display: flex;
        justify-content: center; /* Center contact items */
        width: 100%;
        text-align: center;
        flex-wrap: wrap;
        margin-top: -10px;
    }

    .contact-menu{
        font-size: 12px;
        padding: 8px 0;
        width: 100%;
        text-align: center;
    }

    .search-bar{
        justify-content: center;
        align-items: center;
        width: 100%;
        position: relative;
        margin-top: 0;
    }

    .search-bar input{
        width: 200px;
    }
    .search-icon{
        right: 20px; /* Adjusted to bring it closer to the input box */

    }

    .result-box{
        max-height: 200px;
        width: 200px;
        overflow-y: scroll;
        background-color: #ff7b00;
        color: #ffffff;
        text-align: justify;
        padding: 0 10px;
        position: absolute;
        top: 40px;
        right: 0;
    }

    .bottom-nav-container{
        display: none;
    }

    .nav-menu{
        padding: 13px 0;
        border-bottom: 0.1px solid #3385ff;
        transition: 0.3s;
    }

    .nav-menu:hover{
        background-color: #ff7b00;
        padding: 13px 0;
    }

    .navigationMenu{
        display: flex;
        background-color: #001881;
        color: #dddddd;
        font-weight: 600;
        padding: 10px 35px;
        width: 100%;
        flex-direction: column; /* Stack the nav menu items vertically */
    }

    .nav-menu a{
        color: #f0f0f0;
        text-decoration: none;
        font-weight: 400;
        padding: 10px 20px;
        font-size: 13px;
        text-align: center;
    }

    .nav-menu a:hover{
        background-color: #ff7b00;
    }
}



/* --- home-page-section----*/
.home-page-section{
    padding: 20px 100px;
    width: 100%;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.home-page-section {
    position: relative;
    overflow: hidden;
}

.banner-container {
    display: flex;
    transition: transform 0.2s ease-in-out;
}

.home-banner {
    min-width: 100%;
    transition: opacity 0.5s ease-in-out, visibility 0.3s ease-in-out;
}

.left-icon, .right-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    z-index: 100;
}

.left-icon {
    left: 100px;
    background-color: transparent;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    transition: 0.6s;

}

.right-icon {
    right: 100px;
    background-color: transparent;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    transition: 0.4s;
    
}
.right-icon i{
    font-size: 25px;
    color: #ffffff;
    font-weight: bolder;
}
.left-icon i{
    font-size: 25px;
    color: #ffffff;
    font-weight: bolder;
}
.left-icon:hover {
    background-color: #351902;
}

.right-icon:hover {
    background-color: #351902;;
}

/* Small devices (Phones) */
@media (max-width: 300px) {
    .left-icon {
        left: 2px;
        padding: 4px 5px;
        background-color: unset;
    
    }
    .right-icon {
        right: 3px;
        padding: 4px 5px;
    }

    .home-banner img {
        width: 100%;
        height: auto;  /* Ensure images scale properly on mobile */
    }

    .left-icon, .right-icon {
        font-size: 18px;  /* Adjust icon size for smaller screens */
        padding: 8px 15px;
    }
}


/* Medium devices (Tablets) */
@media (max-width: 1024px) {
    .left-icon{
        font-size: 25px;  /* Adjust icon size for tablets */
        left: 10px;
    }
    .right-icon {
        font-size: 25px;  /* Adjust icon size for tablets */
        right: 10px;
    }

    .home-banner img {
        width: 100%;
        height: auto;  /* Ensure images scale properly on tablets */
        padding: 0 100px;
    }
}






.home-introduction{
    padding: 20px 100px;
    display: flex;
}
.intro{
    width: 100%;
    padding: 20px;
}
.intro a{
    text-decoration: none;
}
.intro a h1{
    font-size: 16px;
    padding-bottom: 15px;
    color: #444444;
}
.intro p{
    font-size: 15px;
}
.read-more{
    padding-top: 20px;
}
.read-more a{
    background-color: #ff7300;
    padding: 5px 10px;
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
}



.intro-details{
    padding: 20px 100px;
    display: flex;
}
.summary-head{
    padding-bottom: 20px;
}
.summary-head label{
    font-weight: 600;
    border-left: 4px solid #ff7300;
    padding: 7px 40px;
    background-color: #e9e9e9;
}
.summary-head a{
text-decoration: none;
color: #1a1a1a;
}
.summary-head a:hover{
    text-decoration: underline;
}
.intro-summary-1{
    padding: 10px;
}
.intro-summary-section {
    display: flex;
}
.summary-image{
    padding: 10px;
}
.summary-image a h2{
    font-size: 14px;
    padding-bottom: 10px;
    width: 200px;
    color: #444444;
}
.summary-image img{
    width: 150px;
    height: 120px;
}
.summary-paragraph{
    padding: 10px;
}
.summary-paragraph a{
    text-decoration: none;
}
.summary-paragraph a h2{
    font-size: 14px;
    padding-bottom: 10px;
    width: 200px;
    font-weight: 500;
    color: #444444;
}
.summary-paragraph p{
    font-size: 13px;
    width: 200px;
}
.intro-summary-image{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}
.summary-img a{
    text-decoration: none;
    color: #444444;
}
.summary-img a img{
    width: 150px;
    height: 120px;
}
.summary-img a h3{
    font-size: 14px;
    color: #444444;
    font-weight: 600;
}
.summary-last-section{
    padding: 0 20px;
}
.last-image{
    margin-bottom: 30px;
}
.last-image img{
    width: 100%;
}
.last-image p{
    font-size: 14px;
    padding-top: 20px;
}
.more-details{
    padding-top: 10px;
}
.more-details a{
    text-decoration: none;
    font-size: 14px;
    color: #444444;
}
@media screen and (max-width: 820px){
    .home-page-section{
        padding: 20px 10px;
    }
    .home-banner1{
        width: fit-content;
    }
    .home-introduction{
        padding: 10px 0;
        display: block;
    }
    .intro{
        width: 100%;
        padding: 10px ;
    }
    
.intro-details{
    padding: 20px 10px;
    display: block;
}
.summary-head{
    padding-bottom: 30px;
    padding-top: 20px;
}
.summary-head label{
    font-weight: 600;
}
.intro-summary-1{
    padding: 0;
}
.intro-summary-section {
    display: flex;
}
.summary-image{
    padding: 0;
}
.summary-image a h2{
    padding-bottom: 10px;
    width: 180px;
}
.summary-image img{
    width: 130px;
    height: 110px;
}
.summary-paragraph{
    padding: 10px;
}
.summary-paragraph a h2{
    font-size: 14px;
    padding-bottom: 10px;
    width: 180px;

}
.summary-paragraph p{
    font-size: 13px;
    width: 180px;
}
.intro-summary-image{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}
.summary-img a img{
    width: 130px;
    height: 110px;
}
.summary-img a h3{
    font-size: 14px;
}
.summary-last-section{
    padding: 0 0;
}
.last-image{
    margin-bottom: 30px;
}
.last-image img{
    width: 100%;
}
.last-image p{
    font-size: 14px;
    padding-top: 20px;
}
.more-details{
    padding-top: 10px;
}
.more-details a{
    text-decoration: none;
    text-transform: capitalize;
}
    
}




/*---MAIN CONTAINER---*/
.product-name{
    padding: 5px 100px;
    display: flex;
    justify-content: baseline;

}
.product-name h1{
    font-size: 15px;
    padding: 10px;
    margin-right: 0;
    color: #444444;
    background-color: #f7f7f7;
    border-left: 4px solid #ff7b00;
    width: 60%;
    border-radius: 10px;
}
.product-name  span{
    background-color: #f7f7f7;
    padding: 10px;
    border-radius: 10px;
    margin-left: -30px;
}
.product-name  span a{
    color: #b1a9a9;
    text-decoration: none;
    transition: 0.4;
}
.product-name  span a:hover{
    color: #b1a9a9;
    text-decoration: underline;
}
.home-page-intorduction{
    display: flex;
    padding: 20px 100px;
}
.product-section{
    width: 70%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 25px;
}
.home-image{
    width: 90%;
    margin-bottom: 20px;
}
.home-image img{
    width: 90%;
    height: 90%;
}
.home-image a{
    text-decoration: none;
    transition: 0.3s;
}
.home-image a:hover{
    text-decoration: underline;
}
.home-image a h2{
    font-size: 12px;
    color: #444444;
    padding-bottom: 10px;
    text-align: center;
}
@media screen and (max-width: 820px) {
    .horizontal-nav{
        padding-bottom: 30px;
    }
    .product-name{
        padding: 5px 10px;
    }
    .product-name h1{
        font-size: 15px;
        padding: 7px;
        margin-right: 20px;
        width: 70%;
    }
    .product-name  span{
        background-color: #e9e9e9;
        margin-left: -30px;
    }
    .product-name  span a{
        color: #b1a9a9;
    }
    .home-page-intorduction{
        display: flex;
        padding: 20px 10px;
    }
    .product-section{
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 15px;
    }
    .home-image{
        width: 100%;
        margin-bottom: 20px;
    }
    .home-image img{
        width: 100%;
        height: 100%;
    }
    .home-image a h2{
        font-size: 12px;
    }
}

/*----home-products-menu-----*/
.home-products-menu{
    width: 30%;
    background-color: #f1f1f1;
    margin-left: 20px;
}
.home-products-menu h2{
    font-size: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #ff7b00;
}
.home-products-menu h2 a{
    color: #ff7b00;
    text-decoration: none;
}
.home-menu-bars{
    padding: 10px;
    border: 1px solid #e4e4e4;
}
.home-menu-bars label{
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}
.home-menu-bars label span{
    font-weight: 800;
}
.each-menu-section{
    display: none;
    padding: 10px;
}
.each-menu-section a{
    padding: 5px;
    color: #444444;
    text-decoration: none;
    cursor: pointer;
    border-bottom: 1px solid #c0bfbf;
    font-size: 14px;
}
@media screen and (max-width: 820px) {
    .home-products-menu{
        display: none;
    }
}
/*---------------home-page-intro-two-----------------*/
.home-page-intro-two{
    display: flex;
    justify-content: space-between;
    padding: 20px 100px;
}
.product-section-two{
    width: 70%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
}
.side-menu{
    width: 30%;
}
.side-menu p{
    padding: 10px;
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 10px;
    color: #444444;
}
.side-product-menu{
    width: 30%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    text-align: center;
}
.side-product a{
    text-decoration: none;
}
.side-product a img{
    width: 150px;
    height: 120px;
    
}
.side-product a h3{
    font-size: 12px;
}

.home-image-last{
    width: 90%;
    margin-bottom: 20px;
}
.home-image-last img{
    width: 100%;
    height: 100%;
}
.home-image-last a{
    text-decoration: none;
    transition: 0.3s;
}
.home-image-last a:hover{
    text-decoration: underline;
}
.home-image-last a h2{
    font-size: 12px;
    color: #444444;
    padding-bottom: 10px;
    text-align: center;
}
@media screen and (max-width: 820px){
    .home-page-intro-two{
        display: flex;
        justify-content: space-between;
        padding: 10px 10px;
    }
    .product-section-two{
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 15px;
    }
    .side-menu{
        display: none;
    }
    
    .home-image-last{
        width: 100%;
        margin-bottom: 20px;
    }
}


/*-------------solutionsContainer-----------*/

.solutionsContainer{
    padding: 20px 100px;
}
.solutions-header{
    padding: 5px;
    border-bottom: 3px solid #dadada;
    width: 70%;
}
.solutions-header label{
    font-size: 20px;
    font-weight: 500;
}
.solution-main{
    display: block;
}
.solutionsSection{
    display: flex;
    padding: 10px 0;
}
.solutionsInfo{
    display: flex;
    justify-content: space-between;
    width: 70%;
    padding: 10px 0;
    border-bottom: 1px solid #c2c2c2;
}
.solutions-image{
    padding-right: 20px;
}
.solutions-image img{
    width: 200px;
}
.solution-paragraph{
    padding: 0 20px;
}
.solution-paragraph a{
    text-decoration: none;
    color: #1a1a1a;
    transition: 0.3;
}
.solution-paragraph a:hover{
    text-decoration: underline;
}
.solution-paragraph h1{
    font-size: 16px;
    padding-bottom: 20px;
}
.solution-paragraph p{
    font-size: 14px;
}
.readMore{
    float: right;
    padding: 10px;
}
.readMore a{
    background-color: #444444;
    padding: 7px 20px;
    text-decoration: none;
    color: #ffffff;
    transition: 0.4s;
}
.readMore a:hover{
    background-color: #ff7300;
}
.solutions-links{
    position: absolute;
    top: 50%;
    right: 100px;
    width: 25%;
    padding: 20px;
    display: block;
}
.solutions-links-head{
    padding-bottom: 5px;
    border-bottom: 4px solid #ff7300;
}
.solutions-links-head label{
    font-size: 17px;
    font-weight: 700;
}
.sol-links{
    background-color: #dfdfdf;
    padding: 7px 20px;
    margin: 5px;
    border: 1px solid #c2c2c2;
}
.sol-links a{
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    transition: 0.3s;
}
.sol-links a:hover{
 color: #ff7300;
 text-decoration: underline;
}
@media screen and (max-width: 820px){
    .solutionsContainer{
        padding: 20px 10px;
    }
    .solutions-header{
        padding: 5px;
        border-bottom: 2px solid #dadada;
        width: 100%;
    }
    .solution-main{
        display: block;
    }
    .solutionsSection{
        display: block;
    }
    .solutionsInfo{
        display: block;
        width: 100%;
    }
    .solutions-image{
        padding-right: 0;
    }
    .solutions-image img{
        width: 100%;
    }
    .solution-paragraph{
        padding: 0 10px;
    }
    .solution-paragraph h1{
        font-size: 15px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .solution-paragraph p{
        font-size: 14px;
    }
    .readMore{
        float: unset;
        padding: 0;
        padding-top: 15px;
        padding-bottom: 20px;
    }
    .solutions-links{
        display: none;
    }
}

/*--------about-----------*/
.about-us{
    width:100%;
    padding-right:20px;
}
.about-us p{
    font-size: 14px;
    padding: 10px;
}
.about-image{
    padding-right: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 10px;
}
.about-image-grid{
    width: 100%;
}
.about-image-grid img{
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 820px){
    .about-us{
        width:100%;
        padding-right:0;
    }
    .about-image{
        padding-right: 0;
        display: grid;
        grid-template-columns:  1fr 1fr;
    }
}
.about-more-info{
    padding: 20px 100px;
    width: 70%;
}
.about-more-info h2{
    padding-top:  20px;
    padding-bottom: 5px;
    font-size: 16px;
    border-bottom: 2px solid #dadada;
}
.about-more-info p{
    padding: 10px 0;
    font-size: 15px;
}
.about-circle{
    padding: 10px 100px;
    display: flex;
    text-align: center;
}
.circle{
    border-radius: 100%;
    padding: 10px;
    border: 1px solid #ff7300;
    text-align: center;
    margin: 10px;
}
.circle h3{
    font-size: 14px;
    padding-bottom: 10px;
    color: #ff7300;
}
.circle p{
    font-size: 12px;
    width: 180px;
    text-align: center;
    padding: 10px;
}
@media screen and (max-width: 820px){
    .about-more-info{
        padding: 10px 10px;
        width: 100%;
    }
    .about-more-info h2{
        padding-top:  20px;
    }
    .about-circle{
        padding: 10px 30px;
        display: block;
        text-align: center;
    }
    .circle{
        border-radius: 100%;
        width: 300px;
        height: 300px;
        padding: 0;
        border: 1px solid #ff7300;
        text-align: center;
        margin: 10px;
    }
    .circle h3{
        font-size: 15px;
        padding-top: 70px;
        padding-bottom: 10px;
        color: #ff7300;
        text-align: center;
    }
    .circle p{
        padding: 10px;
        font-size: 13px;
        width: 300px;
        text-align: center;
    }
}

/*-------knowledge----------*/
.knowledge-navigation-links{
    padding: 20px 100px;
    text-align: center;
}
.knowledge-navigation-links a{
    text-decoration: none;
    padding: 7px 10px;
    border: 1px solid #dfdfdf;
    color: #818181;
    transition: 0.3s;
    font-size: 14px;
}
.knowledge-navigation-links a:hover{
    color:#1a1a1a;
}


/*---------CONTACT US-----------*/
.contact-us{
    width: 70%;
    padding-right: 30px;
}
.contact-us p{
    font-size: 14px;
}
.contact-address{
    padding: 30px 0;
}
.contact-address h3{
    padding-bottom: 20px;
    font-size: 17px;
}
.contact-address li{
    padding: 15px 0;
    border-bottom: 1px dashed #f0f0f0;
    border-top: 1px dashed #f0f0f0;
    font-size: 14px;
    list-style: none;
}
.contact-address li a{
    text-decoration: none;
    color: #818181;
    transition: 0.3s;
}
.contact-address li a:hover{
    text-decoration: underline;
}
.contact-quote{
    padding: 20px 0;
}
.contact-quote h4{
    padding: 5px;
    border-bottom: 2px solid #f0f0f0;
    color: #ff7300;
    font-size: 14px;
}
.contact-quote h5{
    padding: 30px;
    font-weight: 400;
}
.contact-quote form{
    border: 2px solid #dfdfdf;
    padding: 30px;
}
.form-input{
    display: flex;
    justify-content: baseline;
    padding: 5px;
    width: 100%;
}
.form-input label{
    margin-right: 40px;
    width: 40px;
}
.form-input input{
    padding: 7px 30px;
    width: 100%;
}
.form-input textarea{
    width: 100%;
}
.form-button{
    text-align: center;
    padding-top: 10px;
}
.form-button button{
    padding: 7px 30px;
    background-color: #444444;
    color: #ffffff;
    border: none;
    cursor: pointer;
}
@media screen and (max-width: 820px){
    .contact-us{
        width: 100%;
        padding-right: 0;
    }
    .contact-us p{
        font-size: 14px;
    }
    .contact-address{
        padding: 15px 0;
    }
    .contact-address h3{
        padding-bottom: 5px;
    }
    .contact-address li{
        padding: 10px 0;
    }
    .contact-quote{
        padding: 10px 0;
    }
    .contact-quote h4{
        padding: 5px;
    }
    .contact-quote h5{
        padding: 10px;
    }
    .contact-quote form{
        border: 2px solid #dfdfdf;
        padding: 10px;
    }
    .form-input{
        display: flex;
        justify-content: baseline;
        padding: 5px;
        width: 100%;
    }
    .form-input label{
        margin-right: 40px;
        width: 40px;
    }
}




/*-----------product-more-details------------*/
.product-more-details{
    padding: 20px 100px;
    display: flex;
}
.product-details-image{
    width: 100%;
    padding-right: 20px;
}
.product-details-image img{
    width: 100%;
}
.product-infos{
    width: 100%;
    padding-right: 20px;
}
.product-infos h1{
    font-size: 20px;
    padding-bottom: 20px;
    color: #ff7300;
}
.product-infos p{
    padding: 10px 0;
    border-bottom: 1px dashed #dbdbdb;
}
.service-online{
    padding: 10px 0;
}
.service-online a{
    text-decoration: none;
    padding: 6px 20px;
    background-color: #001881;
    color: #dddddd;
}
.home-products-side{
    width:60%;
}
.home-products-side1{
    width: 40%;
}
.product-second-container{
    display: flex;
    padding: 20px 100px;
}
.second-container-image{
    width: 100%;
    padding-right: 30px;
}
.second-container-image h4{
    font-weight: 500;
    padding: 10px;
}
.second-container-image img{
    width: 100%;
}
.second-container-image h2{
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 15px;
}
.second-container-image  li{
    list-style: none;
    padding: 5px 0;
    font-size: 15px;
}
.second-container-image li i{
    padding-right: 5px;
}
.second-container-image p{
    font-size: 14px;
}
.side-product-section{
    width: 30%;
    display: grid;
}
.side-product-section p{
    padding-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}
.side-product-section .side-product  a img{
    width: 100px;
    height: 100px;
}

.product-third-container{
    padding: 20px 100px;
}
.product-information{
    padding: 20px 0;
}
.product-information h2{
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 15px;
}

.product-information p{
    font-size: 15px;
}
.product-information li{
    padding: 5px 0;
    list-style: none;
    font-size: 15px;
}
.product-information li i{
    padding-right: 5px;
}
.product-information img{
    width: 100%;
}
.product-contact-form{
    padding: 20px 200px;
}
@media screen and (max-width: 820px){
    .product-more-details{
        padding: 20px 10px;
        display: block;
    }
    .product-details-image{
        padding-right: 0;
    }
    .product-infos{
        padding-right: 0;
    }
    .product-infos h1{
        padding-top: 20px;
        padding-bottom: 0;
    }
    .product-infos p{
        padding: 10px 0;
    }
    .service-online{
        padding: 10px 0;
    }
    .home-products-side{
        display: none;
    }
    .home-products-side1{
        display: none;
    }
    .product-second-container{
        display: block;
        padding: 20px 10px;
    }
    .second-container-image{
        padding-right: 0;
    }
    .side-product-section{
        width: 30%;
        display: none;
    }
    .product-third-container{
        padding: 20px 10px;
    }
    .product-information{
        padding: 10px 0;
    }
    .product-contact-form{
        padding: 20px 20px;
    } 
}
i{
    color: #ff7300;
    font-size: 17px;
}
@media screen and (max-width: 820px){
    i{
        font-size: 15px;
    }
}

/*----------hanging-side-contact------*/
.hanging-side-contact{
    position: fixed;
    right: 0;
    top: 60%;
    transform: translateY(-50%);
    padding: 20px;
}
.side-contact{
    padding: 20px;
    margin: 5px;
    background-color: #ff7300;
    border-radius: 10px;
}
.side-contact i{
    color: #ffffff;
    font-size: 25px;
}
@media screen and (max-width: 820px) {
    .hanging-side-contact{
        position: fixed;
        right: 0;
        top: 60%;
        transform: translateY(-50%);
        padding: 3px;
    }
    .side-contact{
        padding: 8px;
        margin: 5px;
    }
    .side-contact i{
        color: #ffffff;
        font-size: 18px;
    }
}

/*-----------live-chart-------------*/
.live-chart{
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 110px;
    border: 2px solid #dadada;
    cursor: pointer;
    padding-bottom: 10px;
}
.liverchart-box{
    display: grid;
}
.live-chart h4{
    background-color: #001881;
    color: #ffffff;
    padding: 10px 8px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    display: flex;
    justify-content: space-between;
}
.closeChart{
    cursor: pointer;
}
.liverchart-box img{
    width: 100px;
}
.liverchart-box button{
    padding:  5px;
    font-size: 14px;
    border: 2px solid transparent;
    border-radius: 5px;
    background-size: 200% auto;
    color: white;
    cursor: pointer;
    outline: none;
    position: relative;
    overflow: hidden;
    transition: color 0.4s;
}
/* Create the animation of the gradient */
@keyframes colorChange {
    0% {
        background-position: 100% 0;
    }
    50% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 0;
    }
}

.liverchart-box button {
    background: linear-gradient(90deg, blue, red);
    background-size: 200% auto;
    animation: colorChange 2s linear infinite;
}

.liverchart-box button:hover {
    color: black;
    border-color: white;
}


/*livechart form*/
.liverchar-form{
    position: fixed;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    background-color: #001881;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 10px 10px 10px rgba(34, 34, 34, 0.3);
    z-index: 120;
    display: none;
}
.liverchar-form h5{
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 500;
}
.liverchar-form form{
    display: grid;
}
.liverchar-form h6{
    color: #fff;
    padding-bottom: 20px;
    font-weight: 400;
}
.inputForm{
    display: flex;
    justify-content: space-between;
    padding: 5px;
}
.inputForm label{
    color: #fff;
    padding-right: 20px;
    font-size: 14px;
}
.inputForm input{
    padding: 8px 10px;
    border: none;
    outline: none;
    border-radius: 5px;
}
.inputForm textarea{
    padding: 5px;
    border: none;
    outline: none;
    border-radius: 5px;
}
.inputForm button{
    text-align: center;
    padding: 10px;
    background-color: #bfd6f8;
    color: #444444;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 10px;
    cursor: pointer;
}
.clossForm{
    cursor: pointer;
}
@media screen and (max-width: 820px){
    .live-chart{
        position: fixed;
        left: 0;
        top: 50%;
    }
    .liverchart-box{
        display: grid;
    }
    .live-chart h4{
        color: #ffffff;
        padding: 10px 8px;
    }
    .closeChart{
        cursor: pointer;
    }
    .liverchart-box img{
        width: 100px;
    }
    .liverchart-box button{
        padding:  5px;
        font-size: 14px;
    }
    
    /*livechart form*/
    .liverchar-form{
        position: fixed;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        padding: 10px;
    }
}

/*----footer----*/
.footer{
    display: flex;
    justify-content: space-between;
    background-color: #1a1a1a;
    padding: 20px;
    margin-top: 50px;
}
.copyright{
    padding:  0 80px;
    color: #f0f0f0;
    font-size: 14px;
}
.copyright a{
    color: #ff7b00;
}
.footer-links{
    padding:  0 80px;
    color: wheat;
}
.footer-links a{
    padding: 0 5px;
    color: #f0f0f0;
    font-size: 14px;
}
@media screen and (max-width: 820px){
    .footer{
        display: block;
        padding: 10px;
        margin-top: 40px;
    }
    .copyright{
        padding:  0 10px;
    }
    .copyright a{
        color: #ff7b00;
    }
    .footer-links{
        padding:  0 10px;
    }
    .footer-links a{
        padding: 0;
    }
}
























