
body {
    font-family: Arial, sans-serif;
    margin: 0; /* Reset margin */
    padding: 0; /* Reset padding */
    background-color: #000;
    color: #fff;
        min-width: 300px;

}

.header {
    background-color: #000;
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.hero {
    background-image: url('image/gearBackground.gif');
    background-size: cover;
    background-position: center;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero h1 {
    font-size: 3em;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #FCC211;
}
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 50px;
}
/* style.css */

/* Previous styles */

.feature {
    width: 300px;
    padding: 20px;
    margin: 20px;
    background-color: #222;
    text-align: center;
    border-radius: 10px;
    transition: height 0.3s ease, transform 0.3s ease;
    overflow: hidden;
    height: 300px; /* Initial height */
    z-index: 1;
}

.feature:hover {
    height: 500px; /* Expanded height */
    transform: translateY(0%);
}

/* Rest of the styles */

.feature img {
    width: 100%;
    border-radius: 8px;
}
.feature h2 {
    color: #ff0;
}




.container2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.features2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 50px;
}
/* style.css */

/* Previous styles */

.feature2 {
    width: 300px;
    padding: 20px;
    margin: 20px;
    background-color: #222;
    text-align: center;
    border-radius: 10px;
    transition: height 0.3s ease, transform 0.3s ease;
    overflow: hidden;
    height: 300px; /* Initial height */
    z-index: 2;
}

.feature2:hover {
    height: 500px; /* Expanded height */
    transform: translateY(0%);
    
}

.feature2 img {
    width: 100%;
    border-radius: 8px;
}
.feature2 h2 {
    color: #ff0;
}

#logo{
    height: 100px;
    width: auto;
}
.head1{
    display: flex;
    padding-left: 10px;
}


/* Resetting default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Styles for the header */
header {
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333; /* Change to your desired background color */
    color: white;
    padding: 10px 0; /* Adjust padding as needed */
    z-index: 1000; /* Ensure header stays on top of other content */
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

#logo {
    width: 200px; /* Adjust to your logo size */
    height: auto;
}
.container a{
    color: white;
    text-decoration: none; 
    font-size: 28px;
}

/* Navigation styles */
.navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center; /* Center align the items */
}
#hy1{
    background-image:url("image/arm.png");
    height: 24px;
    width: 32px;
    background-size: cover; 
    background-position: center;
    margin-left: 3px;
}
#en1{
    background-image:url("image/en.png");
    height: 24px;
    width: 32px;
    background-size: cover; 
    background-position: center;
}
.navigation ul li {
    display: flex; /* Stack items vertically by default */
    flex-direction: row; /* Arrange items side by side on larger screens */

    margin-bottom: 10px; /* Add space between stacked items */
}
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show menu toggle button on smaller screens */
        position: fixed;
        top: 20px;
        right: 20px;
        background-color: transparent;
        border: none;
        font-size: 50px;
        color: white;
        cursor: pointer;
        z-index: 999; /* Ensure it's above other content */
    }
   
    /* Hide navigation by default on smaller screens */
    .navigation {
        display: none;
    }

    /* Display navigation when menu is open */
    .menu-open .navigation {
        display: flex;
        position: fixed;
        top: 0; /* Adjust to move the panel to the top */
        right: 0;
        background-color: #333;
        height: 100%;
        width: 250px;
    }

    .navigation ul {
        position: absolute; /* Position the navigation absolutely */
        top: 0; /* Align the navigation to the top */
        right: 0; /* Align the navigation to the right */
        transform: translate(-50%, 50%); /* Adjust the position for better alignment */
        color: white; /* Set text color to white */
        text-decoration: none; /* Remove underline */
    }

    .navigation ul li {
        margin-bottom: 10px; /* Add space between stacked items */
    }

    
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none; /* Hide the menu toggle button */
    }
    .navigation ul {
        display: flex;
    flex-direction: row; /* Arrange items side by side on larger screens */
    }

    .navigation ul li {
        margin-right: 20px; /* Add space between side-by-side items */
    }

    .navigation ul li:last-child {
        margin-right: 0; /* Remove margin for the last item */
    }
}
.prodbutton{
    background-color: rgb(255, 255, 0);
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: rgb(255, 255, 0);
    border-radius: 5px;
    border-style: none;
    font-size: 18px;
    width: 80px;
    display: none; /* Show the button by default */
}
.proda{
    color: #333;
    text-decoration: none; 
    font-style: bold;
}
.proddiv{
    position:fixed; /* Set container position to relative */
    width: auto;
    height: 24px;
    margin-left: 90%;
    bottom: 15px;
}


.footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    z-index: initial;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info .phone,
.contact-info .email {
    margin-bottom: 10px;
}

.social-media a {
    color: #fff;
    font-size: 20px;
    margin: 0 10px;
}

.social-media a:hover {
    color: #ffd700; /* Change color on hover */
}

.footer .copyright {
    margin-top: 20px;
    font-size: 14px;
}
#phonea{
    text-decoration: none;
    color: white;
}
#maila{
    text-decoration: none;
    color: white;
}

.feature:hover .prodbutton,
.feature2:hover .prodbutton {
    display: block;
}