/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Header */
header {
    background-color: #ff6f00; /* Orange */
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin-bottom: 10px;
}

header nav ul {
    list-style: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}

header nav ul li a:hover {
    color: black;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('') no-repeat center center/cover;
    height: 400px;
    color: black;
    text-align: center;
    padding: 20px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: 60px 0;
    background-color: #fff;
}

.services h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #ff6f00;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #f4f4f4;
    width: 300px;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.service-card h3 {
    margin: 15px 0;
    color: #ff6f00;
}

.service-card p {
    font-size: 1rem;
}

/* Product Section */
.products {
    padding: 60px 0;
    background-color: #f2f2f2;
}

.products h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #ff6f00;
}

.product-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.product-card {
    background-color: #fff;
    width: 300px;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.product-card h3 {
    margin: 15px 0;
    color: #ff6f00;
}

.product-card p {
    font-size: 1rem;
}

.customers {
    padding: 60px 0;
    background-color: #fff;
    height: 450px;
}

.customers h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ff6f00;
    margin-bottom: 20px;
}

.customers p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 20px;
}


/* About Us Section */
.about {
    padding: 60px 0;
    background-color: #f2f2f2;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ff6f00;
    margin-bottom: 20px;
}

.about p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ff6f00;
    margin-bottom: 20px;
}

.contact p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact a {
    color: #ff6f00;
    text-decoration: none;
}

.contact a:hover {
    color: #ff9800;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

footer p {
    font-size: 1rem;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* Team Section */
.team {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.team h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #ff6f00;
}

.team-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-card {
    background-color: #fff;
    width: 300px;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0%;
}

.team-card h3 {
    margin: 15px 0;
    color: #ff6f00;
}

.team-card p {
    font-size: 1rem;
}

/* Catalog Section */
.catalog {
    padding: 60px 0;
    background-color: #fff;
}

.catalog h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #ff6f00;
}

.catalog-items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.catalog-item {
    background-color: #f4f4f4;
    width: 300px;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.catalog-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.catalog-item img {
    width: 150px;
    height: auto;

    border-radius: 0px;
}

.catalog-item h3 {
    margin: 15px 0;
    color: #ff6f00;
}

.catalog-item p {
    font-size: 1rem;
}
