/* Home Page Css */

.hero-main {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  color: #ffffff;
  background: #0d2238;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  animation: bgSlider 10s infinite;
}

@keyframes bgSlider {
  0%,
  45% {
    background-image:
      linear-gradient(rgba(7, 25, 44, 0.72), rgba(7, 25, 44, 0.82)),
      url("../Images/slider.jpg");
  }

  50%,
  95% {
    background-image:
      linear-gradient(rgba(7, 25, 44, 0.72), rgba(7, 25, 44, 0.82)),
      url("../Images/ms-pipe.jpg");
  }

  100% {
    background-image:
      linear-gradient(rgba(7, 25, 44, 0.72), rgba(7, 25, 44, 0.82)),
      url("../Images/matelcoil.jpg");
  }
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 25, 44, 0.85) 0%,
    rgba(7, 25, 44, 0.55) 50%,
    rgba(7, 25, 44, 0.72) 100%
  );
}

/* ========================================
   HERO SLIDER
======================================== */

.hero-slider {
  position: relative;
  min-height: 560px;
  z-index: 2;
}

/* Individual Slide */

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

/* Active Slide */

.hero-slide.active {
  position: relative;

  opacity: 1;
  visibility: visible;
}

/* ========================================
   HERO CONTENT
======================================== */

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 80px;
  text-align: center;
}

/* Eyebrow */

.hero-content .eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  color: #f6a400;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Heading */

.hero-content h1 {
  max-width: 1050px;
  margin: 0 auto;
  font-size: clamp(48px, 5vw, 65px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -2px;
}

.hero-content h1 span {
  display: block;
  color: #f6a400;
}

/* Description */

.hero-description {
  max-width: 900px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.6;
}

/* ========================================
   HERO BUTTONS
======================================== */

.hero-actions {
  display: flex;

  justify-content: center;
  align-items: center;

  gap: 28px;

  margin-top: 42px;
}

.hero-actions .btn {
  min-width: 190px;
  padding: 10px 23px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
}

/* Orange Button */

.hero-btn {
  color: #ffffff;
  background: #f6a400;
  border: 2px solid #f6a400;
}

.hero-btn:hover {
  color: #ffffff;
  background: #d98d00;
  border-color: #d98d00;
  transform: translateY(-2px);
}

/* Outline Button */

.hero-actions .btn-outline {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.hero-actions .btn-outline:hover {
  color: #102943;
  background: #ffffff;
  transform: translateY(-2px);
}

/* ========================================
   FIXED TRUST SECTION
======================================== */

.trust-container {
  position: relative;
  z-index: 4;
  margin-top: -20px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  max-width: 1120px;
  margin: 0 auto;
}

/* Trust Card */

.trust-card {
  min-height: 215px;
  padding: 28px 25px;
  text-align: center;
  background: rgb(255 255 255 / 6%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  box-shadow:
    rgba(17, 17, 26, 0.05) 0px 1px 0px,
    rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

.trust-card:hover {
  transform: translateY(-6px);

  background: rgba(255, 255, 255, 0.16);
}

/* Trust Icon */

.trust-icon {
  width: 55px;
  height: 55px;
  margin: 0px auto 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f6a400;
  font-size: 30px;
}

/* Trust Heading */

.trust-card h3 {
  margin: 0px 0px 6px;
  color: #ffffff;
  font-size: 21px;
  font-weight: 700;
}

/* Trust Text */

.trust-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.5;
}

/* ========================================
   SLIDER DOTS
======================================== */

.hero-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dots .dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dots .dot.active {
  width: 25px;
  border-radius: 10px;
  background: #f6a40000;
}

/* =========================
   PRODUCTS SECTION
========================= */

.products-section {
  padding: 90px 0;
  background: #ffffff;
}

.products-heading {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.products-heading .about-eyebrow {
  margin-bottom: 12px;
}

.products-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 800;
  color: #243c5a;
}

.products-heading h2 span {
  color: #243c5a;
}

.products-heading p {
  max-width: 800px;
  margin: auto;
  color: #667085;
  font-size: 18px;
  line-height: 1.7;
}

/* =========================
   PRODUCT TABS
========================= */

.product-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px 28px;
  flex-wrap: wrap;

  max-width: 1250px;
  margin: 45px auto 55px;
}

.product-tab {
  position: relative;
  padding: 8px 4px;
  border: none;
  background: transparent;
  color: #566273;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.product-tab:hover,
.product-tab.active {
  color: #243c5a;
}

.product-tab::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  left: 50%;
  bottom: -7px;
  transform: translateX(-50%);
  background: #243c5a;
  transition: width 0.3s ease;
}

.product-tab:hover::after,
.product-tab.active::after {
  width: 100%;
}

/* =========================
   SLIDER WRAPPER
========================= */

.product-slider-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 70px;
}

/* =========================
   PRODUCT SLIDER
========================= */

.product-slider {
  position: relative;
  min-height: 390px;
  overflow: hidden;
}

/* Slide */

.product-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 42px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    visibility 0.6s ease;
}

.product-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* =========================
   IMAGE
========================= */

.product-image {
  height: 390px;
  overflow: hidden;
  border-radius: 12px;
  background: #e9edf2;
  box-shadow: 0 12px 30px rgba(20, 40, 65, 0.12);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-image:hover img {
  transform: scale(1.05);
}

/* =========================
   PRODUCT INFO
========================= */

.product-info {
  padding: 45px 40px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(20, 40, 65, 0.08);
}

.product-info h3 {
  margin: 0 0 18px;
  font-size: 34px;
  font-weight: 800;
  color: #243c5a;
}

.product-info p {
  margin-bottom: 28px;
  color: #657181;
  font-size: 17px;
  line-height: 1.7;
}

.product-info a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #c98212;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.product-info a:hover {
  gap: 14px;
  color: #243c5a;
}

/* =========================
   ARROWS
========================= */

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #243c5a;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s ease;
}

.slider-arrow:hover {
  background: #c98212;
  transform: translateY(-50%) scale(1.08);
}

.prev-product {
  left: 0;
}

.next-product {
  right: 0;
}

/* =========================
   VIEW ALL BUTTON
========================= */

.view-all-products {
  margin-top: 50px;
  text-align: center;
}

.view-products-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 260px;
  padding: 17px 28px;
  background: #243c5a;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
}

.view-products-btn:hover {
  background: #c98212;
  color: #fff;
  gap: 18px;
  transform: translateY(-3px);
}

/* Heading */

.section-heading {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 60px;
}

.section-heading span {
  display: inline-block;

  color: #f59e0b;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
}

.section-heading h2 {
  margin: 18px 0;

  font-size: 48px;
  font-weight: 700;

  color: #ffffff;
}

.section-heading p {
  margin: 0 auto;

  max-width: 750px;

  font-size: 17px;
  line-height: 1.8;

  color: #d1d5db;
}

/* Grid */

/* ==============================
   QUALITY SECTION
================================= */

.quality-section {
  padding: 100px 0;
  background-color: #f7f8fa;
}

.quality-section .container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

/* ==============================
   SECTION HEADING
================================= */

.quality-heading {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-tag {
  display: inline-block;
  color: #f59e0b;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.quality-heading h2 {
  margin: 15px 0 20px;
  color: #1e3a5f;
  font-size: 42px;
  font-weight: 700;
}

.quality-heading p {
  margin: 0;
  color: #666;
  font-size: 17px;
  line-height: 1.7;
}

/* ==============================
   QUALITY CARDS
================================= */

.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}

.quality-card {
  padding: 35px 25px;
  background: #ffffff;
  text-align: center;
  border-radius: 10px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

  transition: all 0.3s ease;
}

.quality-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* ==============================
   CARD ICON
================================= */

.quality-icon {
  margin-bottom: 20px;
  color: #1e3a5f;
  font-size: 45px;
}

.quality-card h3 {
  margin: 0 0 15px;
  color: #1e3a5f;
  font-size: 20px;
  font-weight: 700;
}

.quality-card p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

/* ==============================
   COMMITMENT BOX
================================= */

.quality-commitment {
  padding: 55px 40px;
  background: #1e539e;
  border-radius: 12px;
  text-align: center;
}

.quality-commitment h3 {
  margin: 0 0 15px;
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
}

.quality-commitment p {
  max-width: 750px;
  margin: 0 auto 30px;
  color: #d9e1ea;
  font-size: 17px;
  line-height: 1.7;
}

/* ==============================
   QUALITY POINTS
================================= */

.quality-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.quality-point {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 12px 22px;

  background: rgba(255, 255, 255, 0.1);

  border-radius: 50px;

  color: #ffffff;
  font-size: 14px;
}

.quality-point i {
  color: #f59e0b;
  font-size: 18px;
}
/* =========================================
   CTA SECTION
========================================= */

.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;

  background-image: url("../Images/04-BJLlFOfT.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Dark Overlay */

.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(7, 25, 44, 0.75);

  z-index: 1;
}

/* Content */

.cta-container {
  position: relative;
  z-index: 2;
}
/* Content */

.cta-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

/* Heading */

.cta-content h2 {
  margin: 0 0 20px;

  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

/* Description */

.cta-content p {
  max-width: 750px;
  margin: 0 auto 40px;

  color: #e5e7eb;

  font-size: 19px;
  line-height: 1.8;
}

/* Buttons Container */

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

/* Common Button */

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 17px 32px;

  border-radius: 6px;

  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;

  text-decoration: none;

  transition: all 0.3s ease;
}

/* Primary Button */

.cta-primary {
  background-color: #f59e0b;
  color: #ffffff;

  border: 2px solid #f59e0b;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.cta-primary:hover {
  background-color: #d97706;
  border-color: #d97706;

  transform: translateY(-3px);
}

/* Arrow */

.cta-arrow {
  font-size: 23px;
  line-height: 1;

  transition: transform 0.3s ease;
}

.cta-primary:hover .cta-arrow {
  transform: translateX(5px);
}

/* Secondary Button */

.cta-secondary {
  background-color: transparent;
  color: #ffffff;

  border: 2px solid #ffffff;
}

.cta-secondary:hover {
  background-color: #ffffff;
  color: #1e3a5f;

  transform: translateY(-3px);
}

/* Phone Icon */

.cta-phone {
  font-size: 20px;
}

/* =========================
   FOOTER
========================= */

.footer {
  background: #1a202c;
  color: #a0aec0;
  padding: 70px 0 0;
}

/* Footer Grid */

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 50px;
  padding-bottom: 50px;
}

/* =========================
   COMPANY SECTION
========================= */

.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo img {
    width: 141px;
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: contain;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.8;
  color: #a0aec0;
}

/* =========================
   FOOTER HEADINGS
========================= */

.footer h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 10px 0 25px;
  position: relative;
}

.footer h3::after {
  content: "";
  display: block;
  width: 45px;
  height: 2px;
  background: #f59e0b;
  margin-top: 10px;
}

/* =========================
   LINKS
========================= */

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: #a0aec0;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-links ul li a:hover {
  color: #f59e0b;
  padding-left: 5px;
}

/* =========================
   SOCIAL ICONS
========================= */

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}

.social-links a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  color: #a0aec0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 6px;
  text-decoration: none;

  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #f59e0b;
  color: #ffffff;
  transform: translateY(-4px);
}

/* =========================
   CONTACT INFO
========================= */

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-item i {
  color: #f59e0b;
  font-size: 18px;
  margin-top: 3px;
  min-width: 20px;
}

.contact-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #a0aec0;
}

.contact-item a {
  color: #a0aec0;
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-item a:hover {
  color: #f59e0b;
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
  border-top: 1px solid #2d3748;
  padding: 25px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #a0aec0;
}

.developed-by {
  display: flex;
  gap: 5px;
  align-items: center;
}

.developed-by a {
  color: #f59e0b;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.developed-by a:hover {
  color: #ffffff;
}
.fa-brands,
.fab {
  font-size: 36px;
  font-weight: 400;
}

/* About Pages CSS */

/* =========================================
   OUR STORY / ABOUT SECTION
========================================= */

.our-story-section {
  padding: 90px 0;
  background: #ffffff;
}

/* Container */

.our-story-section .container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================
   GRID
========================================= */

.our-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* =========================================
   CONTENT
========================================= */

.story-tag {
  display: inline-block;
  color: #f59e0b;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

.story-content h2 {
  margin: 0 0 25px;
  color: #1e3a5f;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 800;
}

.story-content p {
  margin: 0 0 22px;
  color: #667085;
  font-size: 17px;
  line-height: 1.8;
}

.story-content .story-last-text {
  margin-bottom: 0;
}

/* =========================================
   IMAGE
========================================= */

.story-image-box {
  position: relative;
}

.story-image-box img {
  width: 100%;
  height: 500px;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

/* =========================================
   EXPERIENCE BOX
========================================= */

.experience-box {
  position: absolute;

  right: -25px;
  bottom: -25px;

  width: 220px;

  padding: 30px;

  background: #f59e0b;
  color: #ffffff;

  border-radius: 10px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.experience-number {
  margin-bottom: 8px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.experience-text {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.5;
}

/* ========================================
   OUR VALUES SECTION
======================================== */

.values-section {
  padding: 100px 0;
  background: #f7f8fa;
}

/* Heading */

.values-heading {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.values-heading .section-tag {
  display: inline-block;
  color: #f59e0b;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.values-heading h2 {
  margin: 15px 0 18px;
  color: #1e3a5f;
  font-size: 44px;
  font-weight: 700;
}

.values-heading p {
  max-width: 650px;
  margin: 0 auto;
  color: #667085;
  font-size: 17px;
  line-height: 1.7;
}

/* Grid */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ========================================
   VALUE CARD
======================================== */

.value-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  padding: 35px 30px;
  background: #ffffff;
  border-radius: 12px;

  box-shadow: 0 8px 25px rgba(20, 40, 65, 0.08);

  transition: all 0.3s ease;
}

/* Moving Snake Border */

.value-card::before {
  content: "";
  position: absolute;

  width: 180%;
  height: 180%;

  top: -40%;
  left: -40%;

  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 70deg,
    #f59e0b 100deg,
    #f59e0b 150deg,
    transparent 180deg,
    transparent 360deg
  );

  animation: snakeBorder 4s linear infinite;

  z-index: -2;
}

/* Inner White Background */

.value-card::after {
  content: "";
  position: absolute;

  inset: 2px;

  background: #ffffff;
  border-radius: 10px;

  z-index: -1;
}

/* Snake Animation */

@keyframes snakeBorder {
  100% {
    transform: rotate(360deg);
  }
}

/* Hover */

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(20, 40, 65, 0.15);
}

/* ========================================
   ICON
======================================== */

.value-icon {
  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 22px;

  border-radius: 10px;

  background: rgba(245, 158, 11, 0.12);
  color: #f59e0b;

  font-size: 30px;

  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background: #f59e0b;
  color: #ffffff;
}

/* ========================================
   TITLE
======================================== */

.value-card h3 {
  margin: 0 0 14px;

  color: #1e3a5f;

  font-size: 22px;
  font-weight: 700;
}

/* ========================================
   TEXT
======================================== */

.value-card p {
  margin: 0;

  color: #667085;

  font-size: 15px;
  line-height: 1.7;
}

/* =====================================
   INDUSTRIES INTRO
===================================== */

.industries-intro {
  padding: 80px 0 60px;
  background: #ffffff;
}

.industries-intro-content {
  max-width: 1000px;
  margin: auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 15px;

  color: #f59e0b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.8px;
}

.section-tag::before {
  content: "";
  width: 35px;
  height: 2px;
  background: #f59e0b;
}

.industries-intro h2 {
  margin: 0 0 22px;

  color: #1e3a5f;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
}

.industries-intro p {
  margin: 0 0 18px;

  color: #667085;
  font-size: 16px;
  line-height: 1.85;
}

.industries-intro p:last-child {
  margin-bottom: 0;
}

/* =====================================
   MAIN INDUSTRIES SECTION
===================================== */

.industries-section {
  padding: 80px 0;
  background: #f7f9fc;
}

.industries-wrapper {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

/* =====================================
   LEFT CONTENT
===================================== */

.industries-content h2 {
  margin: 0 0 24px;

  color: #1e3a5f;
  font-size: 44px;
  font-weight: 750;
  line-height: 1.18;
}

.industries-content h2 span {
  display: block;
  color: #f59e0b;
}

.industries-content p {
  margin: 0 0 18px;

  color: #667085;
  font-size: 16px;
  line-height: 1.8;
}

/* BUTTON */

.industry-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-top: 10px;
  padding: 14px 24px;

  background: #1e3a5f;
  color: #ffffff;

  border-radius: 6px;

  font-size: 15px;
  font-weight: 600;
  text-decoration: none;

  transition: 0.3s ease;
}

.industry-btn i {
  transition: transform 0.3s ease;
}

.industry-btn:hover {
  background: #f59e0b;
  color: #ffffff;
  transform: translateY(-3px);
}

.industry-btn:hover i {
  transform: translateX(5px);
}

/* =====================================
   INDUSTRIES GRID
===================================== */

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* =====================================
   INDUSTRY CARD
===================================== */

.industry-card {
  position: relative;

  display: flex;
  align-items: center;
  gap: 16px;

  min-height: 95px;
  padding: 20px 22px;

  background: #ffffff;
  border: 1px solid #e7ebf0;
  border-radius: 10px;

  box-shadow: 0 6px 20px rgba(30, 58, 95, 0.05);

  overflow: hidden;

  transition: all 0.3s ease;
}

/* Orange line at bottom */

.industry-card::after {
  content: "";

  position: absolute;
  bottom: 0;
  left: 0;

  width: 0;
  height: 3px;

  background: #f59e0b;

  transition: width 0.35s ease;
}

.industry-card:hover {
  transform: translateY(-5px);

  border-color: #f59e0b;

  box-shadow: 0 14px 30px rgba(30, 58, 95, 0.12);
}

.industry-card:hover::after {
  width: 100%;
}

/* =====================================
   ICON
===================================== */

.industry-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  background: rgba(245, 158, 11, 0.12);
  color: #f59e0b;

  border-radius: 9px;

  font-size: 23px;

  transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
  background: #f59e0b;
  color: #ffffff;

  transform: scale(1.08);
}

/* CARD TEXT */

.industry-card span {
  color: #1e3a5f;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.industry-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;

  padding: 22px 20px;

  background: #ffffff;
  border: 1px solid #e7eaf0;
  border-radius: 12px;

  box-shadow: 0 8px 25px rgba(20, 40, 65, 0.06);

  overflow: hidden;
  cursor: default;

  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-6px);
  border-color: #f59e0b;
  box-shadow: 0 15px 35px rgba(20, 40, 65, 0.12);
}

/* Icon Box */
.industry-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(245, 158, 11, 0.12);
  color: #f59e0b;

  border-radius: 10px;

  font-size: 25px;

  transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
  background: #f59e0b;
  color: #ffffff;
  transform: rotate(-5deg);
}

/* Industry Name */
.industry-card span {
  color: #1e3a5f;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

/* Small orange line on hover */
.industry-card::after {
  content: "";
  position: absolute;

  left: 0;
  bottom: 0;

  width: 0;
  height: 3px;

  background: #f59e0b;

  transition: width 0.4s ease;
}

.industry-card:hover::after {
  width: 100%;
}

/* =========================
   INDUSTRY SECTORS SECTION
========================= */

.sectors-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background-image: url("../Images/manynuts.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.sectors-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(9, 31, 47, 0.88);
  z-index: 0;
}

/* Container */

.sectors-container {
  position: relative;
  z-index: 1;
}

/* Heading */

.sectors-heading {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

.sectors-heading span {
  display: inline-block;
  margin-bottom: 12px;
  color: #f59e0b;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
}

.sectors-heading h2 {
  margin: 0 0 15px;
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
}

.sectors-heading p {
  margin: 0;
  color: #d1d5db;
  font-size: 16px;
  line-height: 1.7;
}

/* Grid */

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Card */

.sector-card {
  min-height: 255px;
  padding: 30px;
  cursor: pointer;

  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.sector-card:hover {
  transform: translateY(-10px);
  background: #f59e0b;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Icon */

.sector-icon {
  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 20px;
  font-size: 38px;

  transition: transform 0.35s ease;
}

.sector-card:hover .sector-icon {
  transform: scale(1.1);
}

/* Title */

.sector-card h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 21px;
  font-weight: 700;
}

/* Description */

.sector-card p {
  margin: 0;
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.7;

  transition: color 0.35s ease;
}

.sector-card:hover p {
  color: #ffffff;
}

/* QUALITY PAGE START  */
/* ===================================
   QUALITY PAGE
=================================== */

.quality-policy-section {
  padding: 100px 0;
  background: #ffffff;
}

.quality-container {
  width: min(1200px, calc(100% - 30px));
  margin: auto;
}

/* QUALITY POLICY */

.quality-policy-content {
  max-width: 900px;
  margin-bottom: 45px;
}

.quality-tag,
.quality-section-title span {
  display: inline-block;
  margin-bottom: 15px;
  color: #f59e0b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
}

.quality-policy-content h2 {
  max-width: 850px;
  margin: 0 0 22px;
  color: #0f2b46;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.2;
}

.quality-policy-content p {
  margin: 0 0 18px;
  color: #5d6874;
  font-size: 17px;
  line-height: 1.8;
}

.quality-policy-content strong {
  color: #0f2b46;
}

/* HIGHLIGHT CARDS */

.quality-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.quality-highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  background: #f7f9fb;
  border: 1px solid #e7ecf0;
  border-radius: 12px;
  transition: 0.35s ease;
}

.quality-highlight-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 43, 70, 0.12);
}

.quality-highlight-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #f59e0b;
  color: #ffffff;
  font-size: 25px;
  font-weight: 700;
}

.quality-highlight-card h3 {
  margin: 0 0 8px;
  color: #0f2b46;
  font-size: 19px;
}

.quality-highlight-card p {
  margin: 0;
  color: #65717d;
  font-size: 14px;
  line-height: 1.6;
}

/* ===================================
   TESTING SECTION
=================================== */

.quality-testing-section {
  padding: 100px 0;
  background: #f5f7f9;
}

.quality-section-title {
  max-width: 720px;
  margin-bottom: 50px;
}

.quality-section-title h2 {
  margin: 0 0 15px;
  color: #0f2b46;
  font-size: clamp(30px, 4vw, 44px);
}

.quality-section-title p {
  margin: 0;
  color: #65717d;
  font-size: 16px;
  line-height: 1.8;
}

/* TESTING GRID */

.testing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testing-card {
  position: relative;
  display: flex;
  gap: 18px;
  padding: 28px;
  overflow: hidden;

  background: #ffffff;
  border: 1px solid #e5eaee;
  border-radius: 12px;

  transition: 0.35s ease;
}

.testing-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 0;
  height: 4px;

  background: #f59e0b;
  transition: width 0.35s ease;
}

.testing-card:hover::before {
  width: 100%;
}

.testing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(15, 43, 70, 0.1);
}

.testing-number {
  color: #f59e0b;
  font-size: 20px;
  font-weight: 800;
}

.testing-card h3 {
  margin: 0 0 8px;
  color: #0f2b46;
  font-size: 18px;
}

.testing-card p {
  margin: 0;
  color: #65717d;
  font-size: 14px;
  line-height: 1.65;
}

/* ===================================
   QUALITY PROCESS
=================================== */

.quality-process-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: #0b2033;
}

.quality-process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background: linear-gradient(
    90deg,
    transparent 49%,
    rgba(245, 158, 11, 0.2) 50%,
    transparent 51%
  );
}

.quality-process-section .quality-container {
  position: relative;
  z-index: 1;
}

.quality-title-light h2 {
  color: #ffffff;
}

.quality-title-light p {
  color: #b8c3cc;
}

/* PROCESS GRID */

.quality-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.quality-process-card {
  position: relative;
  padding: 30px;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;

  transition: 0.35s ease;
}

.quality-process-card:hover {
  transform: translateY(-8px);
  background: rgba(245, 158, 11, 0.12);
  border-color: #f59e0b;
}

.process-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.process-number {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  border-radius: 50%;
  background: #f59e0b;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
}

.process-icon {
  font-size: 32px;
  transition: transform 0.35s ease;
}

.quality-process-card:hover .process-icon {
  transform: rotate(-8deg) scale(1.15);
}

.quality-process-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 21px;
}

.quality-process-card p {
  margin: 0;
  color: #b8c3cc;
  font-size: 14px;
  line-height: 1.7;
}

/* Products Page Start  */

/* =========================================
   METAL PRODUCT SHOWCASE
========================================= */

.metal-showcase-section {
  padding: 80px 0;
  background: #f4f5f7;
}

.metal-showcase-container {
  width: 95%;
  max-width: 1400px;
  margin: 0 auto;
}

/* 3 CARDS PER ROW */

.metal-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD */

.metal-showcase-card {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 7px;
  background: #15202b;
  cursor: pointer;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

/* IMAGE */

.metal-showcase-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;

  transition:
    transform 0.6s ease,
    filter 0.4s ease;
}

/* DARK GRADIENT */

.metal-showcase-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(10, 20, 35, 0.98) 5%,
    rgba(10, 20, 35, 0.72) 55%,
    rgba(10, 20, 35, 0.12) 100%
  );

  transition: background 0.4s ease;
}

/* CONTENT */

.metal-showcase-content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;

  transition: transform 0.4s ease;
}

.metal-showcase-content h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.metal-showcase-content p {
  margin: 0 0 14px;
  color: #d6dbe0;
  font-size: 13px;
  line-height: 1.6;
}

.metal-showcase-content a {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: #f59e0b;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.metal-showcase-content a span {
  display: inline-block;

  transition: transform 0.35s ease;
}

/* =========================================
   HOVER ANIMATIONS
========================================= */

/* CARD UP */

.metal-showcase-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
}

/* IMAGE ZOOM */

.metal-showcase-card:hover img {
  transform: scale(1.1);
  filter: brightness(1.08);
}

/* CONTENT UP */

.metal-showcase-card:hover .metal-showcase-content {
  transform: translateY(-6px);
}

/* ARROW MOVE */

.metal-showcase-card:hover .metal-showcase-content a span {
  transform: translateX(8px);
}

/* OVERLAY EFFECT */

.metal-showcase-card:hover .metal-showcase-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 20, 35, 0.98) 5%,
    rgba(10, 20, 35, 0.78) 60%,
    rgba(10, 20, 35, 0.2) 100%
  );
}


.table-responsive {
  width: 100%;
  overflow-x: hidden;
  margin: 15px 0 25px;
}

.spec-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 11px;
}

.spec-table th,
.spec-table td {
  padding: 6px 4px;
  border: 1px solid #ddd;
  text-align: center;
  white-space: normal;
  word-break: break-word;
  line-height: 1.3;
}

.spec-table th {
  background: #111;
  color: #fff;
  font-weight: 600;
  font-size: 10px;
}

.spec-table td:first-child {
  font-weight: 600;
  text-align: left;
  width: 12%;
}

.product-detail-content h4 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 17px;
}
/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {
  .metal-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {
  .metal-showcase-section {
    padding: 55px 0;
  }

  .metal-showcase-container {
    width: calc(100% - 24px);
  }

  .metal-showcase-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .metal-showcase-card {
    height: 280px;
  }

  .metal-showcase-content {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .metal-showcase-content h3 {
    font-size: 20px;
  }

  .metal-showcase-content p {
    font-size: 13px;
  }

  /* Mobile par touch devices ke liye
     hover effect simple rakha hai */

  .metal-showcase-card:hover {
    transform: translateY(-4px);
  }
}

/* item  */

.main-wrapper {
  display: flex;
  max-width: 1450px;
  margin: 0 auto;
  padding: 20px 25px 50px;
  gap: 40px;
}

/* ================= SIDEBAR ================= */

.sidebar {
  width: 295px;
  flex-shrink: 0;
}

.sidebar-title {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 18px;
}

.product-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-btn {
  width: 100%;
  border: none;
  background: #d9e2f3;
  padding: 15px 17px;
  text-align: left;
  font-size: 17px;
  color: #111;
  cursor: pointer;
  transition: 0.25s ease;
}

.product-btn:hover {
  background: #dfe5eb;
}

.product-btn.active {
  background: #24466d;
  color: white;
  font-weight: 600;
}
.social-links > a > i {
  font-size: 26px;
}
/* ================= CONTENT ================= */

.content {
  flex: 1;
  min-width: 0;
}

.page-title {
  font-size: 31px;
  color: #050505;
  margin-bottom: 28px;
  font-weight: 800;
}

.intro {
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 25px;
  color: #334b67;
}

/* Product Section */

.product-section {
  border-bottom: 1px solid #ddd;
  padding: 20px 0 35px;
  margin-bottom: 25px;

  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 40px;
  align-items: center;
}

.product-section:last-child {
  border-bottom: none;
}

.product-info h2 {
  color: #080808;
  font-size: 22px;
  margin-bottom: 18px;
}

.product-info p {
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 8px;
  color: #344d69;
}

.product-info strong {
  color: #080808;
}

.product-image {
  width: 100%;
  height: 370px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ===============================
   PRODUCT SPECIFICATION TABLE
================================ */

.table-heading {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
}

.product-spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #ddd;
  font-size: 16px;
}

.product-spec-table th {
  background: #e5e7eb;
  color: #111;
  font-weight: 700;
  text-align: center;
  padding: 18px 15px;
  border: 1px solid #d5d8dc;
}

.product-spec-table td {
  padding: 18px 15px;
  border: 1px solid #ddd;
  text-align: center;
  color: #333;
}

.product-spec-table tbody tr:hover {
  background: #f8fafc;
}

/* Mobile */
@media (max-width: 768px) {

  .product-spec-table {
    min-width: 650px;
  }

  .product-spec-table th,
  .product-spec-table td {
    padding: 14px 12px;
    font-size: 14px;
  }

  .table-heading {
    font-size: 20px;
  }

}
/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {
  .main-wrapper {
    gap: 25px;
  }

  .sidebar {
    width: 240px;
  }

  .product-section {
    grid-template-columns: 1fr;
  }

  .product-image {
    height: 280px;
  }
}

@media (max-width: 700px) {
  .main-wrapper {
    display: block;
    padding: 15px;
  }

  .sidebar {
    width: 100%;
    margin-bottom: 30px;
  }

  .product-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .page-title {
    font-size: 27px;
  }

  .product-section {
    display: block;
  }

  .product-image {
    margin-top: 20px;
    height: 240px;
  }
}

@media (max-width: 450px) {
  .product-menu {
    grid-template-columns: 1fr;
  }

  .product-btn {
    font-size: 15px;
  }
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 992px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .quality-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-section {
    padding: 80px 0;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-heading h2 {
    font-size: 38px;
  }
  .quality-heading h2 {
    font-size: 36px;
  }

  .products-section {
    padding: 70px 0;
  }

  .product-slider-wrapper {
    padding: 0;
  }

  .slider-arrow {
    top: auto;
    bottom: -75px;
  }

  .prev-product {
    left: 42%;
  }

  .next-product {
    right: 42%;
  }

  .product-slider {
    min-height: 650px;
  }

  .product-slide {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .product-image {
    height: 320px;
  }

  .product-info {
    padding: 30px;
  }

  .view-all-products {
    margin-top: 100px;
  }
  .industries-intro {
    padding: 65px 0 50px;
  }

  .industries-section {
    padding: 70px 0;
  }

  .industries-wrapper {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .industries-content h2 {
    font-size: 38px;
  }
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .our-story-section {
    padding: 70px 0;
  }

  .our-story-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .story-content h2 {
    font-size: 42px;
  }

  .story-image-box {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
  }

  .experience-box {
    right: 20px;
    bottom: -25px;
  }
  .hero-main {
    min-height: auto;

    padding-bottom: 60px;
  }

  .hero-slider {
    min-height: 570px;
  }

  .hero-content {
    padding: 90px 20px 0;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .trust-container {
    margin-top: 0;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    gap: 18px;
  }

  .trust-card {
    min-height: auto;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .sectors-section {
    padding: 80px 0;
    background-attachment: scroll;
  }

  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .sectors-heading h2 {
    font-size: 36px;
  }
  .quality-policy-section,
  .quality-testing-section,
  .quality-process-section {
    padding: 80px 0;
  }

  .quality-highlights,
  .testing-grid,
  .quality-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 70px 0;
    background-attachment: scroll;
  }

  .cta-content h2 {
    font-size: 34px;
  }

  .cta-content p {
    font-size: 16px;
    line-height: 1.7;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .products-heading h2 {
    font-size: 36px;
  }
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .industry-card {
    padding: 18px;
  }

  .industry-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 22px;
  }
  .products-heading p {
    font-size: 16px;
  }

  .product-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 15px;
    margin: 35px 0 40px;
    gap: 24px;
  }

  .product-tab {
    white-space: nowrap;

    flex-shrink: 0;

    font-size: 15px;
  }

  .product-slider {
    min-height: 590px;
  }
  .industries-intro {
    padding: 55px 0 40px;
  }

  .industries-section {
    padding: 55px 0;
  }

  .industries-intro h2 {
    font-size: 28px;
  }

  .industries-intro p,
  .industries-content p {
    font-size: 15px;
    line-height: 1.75;
  }

  .industries-content h2 {
    font-size: 30px;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .industry-card {
    min-height: 85px;
    padding: 18px;
  }

  .industry-icon {
    width: 45px;
    height: 45px;
    font-size: 21px;
  }

  .industry-btn {
    padding: 13px 20px;
    font-size: 14px;
  }
  .product-image {
    height: 250px;
  }

  .product-info {
    padding: 25px;
  }

  .product-info h3 {
    font-size: 28px;
  }

  .product-info p {
    font-size: 15px;
  }

  .slider-arrow {
    width: 45px;
    height: 45px;
  }

  .prev-product {
    left: 2%;
  }

  .next-product {
    right: 2%;
  }

  .view-products-btn {
    min-width: 230px;
  }
  .quality-section {
    padding: 70px 0;
  }

  .quality-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .quality-heading {
    margin-bottom: 40px;
  }

  .quality-heading h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .quality-heading p {
    font-size: 15px;
  }

  .quality-commitment {
    padding: 35px 20px;
  }

  .quality-commitment h3 {
    font-size: 25px;
    line-height: 1.3;
  }

  .quality-commitment p {
    font-size: 15px;
  }

  .quality-point {
    width: 100%;
    justify-content: center;
  }
  .industry-section {
    padding: 70px 0;

    background-attachment: scroll;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .section-heading p {
    font-size: 15px;
  }

  .industry-card {
    min-height: auto;
    padding: 25px;
  }

  .hero-slider {
    min-height: 620px;
  }

  .hero-content {
    padding-top: 75px;
  }

  .hero-content h1 {
    font-size: 38px;

    letter-spacing: -1px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;

    gap: 14px;

    margin-top: 30px;
  }

  .hero-actions .btn {
    width: 100%;

    max-width: 280px;
  }

  .trust-grid {
    gap: 15px;
  }

  .trust-card {
    padding: 25px 20px;
  }
  .our-story-section {
    padding: 60px 0;
  }

  .our-story-section .container {
    padding: 0 15px;
  }

  .our-story-grid {
    gap: 40px;
  }

  .story-tag {
    font-size: 13px;
  }

  .story-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .story-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .story-image-box img {
    height: 320px;
  }
  .values-section {
    padding: 65px 0;
  }

  .values-heading {
    margin-bottom: 40px;
  }

  .values-heading h2 {
    font-size: 30px;
    line-height: 1.3;
  }

  .values-heading p {
    font-size: 15px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-card {
    padding: 28px 25px;
  }

  .experience-box {
    left: 15px;
    right: 15px;
    bottom: -35px;

    width: auto;

    padding: 22px 25px;
    text-align: center;
  }

  .experience-number {
    font-size: 36px;
  }

  .experience-text {
    font-size: 12px;
  }
  .footer {
    padding-top: 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .developed-by {
    justify-content: center;
    flex-wrap: wrap;
  }
  .sectors-section {
    padding: 60px 0;
  }

  .sectors-heading {
    margin-bottom: 35px;
  }

  .sectors-heading span {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .sectors-heading h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .sectors-heading p {
    padding: 0 10px;
    font-size: 14px;
  }

  .sectors-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sector-card {
    min-height: auto;
    padding: 25px 20px;
  }

  .sector-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    font-size: 34px;
  }

  .sector-card h3 {
    margin-bottom: 10px;
    font-size: 19px;
  }

  .sector-card p {
    font-size: 14px;
    line-height: 1.6;
  }

  .sector-card:hover {
    transform: translateY(-5px);
  }

  .footer-logo img {
    width: 220px;
  }
  .quality-policy-section,
  .quality-testing-section,
  .quality-process-section {
    padding: 60px 0;
  }

  .quality-container {
    width: min(100% - 24px, 1200px);
  }

  .quality-policy-content {
    margin-bottom: 30px;
  }

  .quality-policy-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .quality-highlights,
  .testing-grid,
  .quality-process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .quality-highlight-card,
  .testing-card,
  .quality-process-card {
    padding: 22px;
  }

  .quality-section-title {
    margin-bottom: 35px;
  }

  .quality-section-title p {
    font-size: 15px;
  }

  .quality-highlight-card:hover,
  .testing-card:hover,
  .quality-process-card:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 480px) {
  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 15px;
  }
  .slider-arrow {
    top: auto;
    bottom: -40px;
  }
}

@media (max-width: 400px) {
  .prev-product {
    left: 2%;
  }
  .next-product {
    right: 2%;
  }
  .slider-arrow {
    width: 45px;
    height: 45px;
    bottom: -24px;
  }
}
