/* === Coating Page CSS === */
/* Reset or common utilities if needed */
/* Padding for internal layout blocks in sections */
.display-2 {
  font-size: 5.25rem;   
  font-weight: 300;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
}

@media (max-width: 767px) {
  .display-2 {
    font-size: 3rem;
  }
}

.coating-img-col {
  background-image: url('/assets/img/coatings/External_Coating_merged.jpg');
  background-size: contain;
  background-position: center;
  min-height: 100%; /* let flexbox determine actual height */
  background-repeat: no-repeat;

}

.coating-img-col-right {
  background-image: url('/assets/img/coatings/Internal_Coating_merged.jpg');
  background-size: contain;
  background-position: center;
  min-height: 100%;
  background-repeat: no-repeat;

}

.coating-cards-grid,
.qa-grid,
.whychoose-grid {
  padding: 50px 0 !important;
}
.qa-icon img,
.app-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.coatings-bg {
  position: relative;
  width: 100%;
  height: 60vh;
  background: url("../img/coatings/Banner.jpg") no-repeat center center;
  background-size: cover;
}
.coatings-bg::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgb(0 0 0 / 65%);
  z-index: 1;
}
.coatings-bg > .container {
  position: relative;
  z-index: 2;
}
/* ============================= */
/* SECTION 1: Coatings Hero Area */
/* ============================= */
.coatings-intro-section {
  background-color: #ffffff;
}
.section-container {
  max-width: 1280px;
  margin: 0 auto;
}
.coatings-intro-text {
  padding: 60px 40px 60px 0;
}
.section-heading {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 30px;
}
.section-paragraph {
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  margin-bottom: 20px;
}
.coatings-intro-section .btn {
  font-weight: 500;
  font-size: 18px;
  padding: 10px 22px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  margin-right: 12px;
}
.coatings-intro-section .btn-primary {
  background-color: #003d6b;
  color: #ffffff;
  border: none;
}
.coatings-intro-section .btn-primary:hover {
  background-color: #ffffff;
  color: #003d6b;
  border: 0.5px solid #003d6b;
}
.coatings-intro-section .btn-outline-secondary {
  background-color: transparent;
  color: #003d6b;
  border: 0.5px solid #003d6b;
}
.coatings-intro-section .btn-outline-secondary:hover {
  background-color: #003d6b;
  color: #ffffff;
  border: 0.5px solid #003d6b;
}
.intro-image-wrapper {
  height: 100%;
  position: relative;
}
.intro-image-cover {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* ============================= */
/* Responsive Rules              */
/* ============================= */
@media (max-width: 991px) {
  .coatings-intro-text {
    padding-right: 40px;
  }
  .section-heading {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .section-container {
    padding: 40px 16px;
  }
 .coatings-intro-text {
    padding-right: 0px;
  }
  .section-paragraph {
    text-align: justify;
  }
  .coatings-intro-section .btn {
    display: block;
    margin-bottom: 12px;
  }
}
/* ===== SECTION 2: External Coating Solutions  ===== */
.external-coating-section {
  background-color: #003d6b;
  color: #000000;
  padding: 100px 20px;
}
.external-coating-section .section-heading {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 25px;
}
.external-coating-section .section-subheading {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}
.production-capacity-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #003d6b;
  margin-bottom: 20px;
}
.external-coating-section p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #fff;
}
/* ===== Types of External Coatings - Card Layout ===== */
.coating-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .coating-cards-grid {
    grid-template-columns: 1fr;
  }
}
.coating-type-card {
  border: 0.5px solid #003d6b;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 30px 25px;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #000000;
}
.coating-type-card h4 {
  font-size: 1.5rem;
  color: #003d6b;
  font-weight: 700;
  margin-bottom: 15px;
}
.coating-type-card p {
  font-size: 16px;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.6;
}
.coating-type-card ul {
  padding-left: 18px;
  margin: 0;
}
.coating-type-card ul li {
  font-size: 15px;
  margin-bottom: 8px;
  color: #111;
}
/* Optional mobile-specific adjustments */
@media (max-width: 480px) {
  .coating-type-card {
    padding: 24px 18px;
  }
  .coating-type-card h4 {
    font-size: 1.25rem;
  }
  .coating-type-card ul li {
    font-size: 14.5px;
  }
}
/* =======================
SECTION 3: Internal Coating Solutions
======================= */
.internal-coating {
  background-color: #ffffff;
  color: #000000;
  padding: 100px 20px;
}
.internal-coating .section-heading {
  color: #003d6b;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 25px;
}
.internal-coating .section-subheading {
  font-size: 2rem;
  font-weight: 600;
  color: #003d6b;
  margin-bottom: 20px;
}
.internal-coating p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333333;
}
/* Override grid to use 3 columns for internal coating card grid */
.internal-coating .coating-cards-grid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 992px) {
  .internal-coating .coating-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .internal-coating .coating-cards-grid {
    grid-template-columns: 1fr;
  }
}
/* ======================
SECTION 4: Quality Assurance and Testing
====================== */
.qa-section {
  background: linear-gradient(to bottom, #1b2a4e, #003d6b);
  color: #ffffff;
  padding: 100px 20px;
}
.qa-section .section-heading {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: #ffffff;
}
.qa-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.qa-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: 0.5px solid #ffffff;
  border-radius: 8px;
  padding: 25px;
  background-color: transparent;
}
.qa-icon {
  flex-shrink: 0;
}
.qa-icon-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.qa-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.qa-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #f0f0f0;
  margin: 0;
}
@media (max-width: 768px) {
  .qa-grid {
    grid-template-columns: 1fr;
  }
  .qa-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .qa-icon {
    margin-bottom: 10px;
  }
}
/* ======================
SECTION 5: Diverse Applications
====================== */
.applications-section {
  background-color: #f8f9fa;
  color: #000000;
  padding: 100px 20px;
}
.applications-section .section-heading {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: #003d6b;
}
.applications-section .qa-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.applications-section .qa-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: 0.5px solid #003d6b;
  border-radius: 8px;
  padding: 25px;
  background-color: #ffffff;
}
.applications-section .qa-icon {
  flex-shrink: 0;
}
.applications-section .qa-icon-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: none; /* REMOVE invert or brightness if any */
}
.applications-section .qa-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000; /* Changed from #003d6b */
  margin-bottom: 8px;
}
.applications-section .qa-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #000000; /* Changed from #333333 */
  margin: 0;
}
@media (max-width: 768px) {
  .applications-section .qa-grid {
    grid-template-columns: 1fr;
  }
  .applications-section .qa-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .applications-section .qa-icon {
    margin-bottom: 10px;
  }
}
/* ==========================
   SECTION 6: Why Choose Mega Pipes
========================== */
.coating-sec-why-choose {
  background: #003d6b;
  color: #ffffff;
  padding: 100px 20px;
}
.coating-sec-why-choose .section-heading {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
}
.coating-sec-why-choose .whychoose-intro p {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
  color: #eeeeee;
}
.coating-sec-why-choose .whychoose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.coating-sec-why-choose .whychoose-card {
  background-color: #ffffff;
  border: 0.5px solid #ffffff;
  border-radius: 8px;
  padding: 25px;
  color: #000000;
  transition: transform 0.3s ease;
}
.coating-sec-why-choose .whychoose-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #003d6b;
  margin-bottom: 10px;
}
.coating-sec-why-choose .whychoose-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  margin: 0;
}
.coating-sec-why-choose .whychoose-footer-text {
  font-size: 18px;
  color: #ffffff;
  margin-top: 40px;
  text-align: center;
  line-height: 1.6;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .coating-sec-why-choose .whychoose-grid {
    grid-template-columns: 1fr;
  }
  .coating-sec-why-choose .whychoose-card {
    padding: 20px;
  }
  .coating-sec-why-choose .whychoose-footer-text {
    font-size: 16px;
    padding: 0 10px;
  }
}
/* ==========================
   UTILITY CLASSES
========================== */
.card-hover-lift {
  transition: transform 0.3s ease;
}
.card-hover-lift:hover {
  transform: translateY(-5px);
}