#header{
    display: flex;
    align-items: center;
justify-content: space-between;
padding: 20px 80px;
background: #e3e6f3;
box-shadow: 0 5px 15px rgba(0,0,0, 0.6);
z-index: 999;
position: sticky;
top: 0;
left: 0;
}

#navbar{
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar li{
    padding: 0 20px;
    list-style: none;
    position: relative;
}

#navbar li a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    transition: 0.3s;
}

#navbar li a:hover,
#navbar li a.active{
    color: #ff4500;
}

#navbar li a.active::after,
#navbar li a:hover::after{
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #ff4500;
    position: absolute;
    bottom: -4px; 
    left: 0;
}
#hero {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;  /* Aligns to right */
    justify-content: flex-start; /* Moves content to the top */
    height: 100vh;
    padding: 40px 90px; /* Top and right padding */
    background-image: url("image/spare5.png");
    background-size: cover;
    background-position: right top;
}
  
#hero h4{
    padding-bottom: 5px;
    font-size: 18px;
    margin: 0;
    color:#f50909;
}

#hero h2 {
    padding-bottom: 5px; /* Reduce padding */
    font-size: 24px; /* Adjust font size */
    margin: 0; /* Remove default margin */
    color: #f50909; /* Change font color */
}
    #hero h1{
        font-size: 40px;
        font-weight: 700;
        color: #f50909;
        margin: 10px 0;
    }
    #hero p{
        font-size: 20px;
        margin: 10px 0;
        color:#f50909;
}
    #hero button {
        padding: 10px 25px;
        margin-top: 10px;
        background: #ff4500;
        color: #fff;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        transition: 0.3s;
    }
    #hero button:hover{
        background: #333;
    }
.logo {
    align-items: left;
    max-width: 205px; /* Adjust the value as needed */
    height: auto;
}
#feature {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Align items to the left */
    flex-wrap: wrap;
    padding: 20px 80px;
    text-align: left;
}

.fe-box {
    text-align: left;
    max-width: 150px; 
    margin-right: 20px;
    transition: box-shadow 0.3s ease; /* Add smooth transition for hover effect */
}

.fe-box img {
    max-width: 100%; 
    margin-bottom: 10px;
    height: auto;
}

.fe-box h6 {
    display:inline-block;
    padding: 9px 8px 6px 8px;
line-height: 1.5;
font-size: 16px;
border-radius: 4px;
color: #d4d3d2;
background-color: #f85b00;
}

.fe-box:hover {
    box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.03); /* Stronger shadow effect for hover */
}

#feature .fe-box {
    width: 180px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f1f149;
    border-radius: 4px;
    margin: 15px 0;
}

#products{  
    text-align: center;
}
#products .pro-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 80px;
    padding-top: 20px;
}

#products .pro{
    width: 23%;
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid #f1f1f1;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.1);
    margin: 10px 0;
    transition:0.2s ease ;
    position: relative;
}
#products .pro:hover{
    box-shadow: 10px 10px 54px rgba(58, 55, 66, 0);
}
#products .pro img{
    width: 100%;
    border-radius: 20px;
}
#products .pro .des{
    text-align: center;
    padding:10px 0;
}
#products .pro .des span{
    color:#000000;
    font-size: 20px;
}
#products .pro .des h5{
    padding-top: 5px;
    color:#333;
    font-size: 18px;
}
#products .pro .des h4{
    padding-top: 5px;
    color:#000000;
    font-size: 18px;
    font-weight: 700;
}
#products .pro .truck {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50px;
    background-color: #000000;
    font-weight: 500;
    color: #f08800;
    border: 1px solid #00ff26;
    position: absolute;
    bottom: 20px;
    right: 10px;
    display: flex; /* Added display property */
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
    transition: background-color 0.3s, color 0.3s; /* Add transition for smooth effect */
}
#products .pro .truck:hover {
    background-color: #da5e5e; /* Change background color on hover */
    color: #ff7300; /* Change text color on hover */
}
#banner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url("image/spare3.png");
    width: 100%;                             
    height: 40vh;
    background-size:cover;
    background-position: center;
}
#banner h4{
    color: antiquewhite;
    font-size: 20px;
}
#banner h2{
    color: antiquewhite;
    font-size: 40px;
   padding:10px 0;
}
#banner h2 span{
    color: #ff7300;
}
button.normal{
    padding: 10px 5px;
    margin-top: 5px;
    background: #6b625f;
    color: #fff5f5;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}
#banner button:hover{
    background: #ff4500;
    color:#333;
}
#ms-banner{
    display: flex;
    justify-content: space-between;
    flex-wrap:wrap;
}
#ms-banner .banner-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    background-image: url("image/spare3.png");
   min-width: 580px;                             
    height: 50vh;
    background-size:cover;
    background-position: center;
    padding: 30px ;
}
#ms-banner h4{
color: bisque;
font-size:20px;
font-weight: 300;
}
#ms-banner h2{
    color: bisque;
    font: size 28px;
    font-weight: 800;
    }
    #ms-banner span{
        color: #fff;
        font: size 14px;
        font-weight: 500;
        padding-bottom:15px;
        }    
        button.white{
            padding: 11px 18px;
            margin-top: 5px;
            background: transparent;
            color: #ffe0d4;
            border: 1px solid #e3e6f3;
            border-radius: 5px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }
#ms-banner .banner-box:hover  button{
    background: #ff7300;
    border:1px solid #ff7300;
} 

#banner3{
    display: flex;
    justify-content: space-between;
    flex-wrap:wrap;
    padding: 0 5px;
}
#banner3 .banner-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    background-image: url("image/gui2.jpg");
   min-width: 30%;                             
    height: 30vh;
    background-size:cover;
    background-position: center;
    padding: 20px ;
    margin-bottom: 20px;
}

#banner3 .banner-box2{
    background-image: url("image/spare3.png");
}
#banner3 .banner-box2{
    background-image: url("image/spare3.png");
}
#banner3 h2{
    color: #fff;
    font-weight: 900;
    font-size: 35px;
}
#banner3 h3{
    color:#f85b00;
    font-weight: 800;
    font-size:55px;
}
.section-p1 {
    padding: 40px 0;
}
footer{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative; /* Ensure the pseudo-element is positioned relative to the footer */
    z-index: 1; 
}
footer::before {
    content: "";
    display: block;
    width: 100%;
    height: 25px; /* Adjust the height of the line */
    background-color: #ff4500; /* Set the color of the line */
    position: absolute;
    top: 0;
    left: 0;
}
footer .col{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}
footer .logo{
    margin-bottom: 30px;
}

footer h4{
    font-size: 14px;
    padding-bottom: 20px;
}

footer p{
    font-size: 13px;
    margin: 0 0 8px 0;
}
footer a{
    font-size: 14px;
    text-decoration: none;
    color: #222;
    margin-left: 10px;
}
footer .follow{
    margin-top: 20px;
}
footer .follow  i{
    color:#333;
    padding-right: 4px;
    cursor: pointer;
}
footer .install .row image{
    border: 1px solid #f1f1f1;
    border-radius: 6px;
}
footer .install img{
    margin:10px 0 15px 0;
}
footer .folloe i:hover,
footer a:hover{
    color: #ff4500;
}
footer .copyright{
    width: 100%;
    text-align: center;
}
/* shop page*/
#page-header{
    background-image: url("image/spare3.png");
    width:100%;
    height: 40vh;
    background-size: cover; 
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
}
#page-header h2,
#page-header p{
    color: #fff5f5;
}

#pagination{
    text-align: center;
}
#pagination a{
    text-decoration: none;
    background-color: #333;
    padding:15px 20px;
    border-radius: 4px;
    color: #ff6803;
    font-weight: 600;
}
#pagination a i{
    font-size:16px;
    font-weight: 600;
}

/* single product*/
#prodetails{
    display: flex;
    margin-top: 10px;
    padding: 9px 10px;
}
#prodetails .single-pro-image{
    width: 150%;
    margin-right: 70px;
}
.small-img-group{
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}
.small-img-col{
    flex-basis: 24%;
    cursor: pointer;
}
#prodetails .single-pro-details {
    width: 500%;
    padding-top: 30px;
    }
    #prodetails single-pro-details h4 {
        padding: 40px 0 20px 0;
        }
        #prodetails .single-pro-details h2 {
        font-size: 26px;
        }
        #prodetails .single-pro-details select {
            display: block;
            padding: 5px 10px;
            margin-bottom: 10px;
        }
        #prodetails .single-pro-details select:focus {
            outline: none;
        }
        #prodetails .single-pro-details input {
            width:50px;
            height: 47px;
            padding-left: 10px;
            font-size: 16px;
            margin-right: 10px;
            margin-bottom: 10px;
        }
        #prodetails .single-pro-details input:focus {
            outline: none;
        }
        #prodetails .single-pro-details button {
            padding: 10px 25px;
            background: #ff4500;
            color: #fff;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: 0.3s;
        }
        #prodetails .single-pro-details button:hover {
            background: #333;
        }
        #prodetails .single-pro-details select span{
            line-height:25px;
        }
 /*about us */
       #page-header.about-header{
        background-image: url("image/spare3.png");/*change the image here*/
       }
       #about-head{
        display: flex;
        align-items: center;
       }
       #about-head img{
        width: 50%;
        height: 50%;
        border-radius: 20px;
       }
       #about-head div{
        padding-left: 40px;
       }
       #Marquee{
        Color: #ff4500;
        font-size: 20px;
        }
       #our-patners{
        text-align: center;
       }
       #our-patners .patners{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 20px 80px;
       }
       #our-patners .patners img{
        border-radius:20px;
        margin: 10px 0;
       }
       /*contact us*/
 #contact-details{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
 }
 #contact-details .details{
    width: 50%;
 }   
    #contact-details .details span{
        font-size: 42px;
    }
 #contact-details .details h2{
    padding-bottom: 10px;
  font-size: 30px;
 }
 #contact-details .details h3{
    padding-bottom: 10px;
    font-size: 20px;
 }
    #contact-details .details li{
    list-style-type: none;
    display: flex;
    padding:10px 0;
    }
    #contact-details .details li{
        font-size: 14px;
        padding-right: 22px;
    }
    #contact-details .details li p{
        margin: 0 0 0 15px;
        font-size: 14px;
    }
    #contact-details .map{
        width:55%;
        height: 400px;
    }
    #contact-details .map iframe{
        width: 100%;
        height: 100%;
    }

/*cartpage*/
#cart table{
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    white-space: nowrap;
}
#cart table img {
    width: 50px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
    border-radius: 15px; /* Optional: Add border radius for rounded corners */
}
#cart table td:nth-child(1){
    width:100px;
    text-align: center;
}
#cart table td:nth-child(2){
    width:150px;
    text-align: center;
}
#cart table td:nth-child(3){
    width:250px;
    text-align: center;
}
#cart table td:nth-child(4),
#cart table td:nth-child(5),
#cart table td:nth-child(6){
    width:150px;
    text-align: center;
}
#cart table td:nth-child(5) input{
    width:70px;
    padding: 10px 5px 10px 15px;
}
#cart table thead{
    border: 1px solid #f1f1f1;
    border-left: none;
    border-right: none;
    background: #333;
    color: #fff;
}
#cart table thead td {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    padding: 18px 0;
}
#cart table tbody tr td {
    padding-top: 15px;
}
#cart table thead td {
    font-size: 13px;
}
cart-add{
    display: flex;
    justify-content: space-between;
    padding: 20px 80px;
}
#subtotal{
    border-collapse: collapse;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px 80px;
    margin: 0 auto; /* Center the section within its parent */
    width: 50%; /* Adjust the width as needed */
}
#subtotal table{
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    border-radius: 10px;
    padding: 10px;
    font-size:14px;
    text-align: center;
}
#subtotal h3{
    padding-bottom: 15px;
    font-size: 20px;
    text-align:center;
}
#subtotal button{
    background-color: #f08800;
    color:#222;
    padding:12px 20px;                                     
}
#subtotal button:hover {
    background-color: #333; /* Change background color on hover */
    color: #fd5d00; /* Change text color on hover */
}