body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

header {
    background: linear-gradient(135deg, #111, #ff6600);
    color: white;
    text-align: center;
    padding: 50px 20px;
}

header h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
}

nav {
    background-color: #222;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 15px 0;
    display: block;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff6600;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

section {
    margin-bottom: 60px;
}

h2 {
    font-size: 2em;
    color: #ff6600;
    border-bottom: 3px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.about-section {
    text-align: justify;
}

.ourservices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.ourservices-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.ourservices-card:hover {
    transform: translateY(-5px);
}

.ourservices-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ourservices-card h3 {
    margin: 15px;
    font-size: 1.2em;
    text-align: center;
}

.ourservices-card p {
    margin: 15px;
    font-size: 1.2em;
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    margin: 15px;
    font-size: 1.2em;
    text-align: center;
}

.product-card p {
    margin: 15px;
    font-size: 1.2em;
    text-align: center;
}

.brand-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.brand-logos img {
    height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.brand-logos img:hover {
    filter: grayscale(0%);
}

.customers-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.customers-logos img {
    height: 50px;
    object-fit: contain;
    transition: filter 0.3s;
}


/*================================================
Contact Map Area
=================================================*/
.contact-map .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.contact-map .container-fluid iframe {
  width: 100%;
  height: 500px;
  margin-bottom: -6px;
  border-top: none;
}

footer {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}


