
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

body {
    font-family: 'Arial', sans-serif; 
    line-height: 1.6;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
}

.container {
    width: 90%;
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 20px 0;
}

a {
    color: #007bff; 
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%; 
    height: auto;
    display: block; 
}

h1, h2, h3 {
    margin-bottom: 1rem;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
}


header {
    background-color: #f8f9fa; 
    padding: 15px 0;
    border-bottom: 1px solid #e7e7e7;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; 
}

header .logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #333;
}
header .logo img {
    max-height: 50px; 
    width: auto;      
    display: block;  
}

header nav {
    display: block;
}
header nav ul {
    list-style: none;
    display: flex; 
}
header nav ul li {
    margin-left: 20px; 
    margin-bottom: 0; 
}

.menu-toggle {
    display: none; 
    font-size: 1.8em; 
    background: none;
    border: none;
    color: #333; 
    cursor: pointer;
    padding: 5px; 
    line-height: 1;
}

header nav ul li a {
    color: #333;
    font-weight: bold;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

header nav ul li a:hover,
header nav ul li a.active {
    color: #007bff;
    text-decoration: none;
}

.menu-toggle {
    display: none; 
    font-size: 1.5em;
    background: none;
    border: none;
    cursor: pointer;
}


main {
    flex-grow: 1; 
    padding: 30px 0;
}


footer {
    background-color: #343a40; 
    color: #f8f9fa; 
    text-align: center;
    padding: 20px 0;
    margin-top: auto; 
}

.social-link {
    display: inline-block; 
    vertical-align: middle; 
    margin-left: 5px; 
    line-height: 1; 
}

.social-link:hover {
    opacity: 0.75; 
    text-decoration: none; 
}

.social-icon {
    width: 24px;  
    height: 24px; 
    vertical-align: middle; 
}


.hero {
    background-image: url('../images/hero-image.png');

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;

    color: #fff;
    text-align: center;
    padding: 100px 20px;
    margin-bottom: 30px;

    background-color: #333; 
     text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}
.hero h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #fff; 
}
.hero p {
    font-size: 1.2em;
    margin-bottom: 25px;
    color: #fff; 
}
.cta-button {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 12px 25px;
    font-size: 1.1em;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.cta-button:hover {
    background-color: #0056b3;
    text-decoration: none;
}

.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; 
    gap: 20px; 
    margin-top: 40px;
}

.feature-item {
    flex-basis: calc(33% - 20px); 
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 5px;
}
.feature-item h3 {
    margin-top: 10px;
}

.product-item-fullwidth {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.product-item-fullwidth:hover {
     box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-item-fullwidth .product-image {
    display: block; 
    width: auto; 
    max-width: 80%; 
    height: auto; 
    margin-left: auto;  
    margin-right: auto; 
    margin-top: 40px;
    margin-bottom: 20px; 
}

.product-item-fullwidth .content {
    padding: 25px;
    text-align: center;
}

.product-actions {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 15px; 
    margin-top: 20px; 
    border-top: 1px solid #eee; 
    padding-top: 20px; 
}

@media (max-width: 768px) {
    .product-item-fullwidth .product-image {
        max-width: 90%; 
    }
}


@media (max-width: 480px) {
    .product-item-fullwidth .product-image {
        max-width: 95%; 
    }

    .product-item-fullwidth .content {
        padding: 20px;
    }
    .product-item-fullwidth .content h3 {
        font-size: 1.4em;
    }
    .product-actions {
        gap: 10px; 
    }
    .action-button {
        padding: 8px 15px;
        font-size: 0.9em;
    }
    .button-icon {
        width: 16px;
        height: 16px;
        margin-right: 6px;
    }
}

.product-item-fullwidth .content h3 {
    margin-top: 0;
    margin-bottom: 15px; 
    color: #0056b3; 
    font-size: 1.6em;
}

.product-item-fullwidth .content p {
    margin-bottom: 20px; 
}

.product-actions {
    display: flex; 
    flex-wrap: wrap; 
    gap: 15px; 
    margin-top: 20px; 
    border-top: 1px solid #eee; 
    padding-top: 20px; 
}

.action-button {
    display: inline-flex; 
    align-items: center; 
    background-color: #007bff; 
    color: #fff;
    padding: 10px 18px; 
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.95em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.action-button:hover {
    background-color: #0056b3; 
    text-decoration: none;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.button-icon {
    width: 24px; 
    height: 24px; 
    margin-right: 8px; 
}

@media (max-width: 480px) {
    .product-item-fullwidth .content {
        padding: 20px;
    }
    .product-item-fullwidth .content h3 {
        font-size: 1.4em;
    }
    .product-actions {
        gap: 10px; 
    }
    .action-button {
        padding: 8px 15px;
        font-size: 0.9em;
    }
    .button-icon {
        width: 16px;
        height: 16px;
        margin-right: 6px;
    }
}

.product-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    height: 200px; 
    object-fit: cover; 
}

.product-card .content {
    padding: 20px;
}

.product-card h3 {
    margin-top: 0;
    color: #007bff;
}

.job-listing {
    border: 1px solid #eee;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #fdfdfd;
    border-radius: 5px;
}

.job-listing h3 {
    margin-top: 0;
    margin-bottom: 5px;
}

.job-listing .location {
    color: #666;
    font-style: italic;
    margin-bottom: 10px;
}

.apply-button {
    display: inline-block;
    background-color: #28a745;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 10px;
}
.apply-button:hover {
    background-color: #218838;
    text-decoration: none;
}

.about-section, .contact-section {
    margin-bottom: 40px;
}

.contact-info ul {
    list-style: none;
    padding-left: 0;
}
.contact-info ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.contact-info ul li strong {
    min-width: 80px; 
    display: inline-block;
}

.contact-link-with-icon {
    display: inline-flex; 
    align-items: center;  
    text-decoration: none; 
    color: #007bff; 
}

.contact-link-with-icon:hover {
    text-decoration: underline; 
}


.contact-list-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px; 
    margin-left: 8px; 
    vertical-align: middle; 
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.contact-form button {
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}
.contact-form button:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    header .container {
        align-items: center; 
    }

    .menu-toggle {
        display: block;
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%); 
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
    }

    .menu-toggle img {
        display: block;
        width: 30px;
        height: auto;
    }

    header nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #f8f9fa;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        padding-top: 10px;
        padding-bottom: 10px;
        z-index: 1000;
    }

    header nav.active {
        display: block;
    }

    header nav ul {
        flex-direction: column;
        width: 100%;
        padding-left: 0; 
    }

    header nav ul li {
        margin-left: 0;
        margin-bottom: 0;
        text-align: center;
        border-bottom: 1px solid #eee;
    }
    header nav ul li:last-child {
        border-bottom: none;
    }

     header nav ul li a {
        display: block; 
        padding: 12px 15px;
        color: #333;
    }
    header nav ul li a:hover,
    header nav ul li a.active {
        background-color: #e9ecef; 
        color: #007bff;
        text-decoration: none;
    }

    .hero h1 {
        font-size: 2.2em;
    }
    .hero p {
        font-size: 1em;
    }

    .features {
        flex-direction: column;
        gap: 15px;
    }
    .feature-item {
        flex-basis: 100%;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .contact-info ul li {
        flex-direction: column;
        align-items: flex-start;
    }
    .contact-info ul li strong {
        margin-bottom: 3px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%; 
    }
    .hero {
        padding: 60px 15px;
    }
    .hero h1 {
        font-size: 1.8em;
    }
    .cta-button {
        padding: 10px 20px;
        font-size: 1em;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }

}