:root {
  /*--primary-color: #0d6efd;*/
  --primary-color: #005431;
  --secondary-color: #6c757d;
  --success-color: #198754;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
}

/* Top Navigation Bar */
.navbar {
  padding: 15px 0;
}

.navbar-brand {
  margin-right: 2rem;
}

.navbar-nav .nav-link {
  transition: all 0.3s ease;
  margin: 0 5px;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
  border-bottom: 3px solid var(--primary-color);
  padding-bottom: 12px;
}

body {
  background-color: #f8f9fa;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* Hero Section */
.hero-section {
  position: relative;
  margin-bottom: 0;
}

.hero-carousel {
 /*  height: 630px; PG */
}

.hero-carousel .carousel-item {
  /*height: 630px; PG */
}

.hero-carousel .carousel-item img {
  height: 100%;
  object-fit: auto;
}



.hero-overlay-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
  /*background: linear-gradient(
    135deg,
    rgba(0, 84, 49, 0.65) 0%,
    rgba(152, 106, 14, 0.55) 100%
  );*/
  z-index: 2;
}

.hero-overlay-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-overlay-content p {
  font-size: 1.1rem;
  margin-bottom: 0;
  opacity: 0.9;
}

@media (max-width: 991.98px) {
  .hero-overlay-content h1 {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .hero-overlay-content h1 {
    font-size: 1.65rem;
  }

  .hero-overlay-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 575.98px) {
  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    display: none;
  }

  .hero-overlay-content h1 {
    font-size: 1.35rem;
  }

  .hero-overlay-content p {
    font-size: 0.85rem;
  }
}

/* Logo Link */
.logo-link {
  display: inline-block;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 2.5rem;
  color: white;
  text-decoration: none;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  color: white;
  text-decoration: none;
}

/* Search Box */
.search-box-wrapper {
  max-width: 100%;
  margin: 0 auto 0px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .search-box-wrapper {
    width: 60%;
  }
}

.search-box {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.search-box .row {
  gap: 15px;
}

.search-box input,
.search-box select {
  height: 45px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  padding: 10px 15px;
  font-size: 0.95rem;
}

.search-box input:focus,
.search-box select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.search-box label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #333;
}

.search-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 30px;
  font-weight: 600;
  height: 45px;
  align-self: flex-end;
  transition: all 0.3s ease;
}

.search-btn:hover {
  background: #986a0e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

/* Products Container */
.products-section {
  margin-bottom: 50px;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e0e0e0;
}

.products-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  color: #333;
}

/* Spotlight Section Background */
.ad-spotlight-section {
  padding: 90px 0;
  min-height: 570px;
  /*background: linear-gradient(
    135deg,
    rgba(13, 110, 253, 0.12) 0%,
    rgba(255, 193, 7, 0.18) 55%,
    rgba(25, 135, 84, 0.12) 100%
  );*/
  position: relative;
  overflow: hidden;
  background-image: url("../img/bg-banner-VE-advt.jpg");
}

/* Spotlight Section Background */
.ad-spotlight-section-2 {
  padding: 90px 0;
  min-height: 570px;
  /*background: linear-gradient(
    135deg,
    rgba(13, 110, 253, 0.12) 0%,
    rgba(255, 193, 7, 0.18) 55%,
    rgba(25, 135, 84, 0.12) 100%
  );*/
  position: relative;
  overflow: hidden;
  background-image: url("../img/hm-bnr.jpg");
}

.ad-spotlight-section::before,
.ad-spotlight-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  pointer-events: none;
}

.ad-spotlight-section::before {
  width: 240px;
  height: 240px;
  background: radial-gradient(
    circle,
    rgba(13, 110, 253, 0.35),
    rgba(13, 110, 253, 0)
  );
  top: -60px;
  left: -80px;
}

.ad-spotlight-section::after {
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(255, 193, 7, 0.35),
    rgba(255, 193, 7, 0)
  );
  bottom: -90px;
  right: -70px;
}

/* Advertisement Spotlight */
.ad-spotlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 45%, #ffffff 100%);
  border-radius: 18px;
  padding: 28px 30px;
  /*box-shadow: 0 16px 40px rgba(48, 36, 12, 0.15);*/
  /*border: 1px solid rgba(255, 193, 7, 0.35);*/
  position: relative;
  overflow: hidden;
  /*margin-top: -40px;*/
}

.ad-spotlight::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(255, 193, 7, 0.35),
    rgba(255, 193, 7, 0)
  );
}

.ad-copy {
  position: relative;
  z-index: 1;
}

.ad-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a5a00;
  margin-bottom: 8px;
}

.ad-copy h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #2c1a00;
  margin-bottom: 12px;
}

.ad-copy p {
  color: #4a3a1a;
  margin-bottom: 16px;
  font-size: 1rem;
}

.ad-points {
  display: grid;
  gap: 8px;
  color: #4a3a1a;
  margin-bottom: 18px;
  font-weight: 600;
}

.ad-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #2c1a00;
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 20px rgba(44, 26, 0, 0.2);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.ad-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(44, 26, 0, 0.25);
  color: #fff;
}

.ad-visual {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.ad-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #198754;
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 6px 20px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.ad-highlight {
  background: #fff7e6;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 14px;
  border: 1px dashed rgba(255, 193, 7, 0.5);
}

.ad-highlight-title {
  font-weight: 700;
  color: #5c3b00;
  margin-bottom: 6px;
}

.ad-highlight-text {
  color: #6c4c1c;
  font-size: 0.95rem;
}

.ad-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

/* Popular products page spacing */
.popular-page .hero-section {
  margin-bottom: 50px;
}

/* New products page spacing */
.new-products-page .hero-section {
  margin-bottom: 50px;
}

.ad-stat {
  background: #f4f6f8;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}

.ad-stat-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0d6efd;
}

.ad-stat-label {
  font-size: 0.8rem;
  color: #6c757d;
}

.category-section {
  margin: 40px auto 20px;
}

.category-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.category-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d6efd 0%, #012b5e 100%);
}

.category-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.category-cta {
  background: rgba(13, 110, 253, 0.1);
  color: var(--primary-color);
}

.category-cta:hover {
  background: rgba(13, 110, 253, 0.2);
}

.products-count {
  background: var(--primary-color);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Product Card */
.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.product-card-image {
  position: relative;
  height: 100%;
  overflow: hidden;
  /*background: #f0f0f0;*/
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.badge-trending {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ffc107;
  color: #000;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 5;
}

.badge-status {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--success-color);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-card-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  display: inline-block;
  background: #e3f2fd;
  color: var(--primary-color);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 10px;
  width: fit-content;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.4;
}

.product-description {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
  flex-grow: 1;
}

.company-info {
  background: #f8f9fa;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 15px;
  border-left: 4px solid var(--primary-color);
}

.company-name {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.company-details {
  font-size: 0.85rem;
  color: #666;
  margin: 3px 0;
}

.company-details i {
  width: 16px;
  margin-right: 6px;
  color: var(--primary-color);
}

.product-footer {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.btn-enquire {
  flex: 1;
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-enquire:hover {
  background: #986a0e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.no-results {
  text-align: center;
  padding: 60px 20px;
}

.no-results i {
  font-size: 3rem;
  color: #ccc;
  margin-bottom: 20px;
}

.no-results h3 {
  color: #666;
  margin-bottom: 10px;
}

.no-results p {
  color: #999;
}

/* Enquiry Modal */
.modal-header {
  background: var(--primary-color);
  color: white;
  border: none;
}

.modal-header .btn-close {
  filter: brightness(0) invert(1);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.btn-submit {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #0a58ca;
}

/* Loading Animation */
.loading-spinner {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.loading-spinner.show {
  display: block;
}

/* Filter Panel Styles */
.filter-panel {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  position: sticky;
  top: 20px;
  border: 1px solid #e0e0e0;
}

.filter-section {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.filter-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.filter-options {
  max-height: 250px;
  overflow-y: auto;
}

.form-check {
  margin-bottom: 0.5rem;
}

.form-check-input {
  cursor: pointer;
  width: 1.1em;
  height: 1.1em;
  border-color: #dee2e6;
  accent-color: var(--primary-color);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-label {
  cursor: pointer;
  margin-bottom: 0;
  font-size: 0.95rem;
  color: #333;
  user-select: none;
}

.form-check-label:hover {
  color: var(--primary-color);
}

.filter-section .form-control-sm {
  font-size: 0.9rem;
  padding: 0.4rem 0.6rem;
}

/* Pagination Styles */
#paginationContainer,
#endMessage {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

#loadMoreBtn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
}

#loadMoreBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

/* Footer */
footer {
  background: #333;
  color: white;
  padding: 30px 20px;
  /*text-align: center;*/
  margin-top: 50px;
}

@media (min-width: 992px) {

    .navbar {
        position: relative;
    }

    .navbar-toggler {
        display: block !important;
        border: none;
        background: transparent;
        font-size: 22px;
    }

    /* IMPORTANT: do NOT force display */
    #navbarNav {
        position: absolute;
        top: 100%;
        left: 20px;
        width: 260px;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        padding: 15px;
        z-index: 999;
    }

    #navbarNav .navbar-nav {
        flex-direction: column;
    }

}

.contact-buttons{
    display:flex;
    gap:12px;
    align-items:center;
}

.btn{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:10px 18px;
    font-size:16px;
    text-decoration:none;
    border-radius:6px;
    font-weight:500;
    color:#fff;
    white-space:nowrap;
}

/* Call Button */
.call-btn{
    background:#28a745;
}

/* WhatsApp Button */
.whatsapp-btn{
    background:#f1f1f1;
    color:#333;
    border:1px solid #ddd;
}

/* Enquiry Button */
.enquiry-btn{
    background:#1e73be;
    flex-direction:column;
    line-height:1.1;
}

.enquiry-btn span{
    font-size:12px;
    opacity:0.9;
}



.card-img{
    width:100%;
    height:auto;
}

.social-icons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.social-icon{
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    border-radius:6px;
    font-size:20px;
    text-decoration:none;
    transition:0.3s;
}

.social-icon:hover{
    transform:translateY(-3px);
    opacity:0.9;
}

/* Platform Colors */

.facebook{ background:#3b5998; }
.twitter{ background:#55acee; }
.google{ background:#dd4b39; }
.instagram{ background:#c13584; }
.linkedin{ background:#0077b5; }
.pinterest{ background:#bd081c; }
.youtube{ background:#d61414; }



.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	margin-bottom: .5rem;
	font-weight: 400 !important;
	line-height: 1.2;
	color: var(--bs-heading-color);
	font-size:1.2rem !important;
}

