body {
    margin: 0;
    font-family: 'Mukta', sans-serif;
    background-color: #efefef;
    color: #fff;
}


.container {
    padding-left: 30px;
    padding-right: 30px;
}


.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #820017;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 200px; /* Set a more reasonable width */
    height: auto; /* Maintain aspect ratio */
    margin-right: 10px;
}

.logo span {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.navbar {
    display: flex;
}

.navbar ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.navbar li {
    margin: 0 15px;
}

.navbar a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    position: relative;
}

.navbar a:hover::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: green;
    position: absolute;
    bottom: -4px;
    left: 0;
}

.mobile-menu {
    display: none;
}

.menu-toggle {
    font-size: 24px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

.hidden {
    display: none;
}

@media (max-width: 768px) {
    .navbar {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #000;
    }

    .navbar.active {
        display: flex;
    }

    .navbar ul {
        flex-direction: column;
        padding: 0;
    }

    .navbar li {
        margin: 10px 0;
    }

    .mobile-menu {
        display: block;
    }
}


/* footer */

.footer-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    
    flex-wrap: wrap;
    margin: 0 40px; /* Set margin from both sides */
}

.footer-column {
    flex: 1;
    margin: 0 10px;
    min-width: 200px;
}

.footer-column h3 {
    margin-bottom: 10px;
}

.footer-column p {
    margin: 0;
}



/* Responsive styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        margin: 10px 0;
        text-align: center;
    }
}

/* copyright footer----------------------- */
.protech_copyright {
    background: linear-gradient(90deg, #a11e1e, #d42626); /* Gradient for a modern look */
    color: #fff; /* White text for contrast */
    font-family: 'Arial', sans-serif;
    padding: 15px 20px;
    font-size: 14px;
}

.protech_footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap; /* Ensures responsiveness on smaller screens */
}

.left-side {
    text-align: left;
    flex: 1;
}

.right-side {
    text-align: right;
    flex: 1;
}

.right-side a {
    color: #fff; /* White link text */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, text-shadow 0.3s ease; /* Smooth hover effect */
}

.right-side a:hover {
    color: #ffcccb; /* Subtle hover color change */
    text-shadow: 0 0 5px #fff; /* Glow effect on hover */
}

@media (max-width: 768px) {
    .protech_footer-container {
        flex-direction: column;
        text-align: center; /* Center align for smaller screens */
    }

    .left-side,
    .right-side {
        margin: 5px 0;
    }
}



/* header category module start------------------------- */


  

    /* Styling for the header container */
    .header-category {
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Poppins', sans-serif; /* Modern font */
        font-size: 24px; /* Slightly larger font size */
        font-weight: 600; /* Make the text bold */
        color: #333; /* Neutral text color for contrast */
        margin: 20px 0; /* Vertical spacing */
        gap: 10px;
    }

    /* Decorative line */
    .line {
        flex-grow: 1;
        height: 3px;
        background-color: #3498db; /* Vibrant blue for modern feel */
       
        border-radius: 2px; /* Rounded edges for the line */
    }

    /* Styling for the header text */
    .header-text {
        white-space: nowrap;
        color: #2c3e50; /* Darker shade for text contrast */
        text-transform: uppercase; /* Add emphasis with uppercase */
        letter-spacing: 2px; /* Spacing between letters */
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .header-category {
            font-size: 20px; /* Reduce font size for smaller screens */
        }

        .line {
            margin: 0 0px; /* Narrower spacing on smaller screens */
        }
    }


    /* header category module end------------------------- */





    /* header category----------white -------------color--------start----- */

    /* Styling for the header container */
.protech_header-category {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif; /* Modern font */
    font-size: 24px; /* Slightly larger font size */
    font-weight: 600; /* Make the text bold */
    color: white; /* Text color set to white */
    margin: 20px 0; /* Vertical spacing */
    gap: 10px;
}

/* Decorative line */
.protech_line {
    flex-grow: 1;
    height: 3px;
    background-color: white; /* Line color set to white */
    border-radius: 2px; /* Rounded edges for the line */
}

/* Styling for the header text */
.protech_header-text {
    white-space: nowrap;
    color: white; /* Text color set to white */
    text-transform: uppercase; /* Add emphasis with uppercase */
    letter-spacing: 2px; /* Spacing between letters */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .protech_header-category {
        font-size: 20px; /* Reduce font size for smaller screens */
    }

    .protech_line {
        margin: 0 10px; /* Narrower spacing on smaller screens */
    }
}

/* header category module end------------------------- */


        /* header category----------white -------------color--end----------- */