/* --- Start product page styling --- */
/* FULL WIDTH GREY STRIP */
.breadcrumb-section {
  width: 100%;
  background-color: #f1f2f1; /* light grey */
}

/* CONTENT INSIDE */
.breadcrumb {
  font-family: 'Times New Roman', Times, serif;
  font-size: 14px;
  margin: 0 auto;
  padding: 12px 120px;
  max-width: 1400px;
}

/* Links */
.breadcrumb a {
  color: #004D25;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #FFC107;
}

.breadcrumb span {
  color: #666;
}


@media (max-width: 768px) {
  .breadcrumb {
    padding: 10px 16px; /* mobile friendly */
    font-size: 11px;
  }
}


.premium-section {
    padding: 10px 20px 50px 20px;
    font-family: 'Times New Roman', Times, serif;
    background-color: #f8f9fa;
}

.premium-section .container {
    max-width: 1200px;
    margin: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    margin: auto;
}

.section-header h2 {
    font-size: 42px;
    color: #004D25;
    margin: 0;
    padding: 0;
}

.section-header p {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}


.section-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 30px 0px 40px 0px;
    background: #efefef;

}

.image-col {
    flex: 0 0 300px;
    max-width: 100%;
}

.image-col img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.3s;
}

.image-col img:hover {
    transform: scale(1.05);
}

.text-col {
    flex: 1;
    min-width: 280px;
}

.text-col h3 {
    font-size: 26px;
    color: #004D25;
    margin-bottom: 15px;
}

.text-col p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.enquiry-btn {
    background-color: #004D25;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.enquiry-btn:hover {
    background-color: #FFC107;
    color: #004D25;
}

.product-search-bar {
    display: flex;
    max-width: 500px;
    margin: 20px auto;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #fff;
}

.product-search-bar input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    outline: none;
    font-size: 15px;
}

.product-search-bar button {
    flex: 0 0 50px;
    border: none;
    background-color: #004D25;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.product-search-bar button:hover {
    background-color: #FFC107;
    color: #004D25;
}

@media (max-width: 992px) {
    .section-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .image-col,
    .text-col {
        min-width: 100%;
    }

    .text-col h3 {
        font-size: 24px;
    }

    .text-col p {
        font-size: 14px;
        text-align: justify;
    }
}

@media (max-width: 576px) {
    .premium-section {
        padding: 40px 15px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .section-header p {
        font-size: 13px;
    }

    .text-col h3 {
        font-size: 20px;
    }

    .text-col p {
        text-align: justify;
        font-size: 14px;
    }

    .enquiry-btn {
        padding: 10px 20px;
        font-size: 14px;
        display: flex;
        justify-content: flex-start;
    }

    .product-search-bar {
        max-width: 90%;
    }

    .product-search-bar button {
        flex: 0 0 40px;
    }
}

.tabs {
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  border-radius: 0 0 35px 35px;
}

/* Tab Header */
.tab-header {
  display: flex;
  justify-content: space-around;
  background-color: #004D25;
  overflow-x: auto;              /* allow scroll on mobile */
  white-space: nowrap;           /* keep tabs in a single line */
  scrollbar-width: none;         /* hide scrollbar for Firefox */
  -ms-overflow-style: none;      /* hide scrollbar for IE/Edge */
}

.tab-header::-webkit-scrollbar {
  display: none; /* hide scrollbar in Chrome/Safari */
}

.tab-header button {
  flex: 1 0 auto;                /* prevent shrinking */
  padding: 14px 20px;
  background: transparent;
  border: none;
  font-size: 16px;
  font-weight: 500;
  color: white;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 120px; /* ensures buttons are readable on small screens */
}

.tab-header button:hover {
  color: #FFC107;
}

.tab-header button.active {
  color: #FFC107;
  font-weight: 600;
}

.tab-header button.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 30%;
  width: 40%;
  height: 3px;
  background: #FFC107;
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .tab-header {
    justify-content: flex-start;
    padding: 8px;
  }

  .tab-header button {
    font-size: 14px;
    padding: 10px 16px;
  }
}


.tab-content {
    display: none;
    padding: 80px 50px 60px 50px;
    animation: fadeEffect 0.4s;
    border-radius: 30px;
    background-color: #EFEFEF;
}

.tab-content.active {
    display: block;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.feature-list li {
    background: #f9fbff;
    margin-bottom: 10px;
    padding: 12px 16px;
    border-left: 4px solid #FFC107;
    border-radius: 8px;
    transition: transform 0.2s ease;
    color:#555555;
}

.feature-list li:hover {
    transform: translateX(4px);
    background: #eef5ff;
}

.table-container {
    width: 100%;
    overflow-x: auto;
    margin-top: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    background: #fff;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #004D25;

}

th,
td {
    text-align: left;
    padding: 14px 18px;
    border: 1px solid #004D25;

}

table th {
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px;
    font-size: 15px;
    border: 1px solid #004D25;
}

table tr:nth-child(even) {
    background-color: #f7fbf8;
}

table tr:nth-child(odd) {
    background-color: #eaf6ee;
}

td {
    font-size: 15px;
    color: #555;
}

.list {
    list-style: disc;
    padding-left: 25px;
}

.list li {
    color: #555555;
    font-size: 14px;
    margin-bottom: 8px;
    position: relative;
}

.list li::marker {
    color: #004D25;
    font-size: 20px;
}

@media (max-width: 600px) {
    .tab-header button {
        font-size: 14px;
        padding: 12px 0;
    }

    .tab-content {
        padding: 20px;
    }

    table {
        font-size: 14px;
    }
    table th{
        font-size: 14px;
    }
    table th, td{
        padding:12px;
    }
}

.banner-strip {
  text-align: center;
  padding: 40px 20px;
  background-color: #f8f9fa;
}

.banner-heading {
  font-size: 28px;
  color: #004D25;
  margin-bottom: 20px;
  font-weight: 600;
}

.banner-search-box {
  display: inline-flex;
  border: 1px solid #ccc;
  border-radius: 30px;
  overflow: hidden;
  max-width: 500px !important;
  width: 100%;
}

.banner-search-box input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  outline: none;
  font-size: 14px !important;
}

.banner-search-box button {
  background-color: #004D25;
  color: white;
  border: none;
  padding: 12px 20px !important;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px !important;
}

.banner-search-box button:hover {
  background-color: #007A3D;
}

/* 📱 Small Screens (Phones) */
@media (max-width: 600px) {
    .banner-strip {
        padding: 25px 10px;
        margin-top: 70px;
        /* for mobile fixed header */
    }

    .banner-search-box {
        max-width: 100%;
        border-radius: 40px;
    }

    .banner-search-box input {
        font-size: 14px;
        padding: 10px 12px;
    }

    .banner-search-box button {
        font-size: 14px;
        padding: 10px 18px;
    }
}

/* 📲 Tablets (Portrait and Landscape) */
@media (min-width: 601px) and (max-width: 1024px) {
    .banner-strip {
        padding: 50px 20px;
        margin-top: 70px;
    }

    .banner-search-box {
        max-width: 600px;
    }

    .banner-search-box input {
        font-size: 15px;
        padding: 12px 18px;
    }

    .banner-search-box button {
        font-size: 15px;
        padding: 12px 25px;
    }
}

/* 💻 Desktop (Default) */
@media (min-width: 1025px) and (max-width: 1440px) {
    .banner-strip {
        padding: 70px 30px;
    }

    .banner-search-box {
        max-width: 700px;
    }
}

/* 🖥️ Large Monitors */
@media (min-width: 1441px) {
    .banner-strip {
        padding: 90px 40px;
    }

    .banner-search-box {
        max-width: 900px;
    }

    .banner-search-box input {
        font-size: 18px;
    }

    .banner-search-box button {
        font-size: 18px;
        padding: 14px 35px;
    }
}