/* ===== Global Reset and Font ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}




html,
body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

html, body {
  max-width: 100%;
}

/* ===== Header and Video Background ===== */
header {
  position: relative;
  /* height: 100vh; */
  overflow: hidden;
  color: white;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(60%);
}
/* ================= */


/* Hero Section with Video */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    color: white;
}

.hero-section .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(60%);
}

/* Adjust header padding for other pages */
header {
    padding-top: 70px;
}

/* Header content positioning */
.header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 700px;
    padding: 20px;
    z-index: 2;
    width: 90%;
}




















/* ===== Navigation Bar ===== */
.logo {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1px;
}

.logo span {
  color: #ff5c00;
}
nav {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
}


nav .logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: #ff5c00;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

nav ul li a:hover::after {
  transform: scaleX(1);
}

/* ===== Header Content ===== */
.header-content h1 {
  font-size: 3rem;
  line-height: 1.3;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}

.header-content h1 span {
  color: #ff5c00;
}

.header-content {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 700px;
  padding: 20px;
  z-index: 2;
}

.header-content h1 {
  font-size: 3rem;
  line-height: 1.3;
  font-weight: bold;
  margin-bottom: 20px;
}

.header-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}


/* Add this to your existing CSS */
/* ===== Mobile Navbar ===== */
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

nav ul {
  transition: all 0.3s ease;
}

nav ul.show {
  display: flex;
}

/* Prevent horizontal scrolling */
body {
  overflow-x: hidden;
}

/* ===== Responsive Navbar ===== */
@media (max-width: 768px) {
  nav {
    padding: 15px 20px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  nav .logo {
  font-size: 1rem;
  
}
  .navbar-toggle {
    display: block;
    z-index: 100;
  }

  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.3s ease;
    z-index: 99;
  }

  nav ul.show {
    right: 0;
  }

  nav ul li a {
    font-size: 1.2rem;
  }

  /* Adjust header content for mobile */
  .header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
    padding: 20px;
  }

  .header-content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .header-content p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}

/* Fix for banner video on mobile */
@media (max-width: 480px) {
  .header-content h1 {
    font-size: 1.8rem;
  }
  
  .bg-video {
    width: auto;
    height: 100%;
  }
}




.btn {
  background-color: #ff5c00;
  color: white;
  padding: 12px 28px;
  font-size: 1rem;
  border: none;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #e14a00;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  nav {
    padding: 20px 30px;
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
    margin-top: 10px;
  }

  .header-content h1 {
    font-size: 2.2rem;
  }

  .header-content p {
    font-size: 1rem;
  }

  .btn {
    padding: 10px 22px;
  }
}
/* ===== Build Section ===== */
.build-section {
  padding: 80px 5%;
  background-color: #000;
  /* Black background */
  color: #fff;
}

.build-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
}

/* ==== Left Image Grid ==== */
.build-images {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-items: center;
  align-items: center;
}

.build-images img {
  width: 100%;
  max-width: 295px;
  object-fit: contain;
  background-color: #111;
  padding: 10px;
  border-radius: 10px;
  /* box-shadow: 0 4px 15px rgba(255, 92, 0, 0.3); */
}


.build-images:hover {
  transform: scale(1.1);
}

/* ==== Right Content Side ==== */
.build-content {
  flex: 1;
  max-width: 600px;
}

.build-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.build-content .highlight {
  color: #ff5c00;
}

.build-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.build-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.build-content li {
  font-size: 1rem;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.build-content li::before {
  content: '✔';
  color: #ff5c00;
  position: absolute;
  left: 0;
}

/* Button Styling */
.btn {
  background-color: #ff5c00;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #e25000;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .build-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .build-content {
    max-width: 100%;
  }

  .build-images {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .build-images {
    grid-template-columns: 1fr;
  }

  .build-images img {
    max-width: 70%;
  }
}

/* ===== Services Section ===== */
.services-section {
  background-color: #000;
  color: #fff;
  /* padding-top: 0px;   */
    padding-right: 20px;
    padding-bottom: 70px;
    padding-left: 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 2rem;
  letter-spacing: 2px;
  color: #ff5c00;
  margin-bottom: 10px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 0 20px;
}

/* Individual Service Card */
.service-card {
  background-color: #111;
  border-radius: 12px;
  text-align: center;
  padding: 30px 20px;
  box-shadow: 0 0 10px rgba(255, 92, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(255, 92, 0, 0.3);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #ff5c00;
}

/* Polygon (Hexagon) Icon Shape */
.icon-box {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(255, 92, 0, 0.1);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.service-card:hover .icon-box {
  background-color: rgba(255, 92, 0, 0.25);
  transform: scale(1.05);
}

/* Responsive tweaks */
@media screen and (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
  }

  .service-card h3 {
    font-size: 1rem;
  }

  .icon-box {
    width: 80px;
    height: 80px;
  }
}
/* ================ */
.about-section {
  background-color: #0d0d0d;
  color: #ffffff;
  padding: 0px 5%;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #ff5c00;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  color: #d3d3d3;
  line-height: 1.6;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  /* box-shadow: 0 4px 20px rgba(255, 92, 0, 0.3); */
}

/* Highlight Boxes */
.about-highlights {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.highlight-box {
  background-color: #1a1a1a;
  flex: 1;
  min-width: 220px;
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 10px rgba(255, 92, 0, 0.15);
}

.highlight-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 4px 25px rgba(255, 92, 0, 0.35);
}

.highlight-box img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.highlight-box h3 {
  font-size: 1.2rem;
  color: #ff5c00;
  margin-bottom: 8px;
}

.highlight-box p {
  font-size: 1rem;
  color: #d3d3d3;
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 100%;
  }

  .about-highlights {
    flex-direction: column;
    align-items: center;
  }
}

/* ============== */
/* === Product Section === */


.products-section {
  background-color: #0d0d0d;
  color: #fff;
  padding: 80px 5%;
}

.products-heading {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.products-heading h2 {
  font-size: 2.5rem;
  color: #ff5c00;
  margin-right: 20px;
  white-space: nowrap;
}

.heading-line {
  flex-grow: 1;
  height: 2px;
  background-color: #ffffff;
  opacity: 0.2;
}

/* Grid layout: 4 top, 3 below */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* Product Card Style */
.product-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  text-align: center;
  transition: transform 0.4s ease;
  box-shadow: 0 2px 10px rgba(255, 92, 0, 0.1);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-info {
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.product-card h3 {
  font-size: 1.2rem;
  color: #ff5c00;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 0.95rem;
  color: #d3d3d3;
}

/* Hover Effect */
.product-card:hover img {
  transform: scale(1.1);
}

.product-card:hover .product-info {
  transform: translateY(0%);
}

/* Responsive Grid Control */
@media (min-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .products-grid>.product-card:nth-child(n+5) {
    grid-column: span 1;
  }
}
/* =============== */
.contact-section {
  background-color: #000;
  /* Black background */
  color: #fff;
  padding: 70px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-text {
  flex: 1;
  min-width: 280px;
}

.contact-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ff5c00;
}

.contact-text p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.contact-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.contact-text ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.contact-text ul li i {
  color: #ff5c00;
  margin-right: 10px;
}

.reach-us h3 {
  margin-top: 20px;
  color: #ff5c00;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.reach-us a {
  color: #ff5c00;
  text-decoration: none;
}

.reach-us a:hover {
  text-decoration: underline;
}

.contact-form {
  flex: 1;
  min-width: 280px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  background-color: #ff5c00;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.contact-form .btn:hover {
  background-color: #e35200;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}
/* ============== */
.footer {
  background-color: black;
  color: white;
  padding: 60px 5%;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 220px;
  padding: 20px;
  color: #fff;
}

.footer-column h1 {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}

.footer-column h1 span {
  color: #ff5c00;
}

.footer-column h4 {
  color: #ff5c00;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: white;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #ff5c00;
}

.footer-logo {
  width: 140px;
  margin-bottom: 15px;
}

.footer-column i {
  margin-right: 8px;
  color: #ff5c00;
}

p img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
  filter: brightness(0) saturate(100%) invert(73%) sepia(94%) saturate(765%) hue-rotate(358deg) brightness(100%) contrast(103%);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #666;
}

/* Social Icons */
.social-icons {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

.social-icon {
  color: #fff;
  font-size: 1.2rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
  color: #ff5c00;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
}



/* products  */


/* Product Hero Section */
.product-hero {
    position: relative;
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('images/cutting-wheel-background.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.product-hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.product-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.product-hero h1 span {
    color: #ff5c00;
}

.product-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Product Intro Section */
.product-intro {
    background-color: #0d0d0d;
    color: white;
    padding: 80px 5%;
}

.product-intro-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-intro-image {
    flex: 1;
}

.product-intro-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(255, 92, 0, 0.2);
}

.product-intro-text {
    flex: 1;
}

.product-intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.product-intro-text h2 span {
    color: #ff5c00;
}

.product-intro-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #d3d3d3;
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #1a1a1a;
    padding: 15px;
    border-radius: 8px;
}

.spec-item i {
    font-size: 1.5rem;
    color: #ff5c00;
}

.spec-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #ff5c00;
}

.spec-item p {
    font-size: 0.9rem;
    margin: 0;
    color: #d3d3d3;
}

/* Product Features Section */
.product-features {
    background-color: #000;
    color: white;
    padding: 80px 5%;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.product-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.product-features h2 span {
    color: #ff5c00;
}

.features-content {
    /* max-width: 800px; */
    margin: 0 auto;
}

.features-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #d3d3d3;
}

/* Product Usage Section */
.product-usage {
    background-color: #0d0d0d;
    color: white;
    padding: 80px 5%;
}

.usage-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.usage-text {
    flex: 1;
}

.usage-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.usage-text h2 span {
    color: #ff5c00;
}

.usage-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #d3d3d3;
}

.usage-image {
    flex: 1;
    position: relative;
}

.usage-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(255, 92, 0, 0.2);
}

.safety-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 92, 0, 0.9);
    padding: 10px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
}

.safety-badge i {
    font-size: 1.2rem;
}

/* Product Applications Section */
.product-applications {
    background-color: #000;
    color: white;
    padding: 80px 5%;
}

.applications-header {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
}

.applications-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.applications-header h2 span {
    color: #ff5c00;
}

.applications-header p {
    font-size: 1.1rem;
    color: #d3d3d3;
}

.applications-content {
    /* max-width: 800px; */
    margin: 0 auto;
}

.applications-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #d3d3d3;
}

/* Product Advantages Section */
.product-advantages {
    background-color: #0d0d0d;
    color: white;
    padding: 80px 5%;
}

.advantages-container {
    max-width: 1200px;
    margin: 0 auto;
}

.product-advantages h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.product-advantages h2 span {
    color: #ff5c00;
}

.advantages-content {
    /* max-width: 800px; */
    margin: 0 auto;
}

.advantages-content h3 {
    font-size: 1.5rem;
    color: #ff5c00;
    margin: 30px 0 15px;
}

.advantages-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #d3d3d3;
}

/* Product CTA Section */
.product-cta {
    background-color: #000;
    color: white;
    padding: 80px 5%;
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-text h2 span {
    color: #ff5c00;
}

.cta-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #d3d3d3;
    line-height: 1.6;
}

.cta-contacts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-method i {
    font-size: 1.2rem;
    color: #ff5c00;
    width: 30px;
}

.contact-method p {
    margin: 0;
    font-size: 1rem;
}

.cta-form {
    flex: 1;
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
}

.cta-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: white;
    font-size: 1rem;
}

.cta-form textarea {
    resize: vertical;
    min-height: 120px;
}

.cta-form button {
    background-color: #ff5c00;
    color: white;
    border: none;
    padding: 15px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-form button:hover {
    background-color: #e35200;
}

/* Responsive Design */
@media (max-width: 992px) {
    .product-intro-container,
    .usage-container,
    .cta-container {
        flex-direction: column;
    }

    .product-intro-image,
    .usage-image {
        order: -1;
    }

    .product-specs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-hero h1 {
        font-size: 2.5rem;
    }

    .product-intro-text h2,
    .product-features h2,
    .usage-text h2,
    .applications-header h2,
    .product-advantages h2,
    .cta-text h2 {
        font-size: 2rem;
    }
}




/* About Hero Section */
.about-hero {
    position: relative;
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('images/worker-wearing-gloves-front-view.avif') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.about-hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.about-hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.about-hero h1 span {
    color: #ff5c00;
}

.about-hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

/* About Intro Section */
.about-intro {
    background-color: #0d0d0d;
    color: white;
    padding: 80px 5%;
}

.about-intro-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-intro-text {
    flex: 1;
}

.about-intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-intro-text h2 span {
    color: #ff5c00;
}

.about-intro-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #d3d3d3;
}

.about-mission {
    background-color: #1a1a1a;
    padding: 25px;
    border-left: 4px solid #ff5c00;
    margin-top: 30px;
}

.about-mission h3 {
    color: #ff5c00;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.about-mission p {
    font-style: italic;
    margin: 0;
}

.about-intro-image {
    flex: 1;
    position: relative;
}

.about-intro-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(255, 92, 0, 0.2);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background-color: #ff5c00;
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

.experience-badge span {
    font-size: 2rem;
    display: block;
    line-height: 1;
}

.experience-badge p {
    margin: 5px 0 0;
    font-size: 0.9rem;
}


/* About Values Section */
.about-values {
    background-color: #0d0d0d;
    color: white;
    padding: 80px 5%;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.about-values h2 span {
    color: #ff5c00;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(255, 92, 0, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 92, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 2rem;
    color: #ff5c00;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ff5c00;
}

.value-card p {
    font-size: 1rem;
    color: #d3d3d3;
    line-height: 1.6;
}


/* About CTA Section */
.about-cta {
    background-color: #000;
    color: white;
    padding: 80px 5%;
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content h2 span {
    color: #ff5c00;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #d3d3d3;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    background-color: #ff5c00;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e35200;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #ff5c00;
    color: #ff5c00;
}

.btn-outline:hover {
    background-color: rgba(255, 92, 0, 0.1);
}

.cta-image {
    flex: 1;
}

.cta-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(255, 92, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-intro-container,
    .cta-container {
        flex-direction: column;
    }

    .about-intro-image {
        order: -1;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline-year {
        left: -50px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-intro-text h2,
    .about-values h2,
    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}


