/* ========== Basic Reset ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: inherit;
}

body {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #222;
  line-height: 1.6;
  /* overflow-x: hidden; */
}

/* Common container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

img {
  max-width: 100%;
}

/* ========== HEADER ========== */
.top-header {
  background-color: #ffffff;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-right a {
  text-decoration: none;
  color: black;
  font-weight: 200;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color: #fff;
}

.logo-main {
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 2px;
}

.logo-sub {
  font-size: 12px;
}
.logo img {
  width: 15rem;
  height: 3rem;
  /* border-radius: 10px; */
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.nav-links a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Right part - Search + Button */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  padding: 4px 10px;
}

.search-box input {
  border: none;
  outline: none;
  font-size: 13px;
  width: 150px;
}

.search-icon {
  font-size: 14px;
  margin-left: 6px;
}

/* Buttons */
.btn {
  border: none;
  cursor: pointer;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline {
  background: #fff;
  color: #000000;
}

.btn-outline:hover {
  background: #fdc2c2;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  /* color: white; */
  font-size: 24px;
  cursor: pointer;
}

/* ===== SLIDER ===== */
.banner-slider {
  width: 100%;
  /* max-width:1200px; */
  height: 900px;
  /* margin-top:20px; */
  position: relative;
  overflow: hidden;
  /* border-radius:15px; */
}

/* SLIDES */
.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

.slide img {
  width: 100%;
  /* height:100%; */
  object-fit: cover;
}

/* ACTIVE */
.slide.active {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .banner-slider {
    height: 250px;
  }
  .logo img {
    height: auto;
  }
}

@media (max-width: 480px) {
  .banner-slider {
    height: 200px;
  }
  .logo img {
    height: auto;
  }
}

/* ========== HERO SECTION ========== */
.hero {
  padding: 70px 0;
}

.hero-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

/* Left big text and images */
.hero-left {
  flex: 1.2;
}

.hero-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.hero-left h1 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #333;
}

/* Oval images inside text */
.hero-img {
  width: 130px;
  height: 90px;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right side */
.hero-right {
  flex: 1;
  max-width: 360px;
}

.hero-text {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 24px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-primary {
  background: #5b0b0c;
  color: #fff;
}

.btn-primary:hover {
  background: #5b0b0c;
}

.btn-link {
  background: transparent;
  color: #5b0b0c;
  padding-left: 0;
}

.btn-link:hover {
  text-decoration: underline;
}

/* ===== Factory Full-Width Image Section ===== */
.factory-section {
  width: 100%;
  /* height: 420px; */
  overflow: hidden;
}

.factory-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================= ABOUT SECTION ================= */
.about-section {
  background: #5b0b0c;
  padding: 80px 0 120px;
  color: #fff;
}

.about-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.about-tag {
  font-size: 16px;
  opacity: 0.9;
}

.about-title {
  margin-top: 20px;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
}

/* Right Side Text */
.about-right p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.learn-more {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.learn-more:hover {
  border-color: #fff;
}

/* ================= VIDEO SECTION ================= */
.video-section {
  text-align: center;
  margin-top: -60px;
  padding: 0 20px;
}

.video-wrapper {
  width: 80%;
  max-width: 800px;
  margin: auto;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

/* Title */
.video-title {
  margin-top: 5rem;
  font-size: 36px;
  font-weight: 700;
  color: black;
}

/* ============= FULL WIDTH TOP IMAGE ============= */
.factory-hero {
  padding: 0 20px;
  margin: 80px 0;
}

.factory-hero img {
  width: 100%;
  /* height: 500px; */
  object-fit: cover;
  border-radius: 14px;
  display: block;
  margin: auto;
}

/* ============= SECTION LAYOUT ============= */
.factory-section {
  padding: 80px 0;
}

.factory-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

/* LEFT TEXT */
.factory-text h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.factory-text p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #444;
}

/* RIGHT IMAGES */
.factory-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.factory-images img {
  width: 100%;
  /* height: 200px; */
  object-fit: cover;
  /* border-radius: 12px; */
}

/* ============= REVIEW SECTION ============= */
.review-section {
  background: #f8f8f8;
  padding: 80px 0;
  text-align: center;
}

.review-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.review-header {
  margin-bottom: 60px;
}

.review-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.review-header p {
  color: #555;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.stat-item {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #5b0b0c;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 18px;
  color: #555;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: #555;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.author-info p {
  color: #777;
  font-size: 14px;
}

/* MAIN WRAPPER */
.product-card-section {
  width: 100%;
  padding: 50px 0;
  background: #efefef;
  display: flex;
  justify-content: center;
}

/* BLACK PRODUCT CARD */
.product-card {
  width: 85%;
  max-width: 1300px;
  background: #000;
  border-radius: 24px;
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

/* LEFT TEXT AREA */
.product-info {
  max-width: 40%;
}

.tag {
  display: inline-block;
  background: #444;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 15px;
  margin-bottom: 16px;
}

.product-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin: 10px 0 20px;
}

.product-desc {
  margin: 10px 0 25px;
  font-size: 18px;
  opacity: 0.9;
}

.price {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* BUTTON */
.enquiry-btn {
  background: #000; /* Black background */
  color: #fff; /* White text */
  padding: 12px 28px;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  border: 2px solid #ff0000; /* White border */
  transition: 0.3s ease;

  /* === RED OUTER SHADOW === */
  box-shadow: 0px 0px 15px rgba(255, 0, 0, 0.8);
}

.enquiry-btn:hover {
  background-color: red;
  box-shadow: 0px 0px 25px rgba(255, 0, 0, 1); /* Strong glow */
  border-color: #ff0000;
  /* White → Red border on hover */
}

/* RIGHT IMAGE */
.product-image img {
  width: 500px;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
}

/* BLUE BACKGROUND */
.help-section {
  background: #5b0b0c;
  padding: 120px 0;
  display: flex;
  justify-content: center;
}

/* WHITE CARD */
.help-card {
  background: #fff;
  width: 80%;
  max-width: 1200px;
  padding: 50px 60px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

/* LEFT SIDE */
.help-tag {
  color: #5b0b0c;
  font-weight: 600;
  font-size: 16px;
}

.help-title {
  margin-top: 10px;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
}

/* RIGHT SIDE */
.help-right p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #444;
}

.help-btn {
  background: black;
  color: white;
  border: 3px solid red;
  padding: 12px 28px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0px 0px 15px rgba(255, 0, 0, 0.8);
}

.help-btn:hover {
  background: red;
  color: white;
  box-shadow: 0px 0px 25px rgba(255, 0, 0, 1); /* Strong glow */
  border-color: #ff0000;
  /* border: 2px solid black; */
}

/* NEWS SECTION MAIN */
.news-section {
  width: 90%;
  max-width: 1400px;
  margin: 80px auto;
}

/* HEADER */
.news-header {
  text-align: center;
  margin-bottom: 60px;
}

.news-header h2 {
  font-size: 42px;
  font-weight: 700;
}

.news-header p {
  margin-top: 10px;
  color: #555;
  font-size: 18px;
}

/* GRID */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.news-card {
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-card img {
  width: 100%;
  height: 220px;
  border-radius: 14px;
  object-fit: cover;
}

/* CATEGORY TAG */
.category {
  display: inline-block;
  margin-top: 12px;
  background: #f0f0f0;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 14px;
  color: #444;
}

/* TITLE */
.news-title {
  margin: 14px 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

/* DESCRIPTION */
.news-desc {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

/* FOOTER */
.news-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.author-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.author,
.date,
.read {
  font-size: 14px;
  color: #555;
}

.dot {
  color: #999;
}

/* POPUP OVERLAY */
.popup-overlay {
  display: none; /* popup hidden on load */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(2px);
}

/* POPUP BOX */
.popup-box {
  width: 450px;
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  position: relative;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.popup-box img {
  width: 100%;
  height: 230px;
  border-radius: 12px;
  object-fit: cover;
}

/* CLOSE BUTTON */
.popup-close {
  position: absolute;
  right: 18px;
  top: 10px;
  font-size: 30px;
  cursor: pointer;
  color: #444;
}

.popup-title {
  font-size: 22px;
  margin-top: 15px;
  font-weight: 700;
}

.popup-details {
  margin-top: 10px;
  list-style: none;
  padding: 0;
}

.popup-details li {
  margin: 6px 0;
  font-size: 16px;
}

/* ================= NEWSLETTER ================= */
.newsletter-section {
  text-align: center;
  padding: 80px 0;
  background: #f4f4f4;
}

.newsletter-section h2 {
  font-size: 36px;
  font-weight: 700;
}

.newsletter-section p {
  margin-top: 10px;
  color: #666;
  font-size: 18px;
}

.newsletter-form {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.newsletter-form input {
  width: 350px;
  padding: 12px 18px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 30px;
  outline: none;
}

.newsletter-form button {
  padding: 12px 28px;
  background: black;
  border: none;
  border-radius: 30px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0px 0px 15px rgba(255, 0, 0, 0.8);
}

.newsletter-form button:hover {
  background-color: #5b0b0c;
  box-shadow: 0px 0px 25px rgba(255, 0, 0, 1); /* Strong glow */
  border-color: #ff0000;
}

/* ================= FOOTER ================= */
.footer-section {
  background: #5b0b0c;
  color: #fff;
  padding: 70px 0 40px;
}

.footer-container {
  width: 90%;
  max-width: 1500px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 40px;
}

/* LEFT SIDE */
.footer-logo {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.footer-logo span {
  font-size: 16px;
  font-weight: 400;
}

.footer-desc {
  margin: 25px 0;
  line-height: 1.6;
  font-size: 16px;
}

.footer-address {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  font-size: 15px;
}

/* RIGHT SIDE */
.footer-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-column h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-column a {
  display: block;
  text-decoration: none;
  color: #fff;
  opacity: 0.85;
  margin-bottom: 10px;
  font-size: 15px;
  transition: opacity 0.3s ease;
}

.footer-column a:hover {
  opacity: 1;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: white;
  color: #1a5276;
  transform: translateY(-3px);
}

/* FOOTER BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 50px;
  font-size: 14px;
  opacity: 0.8;
}
/* Contact Info */
.footer-contact p {
  margin: 8px 0;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  font-size: 18px;
  color: #fff;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 1100px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-right {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #1a5276;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-container {
    flex-direction: column;
  }

  .hero-left h1 {
    font-size: 40px;
  }

  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-title {
    font-size: 36px;
  }

  .factory-container {
    grid-template-columns: 1fr;
  }

  .product-card {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }

  .product-info {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .product-image img {
    width: 100%;
  }

  .help-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .video-wrapper {
    width: 95%;
  }

  .factory-images {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .footer-right {
    grid-template-columns: 1fr;
  }

  .footer-address {
    flex-direction: column;
    gap: 20px;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }
  .btn-outline {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-line {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-img {
    width: 110px;
    height: 75px;
  }

  .hero-right {
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-form input {
    width: 90%;
  }

  .nav-right {
    gap: 10px;
  }

  .search-box input {
    width: 120px;
  }
}

@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 32px;
  }

  .about-title,
  .video-title,
  .factory-text h2 {
    font-size: 28px;
  }

  .product-title {
    font-size: 36px;
  }

  .help-title {
    font-size: 32px;
  }

  .news-header h2 {
    font-size: 32px;
  }

  .newsletter-section h2 {
    font-size: 28px;
  }

  .review-header h2 {
    font-size: 32px;
  }

  .stat-number {
    font-size: 36px;
  }
}

/* ===== DROPDOWN BASE ===== */
.nav-item {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

/* Dropdown box */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 999;
}

/* Dropdown items */
.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: #000000;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
}

/* ===== DESKTOP HOVER ===== */
@media (min-width: 769px) {
  .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    background: transparent;
    padding-left: 15px;
  }

  .dropdown-menu a {
    padding: 8px 0;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }
}

/* =========================================================productpage=============================== */

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  color: #111;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== COLOR THEME (preserved) ===== */
:root {
  --accent: #8b0000;
  --dark: #0d0d0d;
  --light: #ffffff;
  --gray-light: #f5f5f5;
  --text-dark: #111;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--accent);
}

.section-title-center::after {
  left: 50%;
  transform: translateX(-50%);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

/* ===== BUTTON ===== */
.btn1 {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    background 0.3s;
  border: none;
  cursor: pointer;
}

.btn1:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 30px -10px rgba(139, 0, 0, 0.4);
  background: #a00000;
}

.btn1-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn1-outline:hover {
  background: var(--accent);
  color: #fff;
}

/* ===== HERO SECTION ===== */
.product-hero {
  min-height: 110vh;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, #fff 55%, var(--accent) 55%);
  padding: 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
}

.hero-content {
  padding: 0 4rem 0 8%;
}

.hero-preline {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.8rem;
  color: var(--accent);
  margin: 0.5rem 0 1.5rem;
  font-weight: 600;
}

.hero-description {
  font-size: 1.2rem;
  margin: 2rem 0 2.5rem;
  max-width: 500px;
}

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-media img {
  width: 400px;
  border-radius: 30px;
  box-shadow: 0 50px 70px -20px rgba(0, 0, 0, 0.5);
  transform: scale(1.1);
  transition: transform 0.4s;
  object-fit: contain;
}

.hero-media img:hover {
  transform: scale(1.12) rotate(1deg);
}

/* ===== PRODUCT GALLERY ===== */
.gallery-section {
  padding: 100px 0;
  background: var(--gray-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.15);
  transition: all 0.4s;
  aspect-ratio: 1/1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 40px -10px rgba(139, 0, 0, 0.3);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
  padding: 1.5rem 1rem 1rem;
  transform: translateY(100%);
  transition: transform 0.4s;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.gallery-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ===== PRODUCT DESCRIPTION ===== */
.description-section {
  padding: 100px 0;
  background: #fff;
}

.description-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.2rem;
  color: #333;
  line-height: 1.8;
  position: relative;
}

.description-content::before {
  content: "“";
  font-size: 8rem;
  color: var(--accent);
  opacity: 0.1;
  position: absolute;
  top: -40px;
  left: -50px;
  font-family: serif;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
  padding: 120px 0;
  background: var(--dark);
  color: #fff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem 2rem;
  border-radius: 30px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  clip-path: circle(0% at 50% 50%);
  transition: clip-path 0.4s;
  z-index: -1;
}

.benefit-card:hover {
  transform: translateY(-10px);
  border-color: transparent;
}

.benefit-card:hover::before {
  clip-path: circle(150% at 50% 50%);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
  transition: color 0.3s;
}

.benefit-card:hover .benefit-icon {
  color: #fff;
}

.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.benefit-card p {
  opacity: 0.9;
}

/* ===== LAST BENEFIT CARD FULL WIDTH (DESKTOP ONLY) ===== */
@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefit-card:last-child {
    grid-column: 1 / -1;
    /* span full row */
    max-width: 1400px;
    margin: 0 auto;
    /* center horizontally */
    text-align: center;
    /* center text */
  }

  .benefit-card:last-child .benefit-icon {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== SUPPLIER SECTION ===== */
.supplier-section {
  padding: 100px 0;
  background: #fff;
}

.supplier-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.supplier-content h2 {
  margin-bottom: 1.5rem;
}

.supplier-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.supplier-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
}

.stat-label {
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.supplier-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.3);
}

/* ===== KEY FEATURES ===== */
.features-section {
  padding: 120px 0;
  background: var(--gray-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 3rem;
}

.feature-item {
  background: #fff;
  padding: 2rem;
  border-radius: 30px;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.feature-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--accent);
  transition: height 0.3s;
  z-index: -1;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 40px -10px rgba(139, 0, 0, 0.3);
}

.feature-item:hover::after {
  height: 100%;
  opacity: 0.1;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feature-item p {
  color: #555;
}

/* ===== EXPORTER SECTION ===== */
.exporter-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
  color: #fff;
}

.exporter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.exporter-content h2 {
  color: #fff;
}

.exporter-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.world-map {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 30px;
  text-align: center;
}

.world-map img {
  width: 100%;
  filter: brightness(0.8) contrast(1.2);
}

.country-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

.country-tag {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}

.country-tag:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* ===== CONTACT BANNER ===== */
.contact-banner {
  padding: 80px 0;
  background: var(--accent);
  color: #fff;
  text-align: center;
}

.contact-banner h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-banner p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.contact-banner .btn1 {
  background: #fff;
  color: var(--accent);
  font-size: 1.2rem;
  padding: 1rem 3rem;
}

.contact-banner .btn1:hover {
  background: var(--dark);
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  .hero-grid,
  .supplier-wrapper,
  .exporter-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    padding: 4rem 5% 2rem;
  }

  .product-hero {
    background: linear-gradient(150deg, #fff 70%, var(--accent) 70%);
  }

  .hero-media img {
    transform: scale(1);
    margin-bottom: 2rem;
  }

  .gallery-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid,
  .features-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .supplier-stats {
    flex-direction: column;
    gap: 1rem;
  }
}
