/* ===== CSS VARIABLES (Pyoraa Theme) ===== */
:root {
  --dt-pri-color: #1e73be;
  --dt-sec-color: #28b79a;
  --dt-whi-color: #ffffff;
  --dt-blk-color: #161c2d;
  --dt-body-color: #6a727f;
  --dt-lightbk-color: #1c2f3c;
  --dt-heading-font: "Roboto Slab", serif;
  --dt-body-font: "Roboto", sans-serif;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  font-family: var(--dt-body-font);
  font-size: 18px;
  line-height: 1.8;
  color: var(--dt-body-color);
  background-color: #fff;
  margin: 0;
  padding: 0;
}
a {
  color: var(--dt-pri-color);
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: var(--dt-sec-color);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--dt-heading-font);
  color: var(--dt-blk-color);
}
img {
  max-width: 100%;
  height: auto;
}

/* ===== BOOTSTRAP CONTAINER OVERRIDE ===== */
/* Use Bootstrap's responsive container; widen for 1400px base screens */
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 1360px;
  }
}

/* ===== HEADER / NAVBAR ===== */
.site-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}
.site-logo img {
  max-width: 130px;
}
.site-logo .site-desc {
  font-size: 11px;
  color: var(--dt-body-color);
  margin-top: 2px;
  margin-bottom: 0;
}
.main-nav {
  display: flex;
  list-style: none;
  gap: 0;
  margin: 0;
  padding: 0;
}
.main-nav li a {
  display: block;
  padding: 10px 12px;
  font-size: 18px;
  font-weight: 500;
  color: var(--dt-blk-color);
  text-transform: capitalize;
  transition: all 0.3s;
}
.main-nav li a:hover,
.main-nav li a.active {
  color: var(--dt-sec-color);
}

/* Mobile nav */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}
@media (max-width: 991px) {
  .mobile-toggle {
    display: block;
  }
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  .main-nav.open {
    display: flex;
  }
}

/* ===== INNER PAGE BANNER ===== */
.inner-page-banner {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 473px;
  display: flex;
  align-items: center;
  padding: 20px 0;
}
.inner-page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(0deg, rgba(30,115,190,0.75) 0%, rgba(40,183,154,0.5) 30%); */
}
.inner-page-banner .container {
  position: relative;
  z-index: 1;
}
.breadcrumb-inner {
  list-style: none;
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
  font-size: 14px;
}
.breadcrumb-inner a {
  color: rgba(255, 255, 255, 0.85);
}
.breadcrumb-inner a:hover {
  color: #fff;
}
.breadcrumb-inner .separator {
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb-inner .active-crumb {
  color: rgba(255, 255, 255, 0.8);
}
.inner-page-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

/* ===== HERO BANNER (Home) ===== */
.home-banner {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 60px 0;
}
.home-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(135deg, rgba(30,115,190,0.82) 0%, rgba(40,183,154,0.65) 100%); */
}
.home-banner .container {
  position: relative;
  z-index: 1;
}
.hero-content {
  max-width: 640px;
}
.hero-title {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 18px;
}
.hero-sub {
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .home-banner {
    min-height: 340px;
  }
}

/* ===== SECTIONS ===== */
.section {
  padding: 30px 0;
}
.section-heading {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 35px;
  color: var(--dt-blk-color);
}
.section-heading span {
  color: var(--dt-sec-color);
}

/* ===== USP SECTION ===== */
.usp-section {
  margin-top: 0;
  margin-bottom: 0;
}
.usp-item {
  padding: 20px 15px;
  /* background-color: var(--dt-lightbk-color); */
}
.usp-icon {
  font-size: 34px;
  color: var(--dt-sec-color);
  margin-bottom: 12px;
  display: block;
}
.usp-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dt-whi-color);
}
.usp-item p {
  font-size: 16px;
  color: var(--dt-body-color);
  margin: 0;
}

/* ===== PRODUCT CARDS ===== */
.product-card {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}
.product-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
.product-card .card-img-top {
  object-fit: cover;
}
.product-card .card-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--dt-blk-color);
}
.product-card .card-text {
  font-size: 15px;
  color: var(--dt-body-color);
}

/* ===== FEATURED PRODUCTS CAROUSEL ===== */
#featuredCarousel .carousel-control-prev,
#featuredCarousel .carousel-control-next {
  background: var(--dt-sec-color);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.85;
}
#featuredCarousel .carousel-control-prev {
  left: -22px;
}
#featuredCarousel .carousel-control-next {
  right: -22px;
}
#featuredCarousel .carousel-control-prev:hover,
#featuredCarousel .carousel-control-next:hover {
  opacity: 1;
  background: var(--dt-pri-color);
}

/* ===== BLOG CARDS (new 4×grid style) ===== */
.blog-card-link {
  text-decoration: none;
}
.blog-card-new {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
  background: #fff;
}
.blog-card-new:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
.blog-card-new .card-img-top {
  height: 180px;
  object-fit: cover;
}
.blog-card-new .card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--dt-blk-color);
  margin: 0;
}
.blog-card-link:hover .card-title {
  color: var(--dt-sec-color);
}
.blog-card-placeholder {
  width: 100%;
  height: 180px;
  background: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #adb5bd;
  font-size: 48px;
}

/* ===== BLOG SINGLE / SIDEBAR ===== */
.sidebar-card {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
}
.sidebar-card .card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--dt-blk-color);
}
.latest-blog-link {
  font-size: 14px;
  color: var(--dt-body-color);
  transition: color 0.3s;
}
.latest-blog-link:hover {
  color: var(--dt-sec-color);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(
    135deg,
    var(--dt-pri-color) 0%,
    var(--dt-sec-color) 100%
  );
  padding: 50px 0;
}
.cta-banner h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 10px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
}
.btn-light-pyoraa {
  display: inline-block;
  background: #fff;
  color: var(--dt-pri-color);
  padding: 12px 35px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s;
  border: 2px solid #fff;
  cursor: pointer;
  text-decoration: none;
}
.btn-light-pyoraa:hover {
  background: transparent;
  color: #fff;
}

/* ===== BUTTONS ===== */
.btn-primary-pyoraa {
  display: inline-block;
  background: var(--dt-sec-color);
  color: #fff;
  padding: 11px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary-pyoraa:hover {
  background: var(--dt-pri-color);
  color: #fff;
}
.btn-outline-pyoraa {
  display: inline-block;
  border: 2px solid var(--dt-sec-color);
  color: var(--dt-sec-color);
  padding: 9px 26px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-outline-pyoraa:hover {
  background: var(--dt-sec-color);
  color: #fff;
}
.w-100 {
  width: 100% !important;
}
.d-block {
  display: block !important;
}

/* ===== CONTACT DETAILS ===== */
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
}
.contact-detail-icon {
  width: 46px;
  height: 46px;
  background: var(--dt-sec-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon i {
  color: #fff;
  font-size: 17px;
}

/* ===== FAQ ACCORDION ===== */
.faq-btn {
  font-size: 15px;
  font-weight: 600;
  color: var(--dt-blk-color);
  background: #fff;
  border-radius: 6px !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.faq-btn:not(.collapsed) {
  color: var(--dt-sec-color);
  background: #fff;
  box-shadow: none;
}
.faq-btn::after {
  filter: none;
}
.faq-body {
  font-size: 15px;
  color: var(--dt-body-color);
  padding: 12px 16px;
}

/* ===== CONTACT FORM ===== */
.cf-form input,
.cf-form select,
.cf-form textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  font-family: inherit;
}
.cf-form input:focus,
.cf-form select:focus,
.cf-form textarea:focus {
  outline: none;
  border-color: var(--dt-pri-color);
  box-shadow: 0 0 0 3px rgba(30, 115, 190, 0.1);
}
.cf-form textarea {
  min-height: 100px;
  resize: vertical;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .cf-row {
    grid-template-columns: 1fr;
  }
}

/* ===== STICKY SIDE BUTTON ===== */
.sticky-side-btn {
  position: fixed;
  top: 50%;
  right: 1%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right center;
  background: var(--dt-sec-color);
  color: #fff;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transition: 0.3s;
  cursor: pointer;
  border: none;
}
.sticky-side-btn:hover {
  background: #fff;
  color: var(--dt-sec-color);
}

/* ===== MODAL STYLES ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s;
}
.modal.show {
  display: flex;
}
.modal-content {
  background: #fff;
  margin: auto;
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 520px;
  position: relative;
  animation: slideIn 0.3s;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}
.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  line-height: 1;
}
.modal-close:hover {
  color: #000;
}
.modal h2 {
  margin-bottom: 18px;
  font-size: 22px;
  color: var(--dt-blk-color);
}
.modal-form .cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 600px) {
  .modal-content {
    width: 95%;
    padding: 20px;
  }
  .modal-form .cf-row {
    grid-template-columns: 1fr;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===== FORM MESSAGE ===== */
.form-message {
  padding: 12px 15px;
  border-radius: 6px;
  margin-bottom: 15px;
  display: none;
}
.form-message.success {
  background: #d4edda;
  color: #155724;
  display: block;
}
.form-message.error {
  background: #f8d7da;
  color: #721c24;
  display: block;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dt-blk-color);
  color: #b0b7c3;
  padding: 45px 0 0;
  font-size: 15px;
}
.site-footer a {
  color: #b0b7c3;
}
.site-footer a:hover {
  color: var(--dt-sec-color);
}
.site-footer h5 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 17px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-col p {
  margin-bottom: 10px;
  line-height: 1.7;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.footer-social a i {
  font-size: 18px;
  color: #fff;
  transition: color 0.3s;
}
.footer-social a:hover i {
  color: var(--dt-sec-color);
}
.contact-links a {
  color: var(--dt-sec-color) !important;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.contact-links a i {
  font-size: 14px;
  color: #fff;
}
.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 0;
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
}

/* ===== TWO COL LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

/* ===== DROP CAP ===== */
.drop-cap::first-letter {
  float: left;
  font-size: 3.5em;
  line-height: 1;
  font-weight: 700;
  margin-right: 10px;
  color: var(--dt-pri-color);
}

/* ===== PRODUCT LOGO IMAGES (about page) ===== */
.product-logo-img {
  border-radius: 6px;
  transition: transform 0.3s;
  width: 100%;
  border: var(--dt-sec-color) 3px double;
}
.product-logo-img:hover {
  transform: scale(1.05);
}

/* ===== PRODUCT DETAIL PAGE ===== */

/* Hero section spacing */
.prod-hero-section {
  padding-bottom: 0;
}

/* ── Gallery ── */
.prod-gallery-wrap {
  position: relative;
}

.prod-gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #f4f6f8;
  border: 1px solid #e8ecef;
  cursor: zoom-in;
}
.prod-gallery-main img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  padding: 16px;
  transition:
    transform 0.4s ease,
    opacity 0.18s ease;
}
.prod-gallery-main:hover img {
  transform: scale(1.03);
}
.prod-gallery-main img.is-fading {
  opacity: 0;
  transform: scale(0.97);
}

.prod-gallery-zoom-hint {
  position: absolute;
  bottom: 12px;
  right: 14px;
  background: rgba(0, 0, 0, 0.38);
  color: #fff;
  font-size: 13px;
  padding: 5px 9px;
  border-radius: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.prod-gallery-main:hover .prod-gallery-zoom-hint {
  opacity: 1;
}

.prod-gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.prod-gallery-thumb {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  background: #f4f6f8;
  padding: 3px;
  transition:
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.prod-gallery-thumb:hover {
  border-color: var(--dt-pri-color);
  transform: scale(1.06);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.prod-gallery-thumb.active {
  border-color: var(--dt-sec-color);
  box-shadow: 0 2px 8px rgba(40, 183, 154, 0.25);
}

/* ── Lightbox ── */
.prod-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  animation: fadeIn 0.22s;
}
.prod-lightbox.open {
  display: flex;
}
.prod-lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.6);
  cursor: default;
}
.prod-lightbox-close {
  position: fixed;
  top: 18px;
  right: 24px;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 100000;
  opacity: 0.7;
  transition:
    opacity 0.2s,
    transform 0.2s;
  padding: 0;
}
.prod-lightbox-close:hover {
  opacity: 1;
  transform: scale(1.15);
}

/* ── Info panel ── */
.prod-info-panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.prod-name {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--dt-blk-color);
  margin-bottom: 14px;
  line-height: 1.25;
}
.prod-short-desc {
  font-size: 16px;
  color: var(--dt-body-color);
  line-height: 1.85;
  margin-bottom: 18px;
}
.prod-overview-excerpt {
  font-size: 15px;
  color: var(--dt-body-color);
  line-height: 1.8;
  margin-bottom: 18px;
}
.prod-cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.prod-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(40, 183, 154, 0.1);
  color: var(--dt-sec-color);
  border: 1px solid rgba(40, 183, 154, 0.3);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.prod-cert-badge i {
  font-size: 11px;
}
.prod-divider {
  border: none;
  border-top: 1px solid #e8ecef;
  margin: 18px 0;
}
.prod-section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dt-pri-color);
  margin-bottom: 8px;
}
.prod-app-content {
  font-size: 15px;
  color: var(--dt-body-color);
  line-height: 1.8;
}
.prod-app-content ul {
  padding-left: 18px;
  margin: 0;
}
.prod-app-content ul li {
  margin-bottom: 4px;
}
.prod-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* ── Tabs section ── */
.prod-tabs-section {
  background: #fafbfd;
  padding: 40px 0 48px;
  border-top: 1px solid #e8ecef;
  border-bottom: 1px solid #e8ecef;
}
.prod-tab-nav {
  border-bottom: 2px solid #dde1e8;
  gap: 0;
  margin-bottom: 0;
  flex-wrap: wrap;
}
.prod-tab-nav .nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--dt-body-color);
  padding: 11px 22px;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  margin-bottom: -2px;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.prod-tab-nav .nav-link:hover {
  color: var(--dt-blk-color);
  background: rgba(40, 183, 154, 0.04);
  border-bottom-color: rgba(40, 183, 154, 0.35);
}
.prod-tab-nav .nav-link.active {
  color: var(--dt-sec-color);
  border-bottom-color: var(--dt-sec-color);
  background: transparent;
}
.prod-tab-nav .nav-link i {
  opacity: 0.7;
}
.prod-tab-nav .nav-link.active i {
  opacity: 1;
}

/* Tab content typography */
.prod-tab-content-area {
  font-size: 16px;
  line-height: 1.9;
  color: var(--dt-body-color);
  padding-top: 8px;
}
.prod-tab-content-area h2,
.prod-tab-content-area h3,
.prod-tab-content-area h4 {
  color: var(--dt-blk-color);
  margin-top: 24px;
  margin-bottom: 12px;
}
.prod-tab-content-area p {
  margin-bottom: 14px;
}
.prod-tab-content-area ul,
.prod-tab-content-area ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
.prod-tab-content-area li {
  margin-bottom: 6px;
}
.prod-tab-content-area strong {
  color: var(--dt-blk-color);
}
.prod-tab-content-area table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.07);
}
.prod-tab-content-area table th {
  background: var(--dt-lightbk-color);
  color: #fff;
  font-weight: 600;
  padding: 11px 16px;
  text-align: left;
  font-size: 14px;
  letter-spacing: 0.03em;
}
.prod-tab-content-area table td {
  padding: 10px 16px;
  border-bottom: 1px solid #eaeef2;
  vertical-align: top;
}
.prod-tab-content-area table tr:last-child td {
  border-bottom: none;
}
.prod-tab-content-area table tr:nth-child(even) td {
  background: #f4f6f8;
}
.prod-tab-content-area table tr:hover td {
  background: rgba(40, 183, 154, 0.05);
}

@media (max-width: 768px) {
  .prod-gallery-main img {
    height: 280px;
  }
  .prod-name {
    font-size: 1.5rem;
  }
  .prod-tab-nav .nav-link {
    padding: 9px 14px;
    font-size: 13px;
  }
  .prod-tab-content-area table {
    font-size: 13px;
  }
  .prod-tab-content-area table th,
  .prod-tab-content-area table td {
    padding: 8px 10px;
  }
}

/* ===== UTILITY ===== */
.text-center {
  text-align: center;
}
.mt-30 {
  margin-top: 30px;
}
.mb-30 {
  margin-bottom: 30px;
}
.ms-2 {
  margin-left: 0.5rem;
}
.me-1 {
  margin-right: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-4 {
  margin-top: 1.5rem;
}
.mb-4 {
  margin-bottom: 1.5rem;
}
.pt-3 {
  padding-top: 1rem;
}
.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 1rem;
}
.g-4 {
  gap: 1.5rem;
}
.g-2 {
  gap: 0.5rem;
}
.g-3 {
  gap: 1rem;
}
.flex-grow-1 {
  flex-grow: 1;
}
.d-flex {
  display: flex;
}
.flex-column {
  flex-direction: column;
}
.h-100 {
  height: 100%;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.rounded {
  border-radius: 8px;
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.list-unstyled {
  list-style: none;
  padding: 0;
  margin: 0;
}

.usp-item h3 {
  color: #fff;
}

/* new added css */

.food-grade-section {
  background: #f5f5f5;
  padding: 80px 0;
  overflow: hidden;
}

.food-grade-card {
  background: #f1f1f1;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  height: 100%;
}

.main-product {
  border-radius: 35px;
  padding: 10px;
  height: 350px;
  object-fit: cover;
}

.rating-stars i {
  color: #f5b400;
  margin: 0 2px;
  font-size: 18px;
}

.card-text {
  color: #666;
  font-size: 18px;
  line-height: 1.8;
  margin-top: 20px;
}

.company-box {
  margin-top: 25px;
}

.company-box img {
  width: 50px;
}

.company-box h5 {
  color: #666;
  margin-bottom: 0;
  font-size: 26px;
}

.fssai-logo {
  width: 124px;
}

.sub-text {
  color: #777;
  font-size: 20px;
}

.main-heading {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
  color: #0a0a4d;
  margin: 35px 0;
}

.product-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-list li {
  color: #1db79a;
  font-size: 19px;
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
}

.product-list i {
  color: #8bc53f;
  margin-right: 12px;
  font-size: 18px;
  margin-top: 5px;
}

.shop-btn {
  background: #707986;
  color: #fff;
  padding: 12px 20px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  margin-top: 40px;
  transition: 0.3s;
  width: fit-content;
}

.shop-btn:hover {
  background: #59616d;
  color: #fff;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .main-heading {
    font-size: 42px;
  }

  .product-list li {
    font-size: 20px;
  }

  .card-text {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .food-grade-section {
    padding: 50px 0;
  }

  .main-heading {
    font-size: 34px;
  }

  .product-list li {
    font-size: 18px;
  }

  .shop-btn {
    width: 100%;
    justify-content: center;
    font-size: 18px;
  }

  .fssai-logo {
    width: 80px;
  }

  .main-product {
    height: auto;
  }
}

.food-grade-card {
  height: 100%;
}

.right-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-carousel {
  border: 3px solid #1d35ff;
  border-radius: 35px;
  overflow: hidden;
  background: #fff;
  padding: 10px;
}

.main-product {
  width: 100%;
  height: 350px;
  object-fit: contain;
  border-radius: 25px;
  padding: 10px;
}

.card-body {
  background: #f8f8f8;
  text-align: center;
}
