* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
  padding-top: 78px; /* Space for fixed header */
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Header Styles */
.site-header {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 20px;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

/* Logo Styles */
.logo img {
  width: 160px;
  height: auto;
  color: #2a6e3f;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.logo:hover {
  color: #1e4f2c;
}

.logo span {
  color: #4caf50;
  font-weight: 500;
  font-size: 18px;
  margin-left: 5px;
}

/* Navigation Menu - Desktop */
.nav-menu ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 25px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: #2a6e3f;
  background-color: rgba(42, 110, 63, 0.05);
}

.nav-menu a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #2a6e3f;
  left: 50%;
  bottom: 0;
  transition: all 0.3s ease;
}

.nav-menu a:hover:after {
  width: 80%;
  left: 10%;
}

/* Dropdown Styles - Desktop */
.has-dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: inherit;
  font-size: inherit;
  color: #333;
  padding: 8px 12px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.dropdown-toggle:hover {
  color: #2a6e3f;
  background-color: rgba(42, 110, 63, 0.05);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 200px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 10px 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li {
  padding: 0;
}

.dropdown a {
  display: block;
  padding: 12px 20px;
  color: #555;
  transition: all 0.2s ease;
  border-radius: 0;
  text-align: left;
}

.dropdown a:hover {
  background-color: rgba(42, 110, 63, 0.1);
  color: #2a6e3f;
  padding-left: 25px;
}

.dropdown a:after {
  display: none;
}

/* Catalogue Button */
.nav-cta a {
  background: #e31e24;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(42, 110, 63, 0.2);
  transition: all 0.3s ease;
}

.nav-cta a:hover {
  background: rgb(255, 255, 255);
  transform: translateY(-2px);
  color: #e31e24;
  box-shadow: 0 6px 16px rgba(42, 110, 63, 0.3);
}

.nav-cta a:after {
  display: none;
}

/* Hamburger Menu - Mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.nav-toggle span {
  width: 100%;
  height: 3px;
  background-color: #2a6e3f;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 80px 30px 30px;
    transition: right 0.4s ease;
    overflow-y: auto;
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .nav-menu li {
    width: 100%;
    margin-bottom: 10px;
  }

  .nav-menu a,
  .dropdown-toggle {
    display: block;
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    font-size: 17px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-menu a:hover,
  .dropdown-toggle:hover {
    background-color: rgba(42, 110, 63, 0.1);
  }

  .nav-menu a:after {
    display: none;
  }

  /* Mobile Dropdown Styles */
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: rgba(42, 110, 63, 0.05);
    border-radius: 8px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0;
    margin-top: 5px;
    width: 100%;
  }

  .dropdown.active {
    max-height: 500px;
    padding: 10px 0;
  }

  .dropdown a {
    padding: 12px 25px;
    color: #555;
    font-size: 16px;
  }

  .dropdown a:hover {
    padding-left: 30px;
  }

  .has-dropdown {
    display: block;
    width: 100%;
  }

  .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
  }

  .dropdown-toggle i {
    transition: transform 0.4s ease;
  }

  .dropdown-toggle.active i {
    transform: rotate(180deg);
  }

  /* Mobile Catalogue Button */
  .nav-cta {
    margin-top: 20px;
    width: 100%;
  }

  .nav-cta a {
    justify-content: center;
    padding: 15px;
    font-size: 17px;
    border-radius: 10px;
  }

  /* Hamburger Animation */
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Overlay when menu is open */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
}
/* ============================
   CTA + FOOTER COMBINED
============================ */

.cta-footer {
  background-color: #f8f9fa;
}

/* ---------- CTA ---------- */

.cta-block {
  background: #e31e24;
  background-image: url(./img/GLUTARANGE-WEBP-1-scaled.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  color: #000000;
  padding: 80px 20px;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;

  /* glass effect (lighter) */
  background: #e31e24;
  opacity: 0.95;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  padding: 60px 50px;
  border-radius: 28px;

  /* glow + edge */
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* text clarity */
.cta-content h2,
.cta-content h3 {
  color: #ffffff;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  margin: 20px;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-primary:hover {
  cursor: pointer;
  transform: scale(1.04);
}
.cta-secondary:hover {
  cursor: pointer;
  transform: scale(1.04);
}

.cta-primary {
  background-color: #ffffff;
  color: #2a6e3f;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
}

.cta-secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .cta-content p {
    display: none;
  }
  .cta-content h2{
    margin-bottom: 20px;
  }
  .cta-content{
    padding: 40px 20px;
  }
}


/* ---------- FOOTER ---------- */

.footer {
  background-color: #ffffff;
  padding: 70px 20px 30px;
}

.footer-container {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h3,
.footer-col h4 {
  color: #1e2b23;
  margin-bottom: 14px;
}

.footer-col p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 15px;
  color: #555;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #2a6e3f;
}

.footer-contact li {
  font-size: 15px;
  color: #555;
}

/* Bottom */
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #777;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 26px;
  }

  .cta-content p {
    font-size: 16px;
  }
  .footer-col {
    text-align: center;
  }
}

/* ============================
   FLOATING ACTION BUTTONS
============================ */

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

/* Base button */
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover */
.float-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

/* Individual colors */
.float-btn.call {
  background: linear-gradient(135deg, #1e7f46, #2a6e3f);
}

.float-btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #1ebe5d);
}

.float-btn.email {
  background: linear-gradient(135deg, #3a7bd5, #2a5fb8);
}

/* ============================
   MOBILE ADJUSTMENT
============================ */

@media (max-width: 576px) {
  .floating-actions {
    right: 14px;
    bottom: 14px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
}

/* -------- Responsive -------- */
@media (max-width: 900px) {
  .catalogue-title {
    width: auto;
  }
  .live-catalogue {
    padding-top: 0;
  }
}

.bionext-hero {
  width: 100%;
  background: #eaf3f8;   /* pharma light background */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;     /* no scroll */
}

/* This is the frame that fits the image */
.bionext-hero-inner {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* The banner image itself */
.bionext-hero-inner img {
  height: 100%;
  width: 80%;          
  min-width: 80vw;
  max-width: none; 
  object-fit: contain;
}
@media (max-width: 900px) {
  .bionext-hero {
    height: auto;
  }
  .bionext-hero-inner img {
    width: 100%;
    height: auto;
  }
}



/* ===============================
   BioNext Product Section
================================ */

.bionext-range {
  padding: 80px 6%;
  background: #eff7fc;
  max-width: 1450px;
  margin: auto;

}

.bionext-range-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
/* Center the last card when odd number of items */
.bionext-range-container > :last-child:nth-child(odd) {
  grid-column: 1 / -1;       /* span full row */
  justify-self: center;     /* center it */
  max-width: 600px;         /* keep it same size */
}

/* Card */
.bionext-card {
  display: flex;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
  min-height: 230px;
}

.bionext-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Image */
.bionext-img {
  width: 60%;
  height: 230px;
}

.bionext-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.productname {
  width: 100%;
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
  font-weight: bold;
}

/* Content */
.bionext-content {
  width: 40%;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bionext-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.bionext-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 18px;
}

.bionext-content a {
  color: #26a6a6;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.bionext-content a:hover {
  color: #178f8f;
}

/* Tablet */
@media (max-width: 992px) {
  .bionext-range-container {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .bionext-card {
    flex-direction: column;
  }

  .bionext-img {
    width: 100%;
    height: 220px;
  }

  .bionext-content {
    width: 100%;
    padding: 25px;
  }
}
/* ------------------------------------------------------------------------------------------------------- */
.bn-infra {
  padding: 90px 6%;
  background: #eff7fc;
  margin: auto;
  max-width: 1450px;
}
.bn-infra-head {
  text-align: center;
  margin-bottom: 60px;
}
.bn-infra-head span {
  color: #2aa5a5;
  font-weight: 600;
  letter-spacing: 1px;
}
.bn-infra-head p {
  font-size: 26px;
  margin: 15px 0;
}
.bn-infra-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.bn-infra-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
}
.bn-infra-card:hover{
  transform: scale(1.05);
}
.bn-infra-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bn-infra-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: white;
}
.bn-infra-overlay h4 {
  font-size: 20px;
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  .bn-infra-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .bn-infra-grid {
    grid-template-columns: 1fr;
  }
}
/* ----------------------------------------------------------------------------------------- */
.bn-manufacturing {
  padding: 90px 6%;
  background:#eff7fc;
  max-width: 1450px;
  margin: auto;
}

.bn-manufacturing-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr; /* 🔥 wider content */
  gap: 90px;
  align-items: center;
}

.bn-label {
  color: #2aa5a5;
  font-weight: 600;
  letter-spacing: 1px;
}

.bn-manufacturing-content h2 {
  font-size: 48px;
  line-height: 1.1;
  margin: 15px 0 40px;
}

.bn-slide {
  display: none;
}
.bn-slide.active {
  display: block;
}

.bn-slide h3 {
  font-size: 30px;
  margin-bottom: 10px;
}

.bn-slide p {
  font-size: 18px;
  color: #555;
  max-width: 600px;
}

.bn-stats {
  display: flex;
  gap: 60px;
  margin-top: 40px;
}

.bn-stats div {
  text-align: center;
}
.bn-stats span {
  font-size: 38px;
  font-weight: 700;
  color: #2aa5a5;
}
.bn-stats p {
  font-size: 14px;
  color: #666;
}

.bn-slider-nav {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}
.bn-prev,
.bn-next {
  font-size: 36px;
  cursor: pointer;
}

.bn-manufacturing-image img {
  width: 500px;
  height: 400px;
  object-fit: 100% 100%;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
  .bn-manufacturing-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .bn-stats {
    justify-content: center;
  }
}
@media (max-width: 768px) {

  /* Whole section */
  .bn-manufacturing {
    padding: 60px 16px;
    overflow-x: hidden;
  }
  
  .bn-manufacturing-wrap {
    width: 100%;

    max-width: 1400px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Content block */
  .bn-manufacturing-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: center;
  }

  .bn-manufacturing-content h2 {
    font-size: 28px;
    line-height: 1.3;
    word-break: break-word;
  }

  .bn-slide h3 {
    font-size: 22px;
  }

  .bn-slide p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 100%;
    margin-inline: auto;
  }

  /* Stats container */
  .bn-stats {
    width: 100%;
    max-width: 320px;
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
  }

  .bn-stats div {
    width: 100%;
    text-align: center;
  }

  /* Numbers */
  .bn-stats span {
    font-size: 32px;
  }

  .bn-stats p {
    font-size: 13px;
  }

  /* Slider arrows */
  .bn-slider-nav {
    justify-content: space-around;
  }
  .bn-manufacturing-image img{
  transition: opacity .4s ease;
}


  /* Image */
  .bn-manufacturing-image {
    width: 100%;
    margin-top: 20px;
  }

  .bn-manufacturing-image img {
    width: 100%;
    height: auto;
    border-radius: 14px;
  }
}


.bn-formulation {
  padding: 80px 8%;
  background: linear-gradient(135deg,#eef9f8,#ffffff);
}

.bn-formulation-wrap {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* Left content */
.bn-formulation-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0f2f2d;
  margin-bottom: 15px;
}

.bn-formulation-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 30px;
}

/* Pills */
.bn-formulation-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.bn-formulation-tags span {
  padding: 12px 24px;
  background: linear-gradient(135deg,#007c75,#00b5a5);
  color: #fff;
  border-radius: 40px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 8px 25px rgba(0,180,165,.4);
  transition: all 0.5s ease;
}
.bn-formulation-tags span:hover{
  transform: scale(1.05);
}

/* Certificates */
.bn-formulation-certs {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
}

.bn-formulation-certs div {
  text-align: center;
}

.bn-formulation-certs img {
  height: 80px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.15));
}

.bn-formulation-certs p {
  margin-top: 8px;
  font-weight: 700;
  color: #007c75;
}

/* Right image */
.bn-formulation-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0,0,0,.2);
}

/* Mobile */
@media (max-width: 900px) {
  .bn-formulation-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bn-formulation-tags,
  .bn-formulation-certs {
    justify-content: center;
  }
}


.bn-timeline{
  padding:100px 6%;
  background:#f9fbfd;
}

.bn-timeline-head{
  text-align:center;
  margin-bottom:60px;
}

.bn-timeline-head span{
  color:#2aa5a5;
  font-weight:600;
}

.bn-timeline-head h2{
  font-size:36px;
  margin-top:10px;
}

.bn-timeline-track{
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:relative;
}

/* Item */
.bn-timeline-item{
  text-align:center;
  max-width:220px;
}

/* Circle */
.bn-circle{
  width:120px;
  height:120px;
  border-radius:50%;
  background:#fff;
  padding:10px;
  box-shadow:0 15px 40px rgba(0,0,0,.12);
  margin:auto;
  overflow:hidden;
}

.bn-circle img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
}

.bn-timeline-item h4{
  margin:18px 0 8px;
  font-size:18px;
}

.bn-timeline-item p{
  font-size:14px;
  color:#666;
}

/* Line */
.bn-line{
  flex:1;
  height:2px;
  background:#2aa5a5;
  margin:0 20px;
}

/* Active center */
.bn-timeline-item.active .bn-circle{
  transform:scale(1.15);
  box-shadow:0 20px 60px rgba(42,165,165,.35);
}

/* Mobile */
@media(max-width:900px){
  .bn-timeline-track{
    flex-direction:column;
  }
  .bn-line{
    width:2px;
    height:40px;
    margin:20px 0;
  }
}

/* ================================================================================================== */
/* ================= GLOBAL ================= */
.prod-container {
  max-width: 1350px;
  margin: auto;
  padding: 0 20px;
}

.center {
  text-align: center;
}

/* ================= HERO ================= */
.prod-hero {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
}


.prod-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.prod-hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.prod-hero h1 {
  font-size: 46px;
}

.prod-hero p {
  font-size: 18px;
  margin-top: 6px;
}

/* ================= INFO ================= */
.prod-info {
  padding: 90px 0;
  background: #f7f8fa;
}

.prod-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
}

.prod-text h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

.prod-text h3 {
  font-size: 24px;
  margin-top: 40px;
  position: relative;
}

.prod-text h3::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #e10600;
  display: block;
  margin-top: 8px;
}

.prod-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 14px;
}

/* BUTTON */
.btn-main {
  display: inline-block;
  margin-top: 35px;
  padding: 14px 36px;
  background: #e10600;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-main:hover {
  background: #b70400;
  transform: translateY(-2px);
}

/* ================= FEATURES ================= */
.prod-features h3 {
  font-size: 24px;
  margin-bottom: 18px;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.feature-cards.small {
  grid-template-columns: repeat(2, 1fr);
}

.f-card {
  background: #fff;
  padding: 18px 20px;
  border-radius: 14px;
  font-size: 15px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.f-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.12);
}

/* ================= PRODUCTS ================= */
.prod-products {
  padding: 90px 0;
}

.prod-products h2 {
  font-size: 34px;
  margin-bottom: 55px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(0,0,0,0.1);
  transition: 0.4s;
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
}

.product-card span {
  display: block;
  padding: 22px;
  font-size: 19px;
  text-align: center;
  font-weight: bold;
}

.product-card:hover {
  transform: translateY(-10px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .prod-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .prod-hero h1 {
    font-size: 38px;
  }
  .prod-hero-inner{
    text-align: center;
  }
}

@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .prod-hero {
    height: 240px;
  }
}
