body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-color: #000000;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1;
}

header nav {
    display: flex;
    gap: 25px;
}

header a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

header a:hover {
    color: #007BFF;
}

.home {
    position: relative;
    height: 70vh;
    background-image: url('back.jpg');
    background-size: cover;
    background-position: center;
    text-align: left;
    color: white;
    padding: 0 30px;
    display: flex;
    align-items: center;
}

.home-content {
    position: relative;
    left: 5%;
}

.home-content h1 {
    font-size: 2rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.home-content h2 {
    font-size: 8rem;
    margin: 10px 0 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

section {
    padding: 30px 30px;
}

/* Product Section Styles */
.product-section {
    text-align: center;
}

.product-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.product-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.product-item p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.location-section h2 {
    font-size: 2.5rem;
    text-align: left;
}

.location-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.address {
    flex: 1;
    text-align: left;
    font-size: 1.2rem;
}

.map {
    flex: 1;
}

.contact-form-section h2 {
    font-size: 2rem;
}

.form-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border: 2px solid black;
    padding: 32px 24px;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-container .form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-container .form-group label {
    margin-bottom: 5px;
    color: #717171;
    font-weight: 600;
    font-size: 12px;
}

.form-group input,.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    color: #fff;
    border: 1px solid #414141;
    box-sizing: border-box;
}

.form-submit-btn {
    align-self: center;
    color: #ffffff;
    font-weight: 600;
    width: 40%;
    background: #404040;
    padding: 12px 16px;
    border-radius: 6px;
}

.form-submit-btn:hover {
    background-color: #000000;
}

.footer {
    background-color: #000000;
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    font-size: 1rem;
}

.contact-info p {
    margin: 5px 0;
}

.contact-details {
    font-size: 1rem;
    text-align: right;
}

.contact-details p {
    margin: 5px 0;
}