*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family:'Poppins',sans-serif;
}
body{
    background:#ffffff;
    color:#333;
}
.active {
    color : rgb(226, 55, 55) !important;
}
/* ================= HEADER ================= */

header {
    width: 100%;
    background: #ffffff;
    padding: 35px 50px;   /* Increased header height */
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.05);
}
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}
.nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.logo {
    display: flex;
    align-items: center;
    margin-left: 35px;   /* move logo slightly right */
}

.logo img {
    width: 170px;   /* BIGGER LOGO */
    height: auto;
    object-fit: contain;
}
.logo span{
    font-size:20px;
    font-weight:600;
    color:#0a7c57;
}

/* NAVIGATION */
nav ul {
    display: flex;
    list-style: none;
    gap: 45px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
}

.menu{
    list-style:none;
    display:flex;
    gap:20px;
}
.menu li a{
    color:#333;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}
.menu li a:hover{
    color:#e63946;
}

.contact-btn {
    background: #e63946;
    color: white;
    padding: 15px 34px; /* slightly bigger */
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    margin-right: 45px; /* more spacing */
}
.banner-container {
    width: 92%;          /* reduces width — adjust to 90%, 85%, etc. */
    margin: 0 auto;      /* centers the banner */
}

.banner-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0px;  /* optional */
}


/* HERO */
.hero img{
    width:100%;
    height:auto;
    display:block;
}

/* SECTION */
.section{
    padding:60px 0;
    text-align:center;
}
.section h2{
    color:#e63946;
    font-size:28px;
    margin-bottom:20px;
}
.light-bg{
    background:#ecf3f7;
    text-align:left;
}
.section p{
    width:85%;
    margin:auto;
    line-height:1.7;
}
.list{
    margin-top:20px;
}
.list li{
    margin-bottom:8px;
}

/* PRODUCT TABLE */
.product-table{
    width:100%;
    border-collapse:collapse;
    margin-top:20px;
}
.product-table th{
    background:#0a7c57;
    color:white;
    padding:12px;
}
.product-table td{
    padding:12px;
    border:1px solid #ddd;
}

/* FEATURES */
.features-grid{
    margin-top:30px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}
.feature-box{
    border:2px solid #e63946;
    padding:20px;
    border-radius:10px;
    font-weight:500;
}

/* TABS */
.tabs{
    display:flex;
    justify-content:center;
    margin-bottom:20px;
}
.tab{
    padding:15px 25px;
    border-bottom:3px solid transparent;
    cursor:pointer;
}
.tab.active{
    border-color:#0a7c57;
    font-weight:600;
}
.tab-content{
    background:white;
    padding:25px;
    border-radius:10px;
    text-align:left;
    box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

/* STATS SECTION */
.stats{
    background:rgba(109, 25, 25, 0.6);
    position:relative;
    padding:70px 0;
    margin-top:50px;
}
.stats .overlay{
    background:rgba(0,0,0,0.6);
    position:absolute;
    inset:0;
}
.stats-content{
    position:relative;
    z-index:2;
    color:white;
    display:flex;
    justify-content:space-around;
    font-size:18px;
}
.stats-content span{
    font-size:40px;
    font-weight:700;
}

/* TABLE */
.product-table {
    width: 100%;
    max-width: 1100px;      /* keeps table centered and not too wide */
    margin: 20px auto;      /* centers table */
    border-collapse: collapse;
}

.product-table th {
    background: #70cfb1;
    color: white;
    padding: 12px;
}

.product-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.product-table tr:nth-child(even) {
    background: #f9f9f9;
}
.decor-banner {
    width: 100%;
    margin: 30px auto;
    position: relative;
}

.decor-image {
    width: 100%;
    height: 70px;      /* adjust height if needed */
    object-fit: cover; /* keeps stripe look */
    display: block;
    border: none;      /* no border */
    border-radius: 0;  /* no curves */
}

/* Text centered on the image */
.decor-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.about-text {
    width: 85%;           /* smaller from left & right */
    margin: 20px auto;    /* centers whole block */
    text-align: left;     /* keeps text left aligned */
    font-size: 18px;
    line-height: 1.8;
    color: #141414;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px auto;
    max-width: 1100px;
}

.feature-box {
    position: relative;
    padding: 40px 20px;
    text-align: center;
    border: 2px solid #e53935;
    border-radius: 10px;
    font-size: 18px;
    background: white;
    overflow: hidden;
    transition: color 0.4s ease;
}

/* RED FILL ANIMATION */
.feature-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(229, 57, 53, 0.12);
    width: 0%;
    height: 100%;
    z-index: -1;
    transition: width 0.5s ease;
}

.feature-box:hover::before {
    width: 100%;
}

.feature-box:hover {
    color: #e53935;
}

.icon {
    display: block;
    font-size: 40px;
    margin-bottom: 10px;
    color: #e53935;
}

/* FOOTER */
.footer {
    background: #d9edf2;
    padding: 50px 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-col h4 {
    margin-bottom: 10px;
    color: #e63946;
}

.footer-col a {
    display: block;
    text-decoration: none;
    color: #333;
    margin-bottom: 8px;
}

.footer-col p {
    color: #333;
    margin-bottom: 8px;
    line-height: 1.5;
}

.logo-col img {
    height:60px;
}

.logo-col h4 {
    margin-top: 10px;
    color: #70cfb1;
}

/* FIXED COPYRIGHT */
.copyright {
    text-align: center;
    margin-top: 20px;
    color: #555;
    font-size: 14px;
}

.synergy-link {
    text-decoration: none;
    color: #e63946;
    font-weight: bold;
}


.synergy-link {
    color: #e63946;      /* Yellow */
    font-weight: bold;   /* Bold */
    text-decoration: none;
}

.synergy-link:hover {
    color: #e63946;      /* Brighter yellow on hover */
    text-decoration: underline;
}
.weexport-banner .banner-inner {
    width: 70%;          /* make narrower horizontally */
    margin: auto;        /* center it */
}

.weexport-banner img {
    width: 100%;         /* keep image fitting inside new width */
    height: auto;        /* keep proper height */
}


