@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

:root{
   --blue:#2980b9;
   --red:tomato;
   --orange:orange;
   --black:#333;
   --white:#fff;
   --bg-color:#eee;
   --dark-bg:rgba(0,0,0,.7);
   --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
   --border:.1rem solid #999;
}

*{
   font-family: 'Poppins', sans-serif;
   margin:0; padding:0;
   box-sizing: border-box;
   outline: none; border:none;
   text-decoration: none;
   text-transform: capitalize;
}

        
        body {
            background-color: #f8f9fa;
        }


        .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background: #ffbf00;
        color: #000000;
        position: sticky;
        top: 0;
        width: 100%;
        z-index: 1000;
    }

    .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

    .nav-links {
        list-style: none;
        display: flex;
        gap: 20px;
    }

    .nav-links a {
        text-decoration: none;
        color: white;
        font-size: 16px;
        transition: 0.3s;
    }

    .nav-links a:hover {
        color: #f2f2f2;
    }

    .menu-toggle {
        display: none;
        font-size: 24px;
        cursor: pointer;
    }


.slider_Container {
    width: 100%;
    display: block;
    margin: 0 auto;
}

.slider {
    position: relative;
    max-width: 100%;
    height: 450px;
    overflow: hidden;
    margin: 0 auto;
}

.slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 1s ease-in-out;
}

.slide {
    flex: 0 0 100%;
    position: relative;
    text-align: center;
    height: 100%;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-text {
    position: absolute;
    width: 90%;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 1rem;
}

.Mini_image {
    display: none;
}

/* Dots */
.dots {
    text-align: center;
    margin-top: 10px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.dot.active {
     background-color: #007bff;
}

 .hero_section{
            width: 100%;
            height:auto;
            text-align: center;
            margin-top: 15%;

        }

  .hero_section h3{
            padding-top: 10px;
            font-size: 18px;
         }

         .hero_section i{
            justify-content: center; /* Centers horizontally */
            align-items: center; /* Centers vertically */
         }

         .hero_section p{
            padding-top: 25px;
            font-size: 13px;
            width: 80%;
            margin: auto;
         }

         .hero_section button{
           width: 30%;
           height: 55px;
           margin-top: 15px;
           background-color: #F40009;
           border-radius: 10px;
           font-size: 13px;
           color: white;
           cursor: pointer;
           justify-content: center; /* Centers horizontally */
           align-items: center; /* Centers vertically */

         }

         .Promo_section{
            width: 90%;
            margin: auto;
            border: 1px solid grey;
            margin-top: 10%;
            height: 400px;
         }

         .Promo_section img{
            width: 100%;
            height: 100%;
         }

         .Service_section{
            display: flex;
            flex-direction: column;
            width: 100%;
            margin-top: 15%;
            justify-content: center; /* Centers horizontally */
            align-items: center; /* Centers vertically */
            height: auto;
    
         }

         .service_box {
            display: flex;
            flex-direction: column; /* Stack items vertically */
            justify-content: center; /* Center items vertically */
            align-items: center; /* Center items horizontally */
            text-align: center; /* Ensure text is centered */
            height: 100%; /* Let it expand within its container */
            width: 250px; /* Adjust as needed */
            padding: 20px; /* Add space inside the box */
            border: 1px solid grey;
            margin-top: 5%;
            border-radius: 10px; /* Optional for rounded corners */
        }

        .service_box i {
            font-size: 30px; /* Adjust icon size */
            color: black; /* Icon color */
            }

        .service_box h3 {
            margin-top: 15px; /* Moderate spacing */
            font-size: 20px;
            color: black;
            }

        .service_box p {
            margin-top: 10px;
            font-size: 14px;
            color: black;
            max-width: 80%; /* Ensures text doesn’t stretch too wide */
            }
        
        .Brands {
            display: flex;
            flex-direction: column; /* Stack images vertically */
            align-items: center; /* Center images horizontally */
            justify-content: center; /* Center within the parent */
            gap: 20px; /* Adds spacing between images */
            margin-top: 15%;
            height: auto; /* Let it adjust based on content */
        }

        .Brands img {
            width: 80%; /* Make images take 80% of the container width */
            height: 300px; /* Set a fixed height */
            object-fit: cover; /* Ensures images fill the height without stretching */
            border-radius: 10px; /* Optional: Adds rounded corners */
        }

        .Product_list {
            width: 90%;
            padding-left: 40px; /* Moves content a bit from the left */
            margin-top: 15%;
            margin-bottom: 15%;
        }

        .Product_list h3 {
            margin-bottom: 10px; /* Adds space below the heading */
        }

        .Product_list li {
            line-height: 3.0; /* Increases spacing between list items */
            cursor: pointer;
            font-size: 14px;
            box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            height: 70px;
            list-style-type: none; /* Removes default bullet points (optional) */
        }

        .Product_list li i {
            color: silver;
        }

    

        .video{
            width: 90%;
            margin: auto;
            height: 300px;
        }

        .Product_list button{
           width: 30%;
           height: 45px;
           margin-top: 15px;
           background-color: #F40009;
           margin-left: 25%;
           border-radius: 5%;
           cursor:pointer;
           font-size: 13px;
           color: white;
           justify-content: center; /* Centers horizontally */
           align-items: center; /* Centers vertically */
        }

       .hero_section_2{
        margin-top: 5%;
        text-align: center;
        border: 1px solid grey;
        width: 75%;
        margin-left: auto;
        margin-right: auto;
        border-radius: 10px;
        }


         .hero_section_2 h3{
            padding-top: 10px;
            font-size: 18px;
         }

         .hero_section_2 i{
            justify-content: center; /* Centers horizontally */
            align-items: center; /* Centers vertically */
         }

         .hero_section_2 p{
            padding-top: 25px;
            font-size: 13px;
            width: 80%;
            margin: auto;
         }

         .hero_section_2 button{
           width: 30%;
           height: 45px;
           margin-top: 15px;
           background-color: #F40009;
           font-size: 13px;
           color: white;
           cursor: pointer;
           justify-content: center; /* Centers horizontally */
           align-items: center; /* Centers vertically */

         }


    .praise-section {
        background: #f8f8f8;
        padding: 20px;
        text-align: center;
        border-radius: 10px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        margin: 20px;
    }

    .praise-text h2 {
        font-size: 22px;
        margin-bottom: 10px;
        color: #333;
    }

    .praise-text p {
        font-size: 16px;
        color: #555;
        line-height: 1.6;
    }

    .contact-info {
        margin-top: 15px;
    }

    .contact-info h3 {
        font-size: 18px;
        margin-bottom: 8px;
        color: #111;
    }

    .contact-info p {
        font-size: 16px;
        color: #444;
        margin: 5px 0;
    }

    .contact-info i {
        color: black;
        margin-right: 8px;
    }


    .discount_button {
    display: block;
    width: 40%;
    margin: 15px auto 0; /* centers it horizontally */
    padding: 12px 0;
    text-align: center;
    background-color: #c92026;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.discount_button:hover {
    background-color: #a4171c;
    transform: scale(1.03);
}


    
    .footer {
        background: #111;
        color: #fff;
        padding: 40px 20px;
        text-align: center;
        margin-top: 15%;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-logo h2 {
        font-size: 24px;
        font-weight: bold;
    }

    .footer-links {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-links li {
        display: inline;
    }

    .footer-links a {
        text-decoration: none;
        color: #ccc;
        font-size: 16px;
        transition: 0.3s;
    }

    .footer-links a:hover {
        color: #fff;
    }

    .footer-social a {
        color: #ccc;
        font-size: 20px;
        margin: 0 10px;
        transition: 0.3s;
    }

    .footer-social a:hover {
        color: #fff;
    }

    .footer-bottom {
        margin-top: 20px;
        font-size: 14px;
        color: #aaa;
    }

    /* Responsive Design */
    @media (min-width: 768px) {

        .footer-container {
            flex-direction: row;
            justify-content: space-between;
            max-width: 1200px;
            margin: auto;
            text-align: left;
        }

        .footer-links {
            justify-content: flex-start;
        }

        .footer-social {
            margin-left: auto;
        }
    }


  /* Responsive Design */
    @media (max-width: 768px) {
        .nav {
            display: none;
        }

        .menu-toggle {
            display: block;
        }

        .nav.active {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 60px;
            left: 0;
            width: 100%;
            background: #111;
            padding: 10px 0;
        }

        .nav-links {
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

    }


@media screen and (min-width: 768px) {

    .header {
        padding: 20px 50px;
    }

    .logo {
        font-size: 28px;
    }

    .nav-links {
        display: flex;
        gap: 30px;
    }

    .nav-links a {
        font-size: 18px;
    }

    .slider_Container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 95%; /* Adds margin on both ends */
        margin: 10px auto 0; /* Only affects desktop */
    }

    .slider {
        width: 65%;
        height: 550px; /* Adjust height if needed */
        margin: 0; /* Remove any unwanted margins */
    }

    .Mini_image {
        border:1px solid grey;
        display: flex; /* Now visible on desktop */
        width: 35%;
        height: 550px;
        background-color: #f1f1f1; /* Placeholder background */
        justify-content: center;
        align-items: center;
        position: relative;
        margin-left: 1%;
    }

    .Mini_image img{
        height: 100%;
        width: 100%;
    }




 .slide img {
        width: 100%;
        height: 100%;
    }

    .slide-text {
            position: absolute;
            width: 60%;
            bottom: 90px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 10px;
            border-radius: 5px;
        }


    .hero_section {
        margin-top: 5%;
        text-align: center;
        width: 50%;
        margin-left: auto;
        margin-right: auto;


    }

    .hero_section h3 {
        font-size: 28px;
    }

    .hero_section p {
        font-size: 18px;
        width: 60%;
    }

    .hero_section button {
        width: 20%;
        height: 50px;
        font-size: 16px;
    }

    .Promo_section {
        display: none;
    }

    .Service_section {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 150px;
        margin-top: 3%;     

    }

    .service_box {
        width: 300px;
        padding: 30px;
    }

    .Brands {
        flex-direction: row;
        justify-content: space-around;
    }

    .Brands img {
        width: 30%;
        height: 400px;
    }

    

    .video{
            width: 60%;
            margin: auto;
            height: 500px;
        }

    .hero_section_2{
        margin-top: 5%;
        text-align: center;
        border: 1px solid grey;
        width: 40%;
        margin-left: auto;
        margin-right: auto;
        }

     .hero_section_2 h3 {
        font-size: 28px;
    }

    .hero_section_2 p {
        font-size: 18px;
        width: 60%;
    }

    .hero_section_2 button {
        width: 20%;
        height: 50px;
        font-size: 16px;
    }

    .Product_list {
            width: 100%;
            margin-bottom: 10%;
        }

    .Product_list ul {
        display: flex;
        justify-content: flex-start;
        gap: 15px;
        flex-wrap: wrap; /* Allow items to wrap to the next line */
        padding: 0;
        list-style: none;
    }

    .Product_list li {
        background: #fff;
        padding: 10px 15px;
        border-radius: 5px;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease-in-out;
        font-size: 16px;
        display: inline-block;
        white-space: nowrap;  /* Ensure text stays in one line */
        cursor: pointer;
        flex: 1 1 180px; /* Items will have a base width but can grow/shrink */
    }

    .Product_list li:hover {
        background: #007bff;
        color: white;
    }

    .Product_list button {
        width: 15%;

        display: block;
        margin: 15px auto;
        background: #007bff;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        font-size: 16px;
        cursor: pointer;
        transition: background 0.3s;
    }

    .Product_list button:hover {
        background: #0056b3;
    }


    .praise-section {
        background: #f8f8f8;
        padding: 20px;
        text-align: center;
        border-radius: 10px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        margin: 20px;
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }
 .discount_button {
    display: block;
    width: 40%;
    height: 70px;
    font-size: 23px;
}


    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }


    


    
}


 
