* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.logo img {
    height: 60px;    /* Adjust this value */
    width: auto;
    object-fit: contain;
}

.header {
    background: #fff;
    border-bottom: 1px solid #eee;
    width: 100%;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-menu li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

/* HEADER */
.logo img {
    height: 60px;    /* Adjust this value */
    width: auto;
    object-fit: contain;
}

.header {
    background: #fff;
    border-bottom: 1px solid #eee;
    width: 100%;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-menu li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

/* BANNER */
/* SLIDESHOW BANNER */
.banner-slider {
    width: 100%;
    height: 80vh;        /* Banner height – change to 100vh for full screen */
    position: relative;
    overflow: hidden;
    margin-bottom: 50px; /* space before About Us */
}

.banner-slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.banner-slider .slide.active {
    opacity: 1;
}

.banner-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    padding: 10px 15px;
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
    user-select: none;
}

.prev { left: 20px; }
.next { right: 20px; }

.arrow:hover {
    background: rgba(0,0,0,0.7);
}


/* ABOUT */
/* ABOUT */
.about-section {
    display: flex;
    gap: 10px;
    padding: 60px 0;
    align-items: center;   /* keep image and text vertically aligned */
}

.about-img {
    flex: 1;               /* 50% width */
}

.about-img img {
    width: 90%;
    height: 320px;         /* medium size image */
    object-fit: cover;     /* keeps image looking perfect */
}

.about-text {
    flex: 1;               /* 50% width */
}

.about-text h2 {
    color: #d71920;
    margin-bottom: 15px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.btn {
    padding: 10px 20px;
    background: #333;
    color: #fff;
    text-decoration: none;
}

.btn:hover {
    background: #d71920;
}

/* INDUSTRY */
.industry-section {
    padding: 50px 0;
    text-align: center;
}

.industry-section h2 {
    color: #d71920;
    margin-bottom: 10px;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.industry-box {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 6px #000;
    cursor: pointer;
}

/* PRODUCTS */
.products-section {
    padding: 40px 0;
    text-align: center;
}

.products-section h2 {
    color: #d71920;
    margin-bottom: 30px;
}

.products-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
}

.products-row img {
    width: 200px;
    height: 150px;
    border-radius: 5px;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.slider-track {
    display: flex;
    gap: 20px;
    animation: slide 18s linear infinite;
}

.slider-track img {
    width: 200px;
    height: 150px;
    border-radius: 5px;
    cursor: grab;
}

/* Auto sliding */
@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pause on hover */
.slider-container:hover .slider-track {
    animation-play-state: paused;
}


/* CLIENTS */
.clients-section {
    padding: 40px 0;
    text-align: center;
}

.clients-section h2 {
    color: #d71920;
    margin-bottom: 25px;
}

.clients-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.clients-row img {
    width: 160px;
    height: 80px;
    object-fit: contain;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }
}
.inner-page h2 {
    text-align: center;
    color: #d71920;      /* same heading color */
    margin-bottom: 30px; /* same spacing as previous page */
    font-size: 32px;     /* optional: same size */
    font-weight: bold;
}
.products-section {
    padding: 60px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    text-align: center;
}

.product-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border: 1px solid #ccc;
}

.product-title {
    background: #001f3f;   /* Dark navy like your sample */
    color: #fff;
    padding: 12px 0;
    font-size: 18px;
    margin-top: 10px;
    font-weight: 600;
}
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
.quality-section {
    padding: 60px 0;
}

.quality-heading {
    text-align: center;
    background: #d71920;
    color: #fff;
    padding: 10px 30px;
    display: inline-block;
    margin: 0 auto 40px;
    font-size: 32px;
    font-weight: bold;
}

.quality-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.quality-text {
    width: 60%;
    font-size: 17px;
    line-height: 1.7;
}

.quality-text ul li {
    margin-bottom: 10px;
}

.quality-image {
    width: 35%;
}

.quality-image img {
    width: 100%;
    object-fit: contain;
}
/* PAGE WRAPPER SPACING LIKE OTHER PAGES */
.inner-page {
    padding: 60px 0;     /* same top/bottom space as other pages */
}

/* PAGE TITLE EXACTLY LIKE OTHER PAGES */
.page-title {
    text-align: center;
    background: #d71920;
    color: #fff;
    padding: 10px 40px;
    font-size: 32px;
    margin: 0 auto 40px;       /* centers heading and adds space below */
    display: inline-block;
}
.client-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #ddd;
}

.client-grid a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    height: 140px;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    background: #fff;
}

.client-grid a:nth-child(4n) {
    border-right: none;
}

.client-grid a:last-child,
.client-grid a:nth-last-child(2),
.client-grid a:nth-last-child(3),
.client-grid a:nth-last-child(4) {
    border-bottom: none;
}

.client-grid img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}
/* Same spacing as other pages */
.contact-page {
    padding: 60px 0;
}

/* Two column layout */
.contact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* Map box same size */
.map-box {
    width: 60%;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
    border-radius: 4px;
    overflow: hidden;
}

/* Right info box */
.contact-box {
    width: 40%;
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
    text-align: center;
    font-size: 17px;
    line-height: 1.8;
}

.contact-box p {
    margin-bottom: 8px;
}

/* Icon above text */
/* Contact Page Icons (Smaller Size) */
.contact-box img.icon {
    width: 40px;          /* medium size */
    height: 40px;         /* force same height */
    object-fit: contain;  /* keep image proportion */
    display: block;
    margin: 10px auto;
}


/* Keep center heading style consistent */
.page-title {
    text-align: center;
    background: #d71920;
    color: #fff;
    padding: 10px 40px;
    font-size: 32px;
    margin: 0 auto 40px;
    display: inline-block;
}
/* Full width footer area */
.footer {
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    padding: 50px 0 20px;
}

/* Centered content inside */
.footer-inner {
    width: 90%;
    max-width: 1300px; /* Adjust for side margin control */
    margin: auto;      /* Centers content */
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

/* Each column */
.footer-column {
    flex: 1;
}

.footer-column h3 {
    color: #ff3b3f;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: #ff3b3f;
}

/* Bottom text */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
}

.synergy-link {
    color: #ff3b3f;
    text-decoration: none;
    font-weight: bold;
}

.synergy-link:hover {
    text-decoration: underline;
}


/* Header Menu Links */
.header ul li a {
    color: #000;                  /* normal color */
    text-decoration: none;
    padding: 12px 18px;
    display: inline-block;
    transition: 0.3s;
}

/* Hover → text turns red */
.header ul li a:hover {
    color: red;
}

/* Active/Clicked → stays red */
.header ul li a.active {
    color: red;
}
