* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: dynaPuff;
}

nav {
    display: flex;
    padding: 0px 30px;
    height: 60px;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    color: white;
}

.linklist {
    display: flex;
    list-style: none;
}

.link_item {
    padding: 0px 20px;
    display: inline-block;

}

.link_item a {
    text-decoration: none;
    color: white;
}

.link_item a:hover {
    color: #ff884b;
}

.icons {
    display: flex;
    align-items: center;

}

.search {
    padding-left: 30px;
}

.login_btn {
    text-decoration: none;
    color: white;

    padding: 5px 10px;
    border-radius: 5px;
}

.login_btn:hover {
    color: #ff884b;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 80px;
    gap: 40px;
    background-color: rgb(252, 239, 231);
}

.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #555;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.contact_btn {
    padding: 12px 24px;
    text-decoration: none;
    background-color: #ff884b;
    color: white;

}

.contact_btn:hover {
    background-color: #c96328;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    height: 300px;
}

.product_section {
    margin-bottom: 50px;
}

.products {
    margin-top: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.products h2 {
    font-size: 1.8rem;
    text-transform: uppercase;

    margin-bottom: 10px;
}

.products p {
    color: #666;
    font-size: 0.95rem;
    max-width: 600px;
    line-height: 1.6;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 250px);
    gap: 30px;
    margin-top: 30px;
    justify-content: center;
    align-items: center;
}

.product-card {
    background-color: #f1f7f9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;

}

.product-card img {
    max-width: 100%;
    height: 160px;
    object-fit: contain;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-card p {
    font-weight: bold;
    color: #444;
    margin-bottom: 10px;
}

.product-card a {
    text-decoration: none;
    color: #67c6cc;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.product-card a:hover {
    color: #49a3a8;
}

.about {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 80px;

    background-color: rgb(248, 247, 247);
}

.about_btn {
    padding: 12px 24px;
    text-decoration: none;
    background-color: #65c3c8;
    color: white;

}

.about_btn:hover {
    background-color: #368c91;
}

.product-blog {
    background-color: #f1f7f9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;

}

.product-blog img {
    max-width: 100%;
    height: 160px;
    object-fit: contain;
    margin-bottom: 15px;
}

.product-blog h3 {
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-blog p {
    text-align: left;
    font-size: small;
    color: #444;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-blog a {
    text-decoration: none;
    color: #67c6cc;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.product-blog a:hover {
    color: #49a3a8;
}



.contact_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 40px;
    background-color: #f9f9f9;
}

.form-box {
    flex: 1;
    max-width: 400px;
}

.form-box h2 {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-input:focus {
    border-color: #007bff;
    outline: none;
}

.send-btn {
    background-color: #5bc0de;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.map-box {
    flex: 1;
    max-width: 500px;
    min-height: 300px;
}

iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

.footer {
    background-color: #111;
    color: white;
    padding: 40px 20px 20px;
    text-align: center;
}

.footer-top {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}

.footer-top div {
    margin: 10px;
}

.footer-main {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 30px 0;
}

.footer-main div {
    margin: 10px;
    min-width: 200px;
}

.footer h4 {
    margin-bottom: 15px;
    font-size: 16px;
    text-align: center;
}

.footer a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin: 5px 0;
    text-align: left;
}

.footer a:hover {
    color: white;
}

.newsletter input[type="email"] {
    width: 100%;
    padding: 10px;

    border: none;
}

.newsletter button {

    background-color: #5bc0de;
    border: none;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
}

.newsletter button:hover {
    background-color: #368c91;
}

.input_btn {
    display: flex;
    align-items: center;
}

.social-icons {
    margin-top: 15px;
    text-align: left;
}

.social-icons i {
    margin: 0 5px;
    font-size: 20px;
    cursor: pointer;
    color: #ccc;
}

.social-icons i:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 10px;
    font-size: 14px;
    color: #aaa;
}

.img_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.img_container img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}