@charset "ISO-8859-1";
@import url('https://fonts.googleapis.com/css2?family=Sen:wght@400;700;800&display=swap');
/* ===========================
   GENERAL STYLING
=========================== */
body {
    
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
}

h1, h2, h3, h4 {
   
    color: #1a1a1a;
    margin-bottom: 15px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===========================
   BANNER
=========================== */
.page-bannerr {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 400px;
    margin-top: 0;
    background: url('img/9323641.jpg') center / cover no-repeat;
}

.page-bannerr .banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(10,40,25,0.6), rgba(10,40,25,0.9));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.page-bannerr h1.banner-title {
    font-size: 28px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-bannerr p.banner-subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    max-width: 90%;
    margin: 0 auto 20px;
}

/* Breadcrumb */
.banner-breadcrumb {
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
    padding:6px 16px;
    border-radius:4px;
    font-size:12px;
    display:inline-flex;
    gap:8px;
    align-items:center;
    color:#fff;
    border:1px solid rgba(255,255,255,0.1);
}
.banner-breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}
.banner-breadcrumb a:hover {
    color: #d4af37;
}
.banner-breadcrumb span.active {
    color: #d4af37;
    font-weight: 600;
}

/* ===========================
   PRODUCT INTRO
=========================== */
.product-intro {
    padding: 50px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 50px;
}

.product-intro-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
    text-align: left;
}

.product-intro-img {
    flex: 1 1 300px;
    max-width: 500px;
    text-align: center;
}

.product-intro-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-intro-img img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-intro-text {
    flex: 1 1 280px;
    max-width: 500px;
}

.product-intro-text h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-intro-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

/* ENQUIRE BUTTON */
.enquire-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #0c6b3f;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 5px 25px rgba(12,107,63,0.3);
}

.enquire-btn:hover {
    background: #084e2d;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(12,107,63,0.4);
}

/* ===========================
   SPECIFICATIONS TABLE
=========================== */
.spec-section {
    padding: 70px 20px;
    background: #f0f6f9;
    border-radius: 12px;
    margin-bottom: 50px;
    text-align: center;
}

.spec-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 700;
    color: #0c6b3f;
}

.spec-table-container {
    display: inline-block;
    text-align: center;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-radius: 12px;
    overflow: hidden;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}

.spec-table th, .spec-table td {
    padding: 18px 20px;
    text-align: center;
    vertical-align: middle;
}

.spec-table th {
    background-color: #0c6b3f;
    color: #fff;
    font-weight: 700;
    border-right: 1px solid rgba(255,255,255,0.3);
}

.spec-table th:last-child {
    border-right: none;
}

.spec-table td:first-child {
    font-weight: 600;
    color: #0c6b3f;
    width: 40%;
    border-right: 1px solid #cddcdc;
}

.spec-table td:last-child {
    color: #555;
    width: 60%;
}

.spec-table tr:nth-child(even) {
    background-color: #f7f9fa;
}

.spec-table tr:hover {
    background-color: #e6f4f0;
    transition: 0.3s;
}

/* Rounded corners */
.spec-table tr:first-child th:first-child { border-top-left-radius: 12px; }
.spec-table tr:first-child th:last-child { border-top-right-radius: 12px; }
.spec-table tr:last-child td:first-child { border-bottom-left-radius: 12px; }
.spec-table tr:last-child td:last-child { border-bottom-right-radius: 12px; }

/* ===========================
   BENEFITS SECTION
=========================== */
.benefits-section {
    padding: 70px 20px;
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 50px;
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.benefit-box {
    background: #f7f9fa;
    padding: 25px 15px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.benefit-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.benefit-box span {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

/* ===========================
   USES / APPLICATIONS
=========================== */
.uses-section {
    padding: 70px 20px;
    background: #f0f6f9;
    border-radius: 12px;
    margin-bottom: 50px;
}

.uses-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.uses-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.use-item {
    background: #ffffff;
    padding: 22px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.use-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* ===========================
   RESPONSIVE
=========================== */
@media(max-width:992px){
    .page-bannerr { height:55vh; }
    .page-bannerr h1.banner-title { font-size:24px; }
    .page-bannerr p.banner-subtitle { font-size:13px; }

    .product-intro-wrapper {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 20px;
    }

    .product-intro-text h2 { font-size:28px; }
    .product-intro-text p { font-size:15px; }

    .benefits-grid { grid-template-columns: repeat(2,1fr); }
    .uses-list { grid-template-columns: repeat(2,1fr); }
}

@media(max-width:600px){
    .page-bannerr { height:45vh; }
    .page-bannerr h1.banner-title { font-size:20px; }
    .page-bannerr p.banner-subtitle { font-size:12px; }

    .product-intro-wrapper { gap:15px; }
    .product-intro-text h2 { font-size:24px; }
    .product-intro-text p { font-size:14px; line-height:1.6; }

    .benefits-grid { grid-template-columns:1fr; }
    .uses-list { grid-template-columns:1fr; }

    .spec-table th, .spec-table td { font-size:14px; padding:12px 10px; }

    .enquire-btn { padding:10px 22px; font-size:14px; }
}


.banner-subtitle {
  font-size: 22px !important;
  line-height: 1.6 !important;
  color: #e5e7eb !important;
}

.banner-subtitle span {
  font-size: 19px !important;
  font-weight: 400 !important;
  color: #ffffff !important;
}