@import url('https://fonts.googleapis.com/css?family=Roboto:700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
}

header {
    background-color: #f1f1f1;
    padding: 0px 20px;
    
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    width: 80px;
    height: auto;
}

.navbar ul {
    list-style: none;
    display: flex;
    margin-right: 20px;
}

.navbar ul li {
    margin: 0 10px;
}

.navbar ul li a {
    font-size: 18px;
    font-weight: bold;
    color: rgb(11, 65, 96);
    text-decoration: none;
    padding: 5px 10px;
    transition: background 0.3s;
}


.navbar ul li a:hover {
    background: rgb(112, 203, 255);
    border-radius: 2px;
}

.wrapper {
    background: url(background.webp) no-repeat center center/cover;
    height: 120vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 20px; /* Add padding for alignment */
    padding-top: 5px; /* To account for fixed header */
}

.center h1,
.center h2 {
    color: rgb(11, 65, 96);
    font-size: 3.5em;
    font-weight:900;
    text-align: center;
    align-items: center;
    
}

.center .buttons {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.buttons a {
    text-decoration: none;
}

.buttons button {
    height: 50px;
    width: 150px;
    font-size: 18px;
    font-weight: 600;
    color: #ffb3b3;
    background: rgb(11, 65, 96);
    border: 1px solid rgb(11, 65, 96);
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
}

.buttons button:hover {
    background: rgb(112, 203, 255);
}

.mobile-menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

@media (max-width: 768px) {
    .navbar ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: #f1f1f1;
        width: 200px;
    }

    .navbar ul.show {
        display: flex;
    }

    .mobile-menu-icon {
        display: block;
    }

    .wrapper {
        padding-top: 60px; /* Adjusted for smaller screen */
    }

    .center h1, .center h2 {
        font-size: 1.5em; /* Adjust font size for smaller screens */
    }

    .buttons button {
        width: 120px;
        font-size: 16px; /* Adjust button size for smaller screens */
    }
}


main {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

main h1 {
    color: #333;
    text-align: center;
    padding-bottom: 20px;
}

main h2 {
    color: #555;
}

main p {
    color: #666;
    line-height: 1.6;
}

main ul {
    color: #666;
    line-height: 1.6;
    list-style-type: square;
    padding-left: 20px;
}

footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    background-color: #333;
    color: #fff;
    font-size: 1.1em;
    border-top: 5px solid #ffa500;
}

.footer-left, .footer-right {
    width: 45%;
    box-sizing: border-box;
    padding: 20px;
}

.footer-right {
    padding-left: 0;
}

.footer-left h1, .footer-right h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.footer-left p, .footer-right p {
    font-size: 0.9em;
    margin-bottom: 10px;
    color: #ddd;
}

.footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    font-size: 0.8em;
}

.footer-bottom p {
    margin: 0;
}

.company {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
}

.company h1 {
    color: #333;
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: 700;
}

.company-history p {
    color: #666;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.images {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.images img {
    width: 48%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.hr_bottom, hr {
    border-top: 15px dotted rgb(112, 203, 255);
    border-bottom: none;
    border-right: none;
    border-left: none;
    height: 10px;
    width: 20%;
    margin: 0 auto;
    padding-bottom: 10px;
}


.product-section {
    background-color: lightblue;
    padding: 50px 30px;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.1);
    text-align: center;

}

.product-section h1 {
    text-align: left;
    margin-bottom: 50px;
    font-size: 2.5em;
    color: #333;
    text-decoration: underline;
}

.product-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.product-box {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 150px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-color: #ffa500;
}

.product-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-box img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

.product-box h3 {
    margin: 10px 0 0 0;
    font-size: 1.2em;
}

@media (max-width: 768px) {
    .wrapper .center h1, .wrapper .center h2 {
        font-size: 2em;
    }
    
    .navbar ul {
        float: none;
        text-align: center;
        margin: 0;
        padding: 0;
    }
    
    .navbar ul li {
        display: block;
        margin: 5px 0;
    }
    
    .navbar ul li a {
        font-size: 16px;
        padding: 10px 20px;
    }
    
    .buttons {
        flex-direction: column;
    }
    
    .buttons button {
        width: 200px;
        margin: 10px 0;
    }
    
    .footer-left, .footer-right {
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
    }
    
    .product-box {
        width: 45%;
    }
}

@media (max-width: 240px) {
    .navbar ul li a {
        font-size: 10px;
        padding: 5px 10px;
    }
    
    .buttons button {
        width: 60%;
        margin: 5px 0;
    }
    
    .product-box {
        width: 90%;
    }
    
    .footer-left h1, .footer-right h3 {
        font-size: 1.2em;
    }
}
