/* ===== Fixed Header (Optimized) ===== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  color: #1a1a1a;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 6px 20px; /* reduced from 10px 25px */
  z-index: 10000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.main-header.shrink {
  padding: 3px 20px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.15);
}

/* Logo */
.header-logo {
  width: 150px; /* reduced from 150px */
  height: auto;
  transition: width 0.3s ease;
}
.main-header.shrink .header-logo {
  width: 90px;
}

/* Navbar */
.navbar ul.menu {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}
.navbar a {
  color: #0b76ef;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 6px 10px;
  transition: color 0.25s ease;
}
.navbar a:hover {
  color: #ffeb3b;
}

/* Dropdown */
.dropdown { position: relative; }
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  flex-direction: column;
}
.submenu a {
  color: #333;
  padding: 8px 12px;
  display: block;
  font-size: 0.9rem;
}
.submenu a:hover {
  background: #f0f4ff;
  color: #0b76ef;
}
.dropdown:hover > .submenu {
  display: flex;
}
.submenu .submenu {
  top: 0;
  left: 90%;
  margin-left: 6px;
}

/* Mobile Header */
.menu-toggle {
  background: none;
  border: none;
  color: #0b76ef;
  font-size: 26px;
  cursor: pointer;
  display: none;
}

/* Mobile Navbar */
@media (max-width: 1024px) {
  .menu-toggle {
    display: block;
  }
  .navbar {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #0b76ef;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
  }
  .navbar.active {
    display: flex;
  }
  .navbar ul.menu {
    flex-direction: column;
    gap: 10px;
  }
  .navbar a {
    color: white;
    font-size: 1rem;
  }
  .submenu {
    background: #1976d2;
    position: static;
    box-shadow: none;
  }
  .submenu a {
    color: #fff;
  }
  .dropdown:hover > .submenu {
    display: none;
  }
  .dropdown.open > .submenu {
    display: flex;
  }
}










/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 10000;
}
.whatsapp-icon {
  background-color: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
}
.whatsapp-text {
  opacity: 0;
  visibility: hidden;
  background: #25d366;
  color: white;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 20px;
  margin-right: 10px;
  transition: all 0.25s ease;
}
.whatsapp-float:hover .whatsapp-text {
  opacity: 1;
  visibility: visible;
}

/* Loader */
#site-loader {
  position: fixed; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.9);
  z-index: 9999;
  transition: opacity 0.25s ease;
}
#site-loader[aria-hidden="true"] { opacity: 0; visibility: hidden; }
.spinner svg { width: 80px; height: 80px; }
.spinner .ring {
  stroke: #0b76ef; stroke-width: 6;
  stroke-dasharray: 180; stroke-dashoffset: 120;
  animation: spin 1.1s linear infinite;
}
@keyframes spin {
  0% {transform: rotate(0); stroke-dashoffset:120;}
  50% {transform: rotate(180deg); stroke-dashoffset:40;}
  100% {transform: rotate(360deg); stroke-dashoffset:120;}
}




/* loading page style  */
/* ---------- Loader overlay ---------- */
    :root{
      --loader-bg: rgba(255,255,255,0.92);
      --loader-color: #0b76ef;
      --loader-size: 80px;
      --loader-z: 99999;
    }

    /* Fullscreen overlay */
    #site-loader {
      position: fixed;
      inset: 0;                          /* top:0; right:0; bottom:0; left:0; */
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--loader-bg);
      z-index: var(--loader-z);
      transition: opacity .25s ease, visibility .25s ease;
      will-change: opacity, visibility;
      opacity: 1;
      visibility: visible;
      pointer-events: none;              /* prevents interaction while hidden */
    }
    #site-loader[aria-hidden="true"]{
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    /* Center card with spinner + text */
    .loader-card {
      display: inline-flex;
      gap: 16px;
      align-items: center;
      padding: 14px 18px;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(10,10,10,0.08);
      background: #fff;
      font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
      color: #222;
    }

    /* The spinner (CSS-only, accessible) */
    .spinner {
      width: var(--loader-size);
      height: var(--loader-size);
      display: inline-grid;
      place-items: center;
    }

    .spinner svg { display:block; width:100%; height:100% }

    /* simple circular stroke animation */
    .spinner .ring {
      stroke: var(--loader-color);
      stroke-linecap: round;
      stroke-width: 6;
      stroke-dasharray: 180;
      stroke-dashoffset: 120;
      animation: spinDash 1.1s linear infinite;
      transform-origin: 50% 50%;
    }

    @keyframes spinDash {
      0%   { transform: rotate(0); stroke-dashoffset: 120; }
      50%  { transform: rotate(180deg); stroke-dashoffset: 40; }
      100% { transform: rotate(360deg); stroke-dashoffset: 120; }
    }

    /* Respect users who prefer reduced motion */
    @media (prefers-reduced-motion: reduce){
      .spinner .ring { animation: none; }
    }

    /* Loading text */
    .loader-text { font-size: 0.95rem; line-height:1; }

    /* Tiny fade-out helper for nicer transition */
    .hidden-fast { opacity: 0; transition: opacity .18s ease; }

    /* Example page content for demo */
    main { padding: 24px; max-width:none; margin:0 auto; font-family: system-ui, -apple-system, "Segoe UI", Roboto;}
    nav a { margin-right: 12px; color: var(--loader-color); text-decoration: none }



    /*--footer--*/
    /* ===== FOOTER STYLES ===== */
.site-footer {
  background-color: #08284d;
  color: white;
  padding: 50px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left section */
.footer-logo {
  width: 250px;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 14px;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-weight: 600;
}
.footer-social a {
  color: white;
  margin-right: 12px;
  font-size: 18px;
  transition: color 0.3s;
}
.footer-social a:hover {
  color: #ffeb3b;
}

/* Middle section */
.footer-section h3 {
  margin-bottom: 14px;
  font-size: 18px;
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 4px;
}
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section ul li {
  margin: 6px 0;
}
.footer-section ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-section ul li a:hover {
  color: #ffeb3b;
}

/* Right section */
.footer-section p {
  margin: 6px 0;
  line-height: 1.6;
}
.footer-section a {
  color: white;
  text-decoration: none;
}
.footer-section a:hover {
  text-decoration: underline;
  color: #ffeb3b;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.3);
  margin-top: 30px;
  padding-top: 12px;
  text-align: center;
  font-size: 14px;
}
.footer-bottom strong {
  color: #ffeb3b;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    text-align: center;
  }
  .footer-social a {
    margin: 0 10px;
  }
}

.footer-section p strong {
  color: #ffeb3b;
  font-weight: 700;
}

.footer-section p {
  margin-bottom: 12px;
}









/* ===== Scroll to Top Button ===== */
#scrollTopBtn {
  position: fixed;
  bottom: 100px;        /* above WhatsApp button */
  right: 24px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background-color: #0b76ef;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: none;         /* hidden by default */
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  z-index: 10000;
}

#scrollTopBtn:hover {
  background-color: #ffeb3b;
  color: #0b76ef;
  transform: scale(1.1);
}






/* ===== HERO VIDEO SECTION (4:3 aspect, full width, no side gap) ===== */
.hero-video.hero-4by3 {
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
}

/* Full-cover video */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark gradient overlay */
.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

/* Centered overlay content */
.video-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.video-overlay h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.btn-primary {
  display: inline-block;
  padding: 12px 32px;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #0b76ef, #08284d);
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #08284d, #0b76ef);
  transform: scale(1.05);
}

/* Responsive design */
@media (max-width: 768px) {
  .hero-video.hero-4by3 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .video-overlay h1 {
    font-size: 1.8rem;
  }
  .btn-primary {
    padding: 10px 24px;
    font-size: 1rem;
  }
}





/* ===== ABOUT SECTION ===== */
.about-section {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 80px 5%;
  background: #fff;
  font-family: 'Poppins', sans-serif;
  color: #333;
  box-sizing: border-box;
  overflow-x: hidden;
}


.section-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  color: #08284d;
  margin-bottom: 80px;
}

.about-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  width: 100%;
  margin-bottom: 100px;
  flex-wrap: nowrap;
}

.about-row.reverse {
  flex-direction: row-reverse;
}

.about-image, .about-text {
  flex: 1 1 50%;
  max-width: 50%;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

.about-text {
  padding: 0 20px;
}

.about-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0b76ef;
  margin-bottom: 15px;
}

.about-text p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 1rem;
}

/* Responsive Layout */
@media (max-width: 992px) {
  .about-row,
  .about-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .about-image, .about-text {
    max-width: 100%;
  }

  .about-image img {
    width: 100%;
    border-radius: 15px;
  }

  .about-text {
    margin-top: 20px;
  }
}









/* ===== About Us Section ===== home page*/
.aboutus-section {
  width: 100%;
  padding: 60px 5%;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

.aboutus-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.aboutus-left {
  flex: 1;
}

.aboutus-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.aboutus-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aboutus-subtext {
  margin-top: 20px;
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
}

/* RIGHT SIDE */
.aboutus-right {
  flex: 1;
  color: #222;
}

.aboutus-heading {
  font-size: 2.5rem;
  color: #08284d;
  font-weight: 800;
  margin-bottom: 10px;
}

.aboutus-subheading {
  font-size: 1.6rem;
  color: #0b76ef;
  margin-bottom: 20px;
}

.aboutus-right p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

/* 🔹 Highlighted Text */
.custom-highlight {
  background: linear-gradient(90deg, #0b76ef, #08284d);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
  padding: 15px 25px;
  border-radius: 10px;
  margin: 25px 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 20px rgba(11, 118, 239, 0.3);
  animation: glowPulse 2.5s infinite ease-in-out;
}

.custom-highlight i {
  font-size: 1.4rem;
}

/* Glowing Animation */
@keyframes glowPulse {
  0% { box-shadow: 0 0 15px rgba(11, 118, 239, 0.3); }
  50% { box-shadow: 0 0 25px rgba(11, 118, 239, 0.6); }
  100% { box-shadow: 0 0 15px rgba(11, 118, 239, 0.3); }
}

/* Button */
.aboutus-btn {
  display: inline-block;
  background: #0b76ef;
  color: #fff;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.aboutus-btn:hover {
  background: #08284d;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
  .aboutus-container {
    flex-direction: column;
    text-align: center;
  }

  .aboutus-left, .aboutus-right {
    width: 100%;
  }

  .aboutus-btn {
    margin-top: 25px;
  }

  .custom-highlight {
    font-size: 1.1rem;
    padding: 12px 20px;
  }
}

















/* ===== Full-Width Services Section ===== */
.services-full {
  background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
  text-align: center;
  font-family: 'Poppins', sans-serif;
  padding: 100px 0;
}

.services-full h2 {
  font-size: 2.6rem;
  color: #08284d;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 10px;
}

.services-full .subtitle {
  color: #555;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 60px auto;
  line-height: 1.7;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
  width: 100%;
}

/* Service Box */
.service-box {
  background: #fff;
  padding: 60px 30px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.service-box:hover {
  background: #0b76ef;
  color: #fff;
  transform: translateY(-8px);
}

.icon-circle {
  background: #0b76ef;
  color: #fff;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 25px auto;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.service-box:hover .icon-circle {
  background: #fff;
  color: #0b76ef;
  transform: scale(1.1);
}

.service-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-box p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}

.service-box:hover p {
  color: #f0f0f0;
}

/* Responsive */
@media (max-width: 768px) {
  .services-full {
    padding: 60px 0;
  }
  .service-box {
    padding: 40px 10px 20px 10px;
  }
  .icon-circle {
    width: 70px;
    height: 70px;
    font-size: 1.6rem;
  }
}








/* product page */
/* ===== Projects Gallery Section ===== */
.projects-gallery {
  background: #f8f9fc;
  text-align: center;
  padding: 100px 50px;
  font-family: 'Poppins', sans-serif;
}

.projects-gallery h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #08284d;
  margin-bottom: 15px;
}

.projects-gallery .subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* Project Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

/* Project Item */
.project-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  display: block;
  transition: transform 0.3s ease;
}

.project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.project-item:hover img {
  transform: scale(1.1);
}

/* Hover Overlay */
.project-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 118, 239, 0.85);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-weight: 600;
}

.project-item:hover .overlay {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .projects-gallery {
    padding: 60px 20px;
  }

  .projects-gallery h2 {
    font-size: 2rem;
  }

  .project-item .overlay {
    font-size: 1.2rem;
  }
}






/* ===== Full Width Toilet Showcase ===== */
.toilet-showcase-row.fullwidth {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 40px;
  padding: 100px 0;
  background: linear-gradient(90deg, #095ce2 0%, #ffffff 100%);
  overflow: hidden;
  box-sizing: border-box;
}

/* Individual image cards */
.showcase-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  width: 30%;
  max-width: 400px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.showcase-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  transition: transform 0.4s ease;
}

.showcase-item:hover img {
  transform: scale(1.06);
}

/* Overlay styling */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 40, 77, 0.75);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.showcase-item:hover .overlay {
  opacity: 1;
}

.overlay h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.more-btn {
  background: #0a7df0;
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.more-btn:hover {
  background: #fff;
  color: #0a7df0;
}

/* Text Section */
.showcase-content {
  width: 30%;
  max-width: 400px;
  text-align: left;
}

.showcase-content h3 {
  color: #0a7df0;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.showcase-content h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #08284d;
  margin-bottom: 25px;
  line-height: 1.3;
}

.explore-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #0a7df0;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.explore-btn:hover {
  background: #063e80;
  transform: translateY(-3px);
}

/* Responsive (Mobile & Tablet) */
@media (max-width: 992px) {
  .toilet-showcase-row.fullwidth {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 60px 20px;
  }

  .showcase-item,
  .showcase-content {
    width: 100%;
    max-width: 90%;
  }

  .showcase-content h2 {
    font-size: 1.6rem;
  }
}









/* ===== BENEFITS & ADVANTAGES SECTION (UNIFORM BUTTON SIZE) ===== */
.benefits-section {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
  padding: 100px clamp(20px, 5vw, 60px);
  background: #f8f9fc;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.benefits-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #08284d;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive grid layout */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  justify-items: center;
  align-items: stretch;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Benefit buttons — now all same size */
.benefit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  border: 2px solid #0b76ef;
  border-radius: 50px;
  padding: 15px 25px;
  font-weight: 600;
  color: #0b76ef;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  max-width: 280px;
  min-height: 60px; /* ensures same height */
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.benefit-btn i {
  font-size: 2.2rem; /* 🔹 Increased from 1.6rem → 2.2rem for larger icons */
  color: #0b76ef;
  transition: color 0.3s ease, transform 0.3s ease;
}
.benefit-btn:hover {
  background: #0b76ef;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(11, 118, 239, 0.3);
}

.benefit-btn:hover i {
  color: #fff;
}

/* Explore button */
.benefits-btn {
  display: inline-block;
  margin-top: 50px;
  background: #0b76ef;
  color: #fff;
  padding: 14px 40px;
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(11, 118, 239, 0.3);
}

.benefits-btn:hover {
  background: #08284d;
  box-shadow: 0 6px 20px rgba(8, 40, 77, 0.4);
  transform: translateY(-3px);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .benefits-title {
    font-size: 2rem;
  }

  .benefit-btn {
    font-size: 0.95rem;
    padding: 12px 20px;
    min-height: 55px;
  }

  .benefits-btn {
    padding: 12px 30px;
    font-size: 0.95rem;
  }
}








.project-completed-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: linear-gradient(135deg, #08284d, #0b76ef);
  color: #fff;
  padding: 80px 60px;
  font-family: 'Poppins', sans-serif;
  flex-wrap: wrap;
  box-sizing: border-box;
}

/* Left side */
.project-left {
  flex: 1;
  min-width: 320px;
  margin-right: 50px;
}

.projects-main-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.projects-sub-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #a9d1ff;
  margin-bottom: 40px;
}

.projects-stats {
  display: flex;
  gap: 60px;
}

.stat-box h4 {
  font-size: 1rem;
  color: #d8e7ff;
  margin-bottom: 5px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
}

.stat-number span {
  font-size: 1.2rem;
  vertical-align: super;
  color: #a9d1ff;
}

/* Right side */
.project-right {
  flex: 1;
  min-width: 350px;
}

.projects-progress {
  text-align: left;
}

.progress-item {
  margin-bottom: 25px;
}

.progress-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.progress-bar {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  overflow: hidden;
  height: 20px;
}

.progress-fill {
  background: #ffd700;
  height: 100%;
  line-height: 20px;
  text-align: right;
  padding-right: 10px;
  font-weight: 600;
  border-radius: 50px;
  transition: width 1.5s ease-in-out;
}

/* Responsive design */
@media (max-width: 900px) {
  .project-completed-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .project-left {
    margin-right: 0;
    margin-bottom: 40px;
  }

  .projects-stats {
    justify-content: center;
  }

  .project-right {
    width: 100%;
    max-width: 500px;
  }
}











/* ===== TVK CLIENTS SECTION ===== */
.clients-section {
  width: 100%;
  padding: 100px 60px;
  background: #f5f8ff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

.clients-header {
  margin-bottom: 60px;
}

.clients-top-title {
  color: #0b76ef;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.clients-main-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #08284d;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.clients-sub-text {
  color: #444;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Clients logo grid */
.clients-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.client-box {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  width: 200px;
  height: 200px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.client-box img {
  max-width: 100px;
  height: auto;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.client-box h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #0b76ef;
  text-transform: uppercase;
}

.client-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(11, 118, 239, 0.25);
}

.client-box:hover img {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .clients-main-title {
    font-size: 2rem;
  }

  .clients-logos {
    gap: 30px;
  }

  .client-box {
    width: 160px;
    height: 160px;
    padding: 20px;
  }

  .client-box img {
    max-width: 80px;
  }
}









/* ===== BROCHURE DOWNLOAD SECTION ===== */
.brochure-section {
  width: 100%;
  padding: 120px 20px;
  margin-top: 50px;
  background: linear-gradient(135deg, #0b76ef, #08284d);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

/* Optional decorative glow */
.brochure-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
  transform: rotate(30deg);
}

.brochure-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.brochure-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.brochure-text {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

/* Download button */
.brochure-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #0b76ef;
  padding: 18px 45px;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.brochure-btn i {
  font-size: 1.5rem;
}

.brochure-btn:hover {
  background: #08284d;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .brochure-title {
    font-size: 2rem;
  }
  .brochure-text {
    font-size: 1rem;
  }
  .brochure-btn {
    padding: 14px 35px;
    font-size: 1rem;
  }
}






/* 🌐 HOLLOW CORE SLABS PAGE */
.hollowcore-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
  text-align: center;
  font-family: 'Poppins', sans-serif;
}/* 🌟 Modern Hollowcore Header Styles */
.hollowcore-header {
  position: relative;
  background: linear-gradient(135deg, #0b2447, #19376d, #576cbc);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  overflow: hidden;
  border-radius: 0 0 50% 50% / 10%;
}

/* ✨ Decorative overlay animation */
.hollowcore-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(rgba(255,255,255,0.05) 10%, transparent 11%);
  background-size: 50px 50px;
  animation: movePattern 15s linear infinite;
  z-index: 1;
}

@keyframes movePattern {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

/* 🔹 Text container */
.header-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

/* 🔹 Stylish heading */
.hollowcore-header h1 { 
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(to right, #ffcc00, #fff);
  background-clip: text;               /* ✅ standard version */
  -webkit-background-clip: text;       /* ✅ for Chrome/Safari */
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 3px;
  animation: fadeInDown 1s ease-in-out;
}


/* 🔹 Intro paragraph */
.hollowcore-header p.intro {
  font-size: 18px;
  color: #eaeaea;
  line-height: 1.8;
  animation: fadeInUp 1.2s ease-in-out;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

/* 🎞️ Animations */
@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* 📱 Responsive Design */
@media (max-width: 768px) {
  .hollowcore-header {
    padding: 70px 15px;
    border-radius: 0;
  }

  .hollowcore-header h1 {
    font-size: 32px;
  }

  .hollowcore-header p.intro {
    font-size: 16px;
  }
}



/* 🌟 Round Infinite Image Slider */
.hollowcore-slider {
  width: 100%;
  overflow: hidden;
  margin: 50px 0;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 25px;
  animation: scrollInfinite 25s linear infinite;
}

.slider-track img {
  width: 300px;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.4s, box-shadow 0.3s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.slider-track img:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

@keyframes scrollInfinite {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 🔹 Content Section */
.hollowcore-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-bottom: 50px;
}

.image-box img {
  width: 420px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.image-box img:hover {
  transform: scale(1.05);
}

.text-box {
  max-width: 550px;
  font-size: 17px;
  color: #333;
  line-height: 1.8;
  text-align: left;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* 🔹 Grid Section */
.hollowcore-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.grid-box {
  background: linear-gradient(145deg, #ffffff, #f1f6fb);
  padding: 30px;
  border-radius: 16px;
  width: 300px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.grid-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.grid-box h2 {
  font-size: 20px;
  color: #0b6ff2;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid #0b6ff2;
  padding-bottom: 8px;
}

.grid-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.grid-box ul li {
  margin: 10px 0;
  color: #333;
  position: relative;
  padding-left: 20px;
}

.grid-box ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0b6ff2;
  font-weight: 700;
}

/* 🔹 Responsive Design */
@media (max-width: 900px) {
  .slider-track img {
    width: 220px;
    height: 160px;
  }

  .image-box img {
    width: 100%;
  }

  .hollowcore-header h1 {
    font-size: 32px;
  }

  .text-box {
    max-width: 90%;
  }

  .grid-box {
    width: 90%;
  }
}








/* ===== COLUMN PAGE ===== */
.columns-section {
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
  text-align: center;
}

.columns-header h1 {
  font-size: 38px;
  font-weight: 700;
  color: #08284d;
  margin-bottom: 15px;
}

.columns-header p {
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.7;
  color: #444;
}

/* ===== Image Slider (same style as Hollow Core Slab) ===== */
.columns-slider {
  width: 90%;
  margin: 0 auto 50px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slides {
  display: flex;
  width: 700%;
  animation: slide 20s infinite;
}

.slides img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

@keyframes slide {
  0% { transform: translateX(0); }
  14% { transform: translateX(0); }
  28% { transform: translateX(-100%); }
  42% { transform: translateX(-200%); }
  56% { transform: translateX(-300%); }
  70% { transform: translateX(-400%); }
  84% { transform: translateX(-500%); }
  100% { transform: translateX(-600%); }
}

/* ===== Benefits ===== */
.columns-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.benefit-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  width: 350px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  text-align: left;
  transition: transform 0.3s;
}

.benefit-box:hover {
  transform: translateY(-5px);
}

.benefit-box h2 {
  color: #0b76ef;
  font-size: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.benefit-box ul {
  list-style: none;
  padding: 0;
}

.benefit-box li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #444;
}

@media (max-width: 768px) {
  .columns-header h1 {
    font-size: 30px;
  }

  .slides img {
    height: 250px;
  }

  .benefit-box {
    width: 90%;
  }
}







/* 🌟 MATERIAL SPEC PAGE - 3 PER ROW STYLE */
.material-spec-section {
  padding: 80px 40px;
  background: linear-gradient(135deg, #f9fbfd 0%, #eef3f9 100%);
  font-family: "Poppins", sans-serif;
}

/* HEADER */
.material-spec-header {
  text-align: center;
  margin-bottom: 60px;
}

.material-spec-header h1 {
  font-size: 42px;
  color: #08284d;
  font-weight: 800;
  letter-spacing: 1px;
  display: inline-block;
}

.material-spec-header h1 i {
  color: #ff6600;
  margin-right: 10px;
}

.material-spec-header p {
  color: #444;
  font-size: 17px;
  margin-top: 15px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* GRID - 3 COLUMNS */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  justify-items: center;
}

/* CARD BOX */
.spec-box {
  background: #ffffff;
  border-radius: 18px;
  width: 100%;
  max-width: 350px;
  padding: 40px 25px 35px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.spec-box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* ICON STYLE */
.icon-circle {
  background: linear-gradient(135deg, #ff6600, #ffa733);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 30px;
  transition: transform 0.4s ease;
}

.spec-box:hover .icon-circle {
  transform: rotate(15deg) scale(1.1);
}

/* TEXT */
.spec-box h2 {
  font-size: 20px;
  color: #08284d;
  margin-bottom: 12px;
  font-weight: 700;
}

.spec-box p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

/* RESPONSIVE GRID */
@media (max-width: 1024px) {
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .material-spec-header h1 {
    font-size: 32px;
  }
}











/* 🌟 DESIGN PARAMETER PAGE STYLE */
.design-parameter-section {
  padding: 80px 40px;
  background: linear-gradient(135deg, #f7fbff, #eef4fa);
  font-family: "Poppins", sans-serif;
}

/* HEADER */
.design-header {
  text-align: center;
  margin-bottom: 60px;
}

.design-header h1 {
  font-size: 42px;
  color: #0a2d4d;
  font-weight: 800;
  letter-spacing: 1px;
}

.design-header h1 i {
  color: #ff6600;
  margin-right: 10px;
}

.design-header p {
  color: #444;
  font-size: 17px;
  margin-top: 15px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* GRID LAYOUT */
.design-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  justify-items: center;
}

/* CARD BOX */
.design-box {
  background: #ffffff;
  border-radius: 18px;
  width: 100%;
  max-width: 350px;
  padding: 40px 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s ease;
}

.design-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* ICON */
.icon-circle {
  background: linear-gradient(135deg, #ff6600, #ffa733);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 30px;
  transition: transform 0.4s ease;
}

.design-box:hover .icon-circle {
  transform: rotate(15deg) scale(1.1);
}

/* TEXT */
.design-box h2 {
  font-size: 20px;
  color: #08284d;
  margin-bottom: 12px;
  font-weight: 700;
}

.design-box p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}




/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .design-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .full-width {
    grid-column: span 2;
  }
}

@media (max-width: 700px) {
  .design-grid {
    grid-template-columns: 1fr;
  }
  .full-width {
    grid-column: span 1;
  }
  .design-header h1 {
    font-size: 32px;
  }
}


 /* 🌊 Rectangular Tank Section */
.rectangular-tank-section {
  background: #f8f9fc;
  text-align: center;
  padding: 60px 20px;
  border-top: 3px solid #0972eb;
}

.tank-header h2 {
  font-size: 26px;
  color: #74aff1;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}

.tank-header h2 i {
  color: #1954a0;
  margin-right: 10px;
}

.tank-header h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #08284d, #1c64b0);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.tank-image-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.tank-image-box img {
  width: 1200px;
  max-width: 90%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border: 4px solid #e0e4f0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tank-image-box img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}


/* ✨ Enhanced Styles for Overview Page */
.glass-card {
  background: rgba(8, 40, 77, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
  padding: 40px 30px;
}

.category-tags h2 {
  display: inline-block;
  margin: 10px 12px;
  font-size: 20px;
  background: linear-gradient(90deg, #1954a0, #0a2a4a);
  border-radius: 6px;
  padding: 8px 20px;
  color: #fff;
}

.intro-text {
  max-width: 950px;
  text-align: center;
  margin: 0 auto 30px;
  color: #333;
  font-size: 16px;
  line-height: 1.7;
}

.description {
  max-width: 1000px;
  text-align: center;
  margin: 40px auto;
  color: #444;
  font-size: 16px;
  line-height: 1.8;
}

/* 🌈 Subtle Scroll Animation */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}












/* Small Domestic Tanks - 9 cards layout */
.domestic-tanks-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, #f9fbfd, #eef3f9);
  font-family: "Poppins", sans-serif;
  color: #222;
}

.domestic-header {
  max-width: 1100px;
  margin: 0 auto 30px;
  text-align: center;
}

.domestic-header h1 {
  font-size: 36px;
  color: #0a2d4d;
  font-weight: 800;
  margin-bottom: 10px;
}

.domestic-header h1 i { color: #ff6600; margin-right: 8px; }

.domestic-header p {
  color: #555;
  font-size: 16px;
  line-height: 1.75;
  margin: 0 auto;
  max-width: 900px;
}

/* Image */
.domestic-image { text-align: center; margin: 36px 0; }
.domestic-image img {
  width: 80%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(12, 35, 72, 0.08);
  border: 3px solid #e9eef8;
  transition: transform .35s ease, box-shadow .35s ease;
}
.domestic-image img:hover { transform: scale(1.02); box-shadow: 0 12px 40px rgba(12,35,72,0.12); }

/* Grid: 3 per row on desktop */
.domestic-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: 0 12px;
  box-sizing: border-box;
}

/* Card */
.domestic-box {
  background: #fff;
  border-radius: 14px;
  padding: 26px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(13, 37, 86, 0.06);
  transition: transform .28s ease, box-shadow .28s ease;
  border-top: 5px solid #ff6600;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px; /* keeps cards uniform height */
}
.domestic-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 46px rgba(13,37,86,0.12);
}

/* Icons */
.domestic-box i {
  font-size: 36px;
  color: #ff6600;
  display: inline-block;
  margin-bottom: 6px;
  transition: transform .25s ease;
}
.domestic-box:hover i { transform: scale(1.12); }

/* Headings & text */
.domestic-box h2 {
  font-size: 16px;
  color: #08284d;
  margin: 0;
  font-weight: 700;
}
.domestic-box p {
  margin: 0;
  color: #444;
  font-size: 14.2px;
  line-height: 1.6;
  flex: 1 0 auto;
}

/* Responsive: 2 columns on tablet, 1 on mobile */
@media (max-width: 1024px) {
  .domestic-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .domestic-image img { max-width: 95%; }
}

@media (max-width: 700px) {
  .domestic-grid { grid-template-columns: 1fr; gap: 18px; padding: 0 8px; }
  .domestic-header h1 { font-size: 28px; }
  .domestic-box { min-height: auto; padding: 20px; }
  .domestic-box i { font-size: 30px; }
}










/* MONOLITHIC TANKS SECTION */
.monolithic-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, #f9fbfd, #eef3f9);
  font-family: "Poppins", sans-serif;
  color: #222;
}

.monolithic-header {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 30px;
}

.monolithic-header h1 {
  font-size: 38px;
  color: #0a2d4d;
  font-weight: 800;
  margin-bottom: 12px;
}

.monolithic-header h1 i {
  color: #ff6600;
  margin-right: 8px;
}

.monolithic-header p {
  color: #444;
  font-size: 16px;
  line-height: 1.7;
}

/* IMAGE SECTION */
.monolithic-image {
  text-align: center;
  margin: 40px 0;
}

.monolithic-image img {
  width: 80%;
  max-width: 950px;
  height: auto;
  border-radius: 12px;
  border: 3px solid #e5ebf5;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.monolithic-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

/* GRID 3 per row */
.monolithic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* CARD STYLE */
.monolithic-box {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  border-top: 5px solid #ff6600;
  box-shadow: 0 8px 24px rgba(13, 37, 86, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  min-height: 220px;
}

.monolithic-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(13, 37, 86, 0.12);
}

.monolithic-box i {
  font-size: 38px;
  color: #ff6600;
  margin-bottom: 8px;
  transition: transform 0.25s ease;
}

.monolithic-box:hover i {
  transform: scale(1.1);
}

.monolithic-box h2 {
  font-size: 16px;
  color: #0b2c52;
  margin: 8px 0;
  font-weight: 700;
}

.monolithic-box p {
  font-size: 14.2px;
  color: #444;
  line-height: 1.6;
}

/* GALLERY HEADING */
.gallery-heading {
  text-align: center;
  margin-top: 70px;
}

.gallery-heading h2 {
  font-size: 28px;
  color: #0a2d4d;
  font-weight: 700;
}

.gallery-heading i {
  color: #ff6600;
  margin-right: 8px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .monolithic-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .monolithic-header h1 {
    font-size: 32px;
  }
}

@media (max-width: 700px) {
  .monolithic-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .monolithic-header h1 {
    font-size: 26px;
  }

  .monolithic-box {
    padding: 22px;
  }

  .monolithic-box i {
    font-size: 32px;
  }
}










/* CUSTOM FACTORY ASSEMBLED TANKS */
.custom-factory-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f7fafc, #eef3f9);
  font-family: "Poppins", sans-serif;
  color: #222;
}

/* HEADER */
.custom-header {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 30px;
}

.custom-header h1 {
  font-size: 38px;
  color: #08284d;
  font-weight: 800;
  margin-bottom: 12px;
}

.custom-header h1 i {
  color: #ff6600;
  margin-right: 10px;
}

.custom-header p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* IMAGE */
.custom-image {
  text-align: center;
  margin: 40px 0;
}

.custom-image img {
  width: 80%;
  max-width: 950px;
  height: auto;
  border-radius: 14px;
  border: 3px solid #e3eaf2;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* SUBTITLE */
.custom-subtitle {
  text-align: center;
  margin-bottom: 40px;
}

.custom-subtitle h2 {
  color: #0b2c52;
  font-size: 26px;
  font-weight: 700;
}

.custom-subtitle i {
  color: #ff6600;
  margin-right: 8px;
}

/* GRID */
.custom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* CARD STYLING */
.custom-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  text-align: center;
  border-top: 5px solid #ff6600;
  box-shadow: 0 8px 28px rgba(13, 37, 86, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 240px;
}

.custom-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 45px rgba(13, 37, 86, 0.12);
}

.custom-card i {
  font-size: 38px;
  color: #ff6600;
  margin-bottom: 10px;
  transition: transform 0.25s ease;
}

.custom-card:hover i {
  transform: scale(1.1);
}

.custom-card h3 {
  font-size: 16px;
  color: #0b2c52;
  font-weight: 700;
  margin-bottom: 8px;
}

.custom-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* GALLERY HEADING */
.gallery-heading {
  text-align: center;
  margin-top: 70px;
}

.gallery-heading h2 {
  font-size: 28px;
  color: #0a2d4d;
  font-weight: 700;
}

.gallery-heading i {
  color: #ff6600;
  margin-right: 8px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .custom-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .custom-header h1 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .custom-grid {
    grid-template-columns: 1fr;
  }

  .custom-card {
    padding: 24px;
  }

  .custom-header h1 {
    font-size: 28px;
  }
}












/* CUSTOM ON-SITE ASSEMBLED TANKS */
.onsite-tank-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8fbfd, #e9f0f8);
  font-family: "Poppins", sans-serif;
  color: #222;
}

/* HEADER */
.onsite-header {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 30px;
}

.onsite-header h1 {
  font-size: 38px;
  color: #0a2d4d;
  font-weight: 800;
  margin-bottom: 15px;
}

.onsite-header h1 i {
  color: #ff6600;
  margin-right: 10px;
}

.onsite-header p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}

/* IMAGE */
.onsite-image {
  text-align: center;
  margin: 40px 0;
}

.onsite-image img {
  width: 80%;
  max-width: 950px;
  height: auto;
  border-radius: 14px;
  border: 3px solid #dde5ef;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.onsite-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* SUBTITLE */
.onsite-subtitle {
  text-align: center;
  margin-bottom: 40px;
}

.onsite-subtitle h2 {
  color: #0a2d4d;
  font-size: 26px;
  font-weight: 700;
}

.onsite-subtitle i {
  color: #ff6600;
  margin-right: 8px;
}

/* GRID */
.onsite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* CARD */
.onsite-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  text-align: center;
  border-top: 5px solid #ff6600;
  box-shadow: 0 8px 28px rgba(13, 37, 86, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 240px;
}

.onsite-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 45px rgba(13, 37, 86, 0.12);
}

.onsite-card i {
  font-size: 38px;
  color: #ff6600;
  margin-bottom: 10px;
  transition: transform 0.25s ease;
}

.onsite-card:hover i {
  transform: scale(1.1);
}

.onsite-card h3 {
  font-size: 16px;
  color: #0a2d4d;
  font-weight: 700;
  margin-bottom: 8px;
}

.onsite-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* FOOTER HEADING */
.onsite-footer {
  text-align: center;
  margin-top: 70px;
}

.onsite-footer h2 {
  font-size: 28px;
  color: #0a2d4d;
  font-weight: 700;
}

.onsite-footer i {
  color: #ff6600;
  margin-right: 8px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .onsite-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .onsite-header h1 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .onsite-grid {
    grid-template-columns: 1fr;
  }

  .onsite-card {
    padding: 24px;
  }

  .onsite-header h1 {
    font-size: 28px;
  }
}














body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background: #f7f8fc;
  color: #333;
  line-height: 1.6;
}

/* Header */
.spt-header {
  background: linear-gradient(135deg, #003366, #1976d2);
  color: white;
  text-align: center;
  padding: 70px 20px;
}

.spt-header h1 {
  font-size: 2.6em;
  margin: 0;
}

.spt-header p {
  font-size: 1.1em;
  margin-top: 10px;
}

/* Intro */
.spt-intro {
  padding: 50px 10%;
  text-align: justify;
  color: #444;
  font-size: 1.05em;
}

/* Section Titles */
.spt-tank-section h2,
.spt-gallery h2,
.spt-faq h2 {
  text-align: center;
  color: #003366;
  margin-bottom: 25px;
  position: relative;
}

.spt-tank-section h2::after,
.spt-gallery h2::after,
.spt-faq h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #1976d2;
  display: block;
  margin: 10px auto;
  border-radius: 2px;
}

/* Image */
.spt-image-box {
  text-align: center;
  margin-bottom: 40px;
}

.spt-image-box img {
  max-width: 80%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Gallery Cards */
.spt-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  padding: 0 10%;
}

.spt-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: 0.3s ease;
}

.spt-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.spt-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.spt-card-content {
  padding: 20px;
  text-align: center;
}

.spt-card-content h3 {
  color: #003366;
  font-size: 1.1em;
  margin: 0;
}

/* FAQ */
.spt-faq {
  margin: 50px 10%;
}

.spt-faq-item {
  background: white;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.spt-faq-question {
  background: #1976d2;
  color: white;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.spt-faq-answer {
  display: none;
  padding: 15px 20px;
  background: #f9f9f9;
  color: #444;
}

/* Footer */
.spt-footer {
  background: #003366;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
}

/* Responsive */
@media (max-width: 768px) {
  .spt-header h1 {
    font-size: 2em;
  }
}






/* SPECIAL PURPOSE TANK FAQ */
.faqX-wrapper { padding: 40px 20px; background: #f6f8fb; }
  .faqX-container { max-width: 1100px; margin: 0 auto; }
  .faqX-title { text-align: center; font-size: 28px; color: #083562; margin-bottom: 28px; font-weight:700; text-transform:uppercase; }
  .faqX-item { background: #fff; border-radius:12px; margin-bottom:14px; overflow:hidden; box-shadow: 0 6px 18px rgba(8,20,40,0.06); }
  .faqX-q { display:flex; justify-content:space-between; align-items:center; width:100%; padding:16px 20px; font-weight:600; font-size:16px; background:#083562; color:#fff; border:0; cursor:pointer; text-align:left; }
  .faqX-q:focus { outline:3px solid rgba(8,53,98,0.2); }
  .faqX-a { padding:18px 22px; background:#f4f7fb; color:#223; font-size:15px; line-height:1.6; }
  .faqX-item[aria-expanded="true"] .faqX-q::after { transform: rotate(45deg); }
  /* small chevron added using pseudo */
  .faqX-q::after { content:'+'; font-size:20px; transition:transform .22s ease; }
  .faqX-open .faqX-q::after { transform: rotate(45deg); }
  @media (max-width:720px){ .faqX-q{font-size:15px;padding:14px} .faqX-a{font-size:14px} }









/* SUMMARIZED APPLICATIONS PAGE  */
   .tank-table-section {
      font-family: "Poppins", sans-serif;
      background: #f8f9fa;
      padding: 60px 20px;
      color: #333;
    }

    .tank-table-section h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 40px;
      color: #004d40;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .tank-table-wrapper {
      max-width: 1100px;
      margin: 0 auto;
      overflow-x: auto;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      border-radius: 12px;
      background: #fff;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      border-radius: 12px;
      overflow: hidden;
    }

    thead {
      background: #00695c;
      color: #fff;
    }

    thead th {
      text-align: left;
      padding: 15px 20px;
      font-size: 1.1rem;
    }

    tbody tr {
      border-bottom: 1px solid #e0e0e0;
    }

    tbody tr:nth-child(even) {
      background: #f1f8f6;
    }

    tbody td {
      padding: 15px 20px;
      vertical-align: top;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    ul {
      margin: 0;
      padding-left: 20px;
    }

    ul li {
      margin-bottom: 5px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      thead {
        display: none;
      }

      table, tbody, tr, td {
        display: block;
        width: 100%;
      }

      tr {
        margin-bottom: 20px;
        background: #fff;
        border-radius: 10px;
        padding: 15px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      }

      td {
        padding: 10px 0;
      }

      td::before {
        content: attr(data-label);
        font-weight: 600;
        display: block;
        margin-bottom: 6px;
        color: #004d40;
      }
    }










       /* ======= INSTALLATION SECTION CSS ======= */
    .installation-section {
      font-family: "Poppins", sans-serif;
      background: #f9fafb;
      padding: 60px 20px;
      color: #333;
    }

    .installation-container {
      max-width: 1100px;
      margin: 0 auto;
    }

    .installation-section h2 {
      text-align: center;
      font-size: 2rem;
      color: #004d40;
      margin-bottom: 40px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .installation-content {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
      padding: 30px 40px;
      line-height: 1.7;
    }

    .installation-step {
      margin-bottom: 20px;
      padding: 15px 20px;
      border-left: 5px solid #00695c;
      background: #f1f8f6;
      border-radius: 8px;
      transition: transform 0.2s ease, background 0.3s ease;
    }

    .installation-step:hover {
      background: #e0f2f1;
      transform: translateX(5px);
    }

    .installation-step h3 {
      color: #004d40;
      font-size: 1.1rem;
      margin-bottom: 8px;
      font-weight: 600;
    }

    .installation-step p {
      margin: 0;
      font-size: 0.95rem;
      color: #333;
    }

    @media (max-width: 768px) {
      .installation-section h2 {
        font-size: 1.5rem;
      }

      .installation-content {
        padding: 20px;
      }

      .installation-step {
        padding: 12px 15px;
      }
    }












        /* ======= DOS AND DON'TS SECTION CSS ======= */
    .dos-donts-section {
      font-family: "Poppins", sans-serif;
      background-color: #f4f7f6;
      padding: 60px 20px;
      color: #333;
    }

    .dos-donts-container {
      max-width: 1100px;
      margin: 0 auto;
    }

    .dos-donts-section h2 {
      text-align: center;
      font-size: 2rem;
      color: #00695c;
      margin-bottom: 40px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .dos-donts-columns {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
    }

    .dos-column, .donts-column {
      flex: 1;
      min-width: 300px;
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
      padding: 25px;
    }

    .dos-column h3, .donts-column h3 {
      font-size: 1.2rem;
      color: #004d40;
      margin-bottom: 20px;
      border-bottom: 2px solid #00695c;
      padding-bottom: 5px;
    }

    .dos-column ul, .donts-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .dos-column ul li, .donts-column ul li {
      margin-bottom: 15px;
      padding-left: 30px;
      position: relative;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .dos-column ul li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: green;
      font-weight: bold;
    }

    .donts-column ul li::before {
      content: "✖";
      position: absolute;
      left: 0;
      color: red;
      font-weight: bold;
    }

    @media (max-width: 768px) {
      .dos-donts-columns {
        flex-direction: column;
      }
    }













/* ===========================
   STYLISH U-DRAIN PAGE CSS 
   (Modern, Clean & Animated)
   =========================== */
body {
  font-family: "Poppins", sans-serif;
  line-height: 1.8;
  margin: 0;
  padding: 0;
  color: #2e2e2e;
  background-color: #f2f5f4;
}

/* ===== SECTION LAYOUT ===== */
.udrain-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 25px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.07);
  animation: fadeIn 1s ease;
}

/* ===== HEADINGS ===== */
.udrain-section h1 {
  font-size: 2.6rem;
  text-align: center;
  color: #00695c;
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.udrain-section h2 {
  color: #004d40;
  border-left: 6px solid #00bfa5;
  padding-left: 12px;
  font-size: 1.6rem;
  margin-top: 50px;
  margin-bottom: 15px;
}

.udrain-section h3, .udrain-section h4, .udrain-section h5 {
  color: #00796b;
}

.udrain-section p, 
.udrain-section li {
  font-size: 1.05rem;
  color: #444;
}

/* ===== IMAGES ===== */
.udrain-section img {
  display: block;
  max-width: 100%;
  border-radius: 14px;
  margin: 20px auto;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.udrain-section img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ===== TABLE ===== */
.udrain-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.7s ease;
}

.udrain-table th, .udrain-table td {
  padding: 15px;
  text-align: center;
  font-size: 1rem;
}

.udrain-table th {
  background: linear-gradient(135deg, #00796b, #004d40);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.udrain-table tr:nth-child(even) {
  background-color: #f1f8f6;
}
.udrain-table tr:hover {
  background-color: #e0f2f1;
  transition: 0.3s ease;
}

/* ===== LOAD CARDS ===== */
.load-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin: 40px 0;
}

.load-card {
  background: linear-gradient(145deg, #ffffff, #f2f2f2);
  border: 1px solid #d0eae4;
  flex: 1 1 300px;
  border-radius: 16px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.8s ease;
}

.load-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.load-card h4 {
  color: #004d40;
  margin-bottom: 12px;
  font-size: 1.3rem;
  text-align: center;
  border-bottom: 2px solid #00bfa5;
  padding-bottom: 8px;
}

.load-card p {
  text-align: justify;
  font-size: 0.95rem;
}

/* ===== STEPS SECTION ===== */
.udrain-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 50px 0;
}

.step-card {
  background: #f9fdfc;
  border: 1px solid #b2dfdb;
  flex: 1 1 180px;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.9s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-card h5 {
  color: #00796b;
  margin-bottom: 8px;
  font-weight: 600;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .load-cards, .udrain-steps {
    flex-direction: column;
  }
  .udrain-section {
    padding: 40px 15px;
  }
  .udrain-section h1 {
    font-size: 2rem;
  }
}











/* --- Manhole Chambers / Utility Chambers PAGE --- */
  body {
  font-family: "Poppins", sans-serif;
  background: #f7f9f8;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

.manhole-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background: linear-gradient(180deg,#ffffff,#f2fbf9);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* Headings */
.manhole-section h1 {
  text-align: center;
  font-size: 2.4rem;
  color: #004d40;
  margin-bottom: 20px;
}

.manhole-section h2 {
  font-size: 1.6rem;
  color: #00695c;
  margin-bottom: 15px;
}

.manhole-section h3 {
  font-size: 1.2rem;
  color: #004d40;
  margin-bottom: 10px;
}

/* Intro */
.manhole-section .intro {
  text-align: center;
  font-size: 1rem;
  color: #444;
  margin-bottom: 40px;
}

/* Boxes */
.fancy-purpose {
  position: relative;
  background: linear-gradient(145deg, #ffffff 0%, #f4fbf9 100%);
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 25px 30px 30px;
}
.fancy-purpose:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

/* Header Gradient Bar */
.fancy-purpose .header {
  background: linear-gradient(90deg, #004d40, #26a69a);
  padding: 12px 18px;
  border-radius: 12px;
  margin-bottom: 20px;
}
.fancy-purpose .header h2 {
  color: #fff;
  font-size: 1.4rem;
  margin: 0;
  letter-spacing: 0.5px;
}

/* List Style */
.purpose-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.purpose-list li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 12px;
  padding: 10px 15px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: background 0.3s, transform 0.3s;
}
.purpose-list li:hover {
  background: #e0f2f1;
  transform: translateX(5px);
}

/* Icon Style */
.purpose-list span {
  font-size: 1.3rem;
  color: #00796b;
  display: inline-block;
  transition: transform 0.3s ease;
}
.purpose-list li:hover span {
  transform: rotate(15deg);
}

/* Responsive */
@media (max-width: 768px) {
  .fancy-purpose {
    padding: 20px;
  }
  .fancy-purpose .header h2 {
    font-size: 1.2rem;
  }
  .purpose-list li {
    font-size: 0.95rem;
  }
}

/* Spec Grid */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.spec-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.spec-card ul {
  padding-left: 20px;
  margin: 0;
}
.spec-card li {
  margin-bottom: 8px;
}

/* ---------- ADVANTAGE SECTION STYLES ---------- */
.advantage-section {
  background: linear-gradient(180deg, #f7f9fb 0%, #e9f2f2 100%);
  padding: 80px 10%;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.advantage-section h2 {
  font-size: 2rem;
  color: #004d40;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}
.advantage-section h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #26a69a;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ---------- CARD CONTAINER ---------- */
.adv-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  justify-content: center;
}

/* ---------- INDIVIDUAL CARD ---------- */
.adv-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-top: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.adv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-top: 4px solid #26a69a;
}

.adv-card i {
  font-size: 2rem;
  color: #26a69a;
  margin-bottom: 15px;
  transition: color 0.3s;
}

.adv-card h3 {
  font-size: 1.2rem;
  color: #004d40;
  margin-bottom: 10px;
  font-weight: 600;
}

.adv-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 250px;
}

/* ---------- HOVER GLOW EFFECT ---------- */
.adv-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(38, 166, 154, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.adv-card:hover::before {
  opacity: 1;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .advantage-section {
    padding: 60px 5%;
  }
  .adv-card {
    padding: 25px;
  }
}

/* Gallery */
.gallery {
  margin-top: 50px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
  gap: 15px;
}
.gallery-grid img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .manhole-section h1 {
    font-size: 1.8rem;
  }
  .gallery-grid img {
    border-radius: 10px;
  }
}

.manhole-info-section {
  background: linear-gradient(180deg, #f9fafc 0%, #eef3f6 100%);
  padding: 80px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.manhole-info-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  flex-wrap: wrap;
}

/* --- Image Style --- */
.manhole-info-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.manhole-info-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

/* --- Text Style --- */
.manhole-info-text {
  flex: 1;
  min-width: 300px;
}
.manhole-info-text h2 {
  font-size: 1.8rem;
  color: #004d40;
  margin-bottom: 18px;
  border-left: 5px solid #26a69a;
  padding-left: 15px;
  font-weight: 700;
}
.manhole-info-text p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
  text-align: justify;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .manhole-info-container {
    flex-direction: column;
    text-align: center;
  }
  .manhole-info-text h2 {
    border-left: none;
    border-bottom: 3px solid #26a69a;
    display: inline-block;
    padding-bottom: 5px;
  }
  .manhole-info-text p {
    text-align: center;
  }
}















/* --- CABLE TRENCHES PAGE --- */
.cable-trench-section {
  background: linear-gradient(to bottom right, #f8fafc, #eef3f7);
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  color: #1e293b;
}

.cable-trench-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.cable-trench-section h1 {
  text-align: center;
  font-size: 36px;
  color: #0f172a;
  margin-bottom: 20px;
  font-weight: 700;
}

.cable-trench-section .intro {
  text-align: center;
  font-size: 17px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* IMAGE SECTION */
.image-gallery {
  text-align: center;
  margin-bottom: 50px;
}

.image-gallery h2 {
  font-size: 26px;
  color: #1d4ed8;
  margin-bottom: 20px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  justify-items: center;
}

.img-box {
  width: 100%;
  max-width: 400px; /* Increased from 360px */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.img-box img {
  width: 100%;
  height: 280px; /* Increased from 240px */
  object-fit: cover;
  display: block;
}

.img-box:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Larger images on desktop screens */
@media (min-width: 1024px) {
  .img-box {
    max-width: 100%; /* Wider on desktop */
  }

  .img-box img {
    height: 100%; /* Taller image height on desktop */
  }

  .image-gallery h2 {
    font-size: 30px;
  }
}


.specs-box {
  background: #ffffff;
  border-left: 6px solid #2563eb;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.specs-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}

.specs-box h2 {
  font-size: 22px;
  color: #1e3a8a;
  margin-bottom: 15px;
}

.specs-box ul {
  list-style-type: none;
  padding: 0;
}

.specs-box li {
  font-size: 16px;
  line-height: 1.7;
  color: #334155;
  padding-left: 20px;
  position: relative;
}

.specs-box li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-size: 16px;
}

.design-standards {
  display: block;
  margin-top: 10px;
  font-weight: 500;
  color: #0ea5e9;
}

.load-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #1e40af;
  font-size: 26px;
}

.load-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.load-card {
  width: 340px;
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.load-card h3 {
  font-size: 20px;
  color: #0f172a;
  margin-bottom: 10px;
  font-weight: 600;
}

.load-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

.load-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.load-card.light {
  border-top: 6px solid #22d3ee;
}

.load-card.medium {
  border-top: 6px solid #3b82f6;
}

.load-card.heavy {
  border-top: 6px solid #1d4ed8;
}

.additional-info {
  margin-top: 50px;
  background: #e0f2fe;
  border-left: 6px solid #0284c7;
  border-radius: 10px;
  padding: 25px;
}

.additional-info h2 {
  color: #075985;
  margin-bottom: 15px;
}

.additional-info p {
  font-size: 16px;
  color: #1e293b;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
  .load-cards {
    flex-direction: column;
    align-items: center;
  }
}











/* ===== TELECOMMUNICATION CHAMBER STYLING ===== */

.telecom-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f8fafc, #eef2ff);
  font-family: "Poppins", sans-serif;
  color: #1e293b;
}

/* HEADINGS */
.telecom-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1e40af;
  font-weight: 700;
  margin-bottom: 10px;
}

.telecom-section h3 {
  text-align: center;
  font-size: 1.25rem;
  color: #475569;
  margin-bottom: 40px;
}

.telecom-section .description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.8;
  font-size: 1rem;
  color: #334155;
}

/* INFO CARDS */
.telecom-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 60px;
}

.telecom-card {
  background: #fff;
  border: 2px solid #dbeafe;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  width: 280px;
}

.telecom-card:hover {
  transform: translateY(-5px);
  border-color: #1d4ed8;
  box-shadow: 0 8px 18px rgba(29, 78, 216, 0.2);
}

.telecom-card h4 {
  color: #1d4ed8;
  font-size: 1.1rem;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.telecom-card ul {
  list-style: none;
  padding: 0;
}

.telecom-card li {
  padding: 6px 0;
  border-bottom: 1px solid #e2e8f0;
}

/* FEATURES SECTION */
.telecom-features-section {
  background: #fff;
  padding: 60px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  margin: 80px auto;
  max-width: 1100px;
  text-align: center;
}

.telecom-features-section h2 {
  color: #1e40af;
  font-size: 2rem;
  margin-bottom: 30px;
}

.telecom-features-content ul {
  list-style: none;
  margin: 0 auto 40px;
  padding: 0;
  max-width: 600px;
}

.telecom-features-content li {
  background: #f1f5ff;
  margin: 12px 0;
  padding: 12px 18px;
  border-left: 5px solid #2563eb;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* FEATURE IMAGES */
.telecom-feature-images {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.telecom-feature-images img {
  width: 100%;
  max-width: 720px;       /* Large display on desktop */
  height: auto;           /* Adjust height automatically */
  object-fit: contain;    /* Shows full image without cropping */
  border-radius: 16px;
  background-color: #f8fafc; /* Adds subtle background if aspect ratio differs */
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.telecom-feature-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(29, 78, 216, 0.3);
}

/* Larger image layout on desktop */
@media (min-width: 1024px) {
  .telecom-feature-images img {
    max-width: 800px;
  }
}

/* TABLE */
.table-section {
  margin: 60px auto;
  text-align: center;
  max-width: 900px;
}

.table-section h4 {
  color: #1e40af;
  margin-bottom: 20px;
}

.table-section table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.table-section th {
  background: #1d4ed8;
  color: white;
  padding: 12px;
}

.table-section td {
  border: 1px solid #e5e7eb;
  padding: 12px;
}

/* ====================== ADVANTAGES SECTION ====================== */
.advantages {
  margin: 90px auto;
  padding: 60px 20px;
  background: linear-gradient(180deg, #f8fafc, #eef2ff);
  border-radius: 20px;
  max-width: 1200px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.advantages h2 {
  font-size: 2rem;
  color: #1e40af;
  font-weight: 700;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Grid Layout */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  justify-items: center;
}

/* Card Style */
.adv-card {
  background: #ffffff;
  color: #1e293b;
  font-weight: 500;
  padding: 22px 18px;
  border-radius: 14px;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  border-top: 5px solid #2563eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.adv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(29, 78, 216, 0.25);
  border-color: #1e40af;
}

/* Responsive Text */
@media (max-width: 768px) {
  .advantages {
    padding: 40px 15px;
  }
  .advantages h2 {
    font-size: 1.6rem;
  }
  .adv-card {
    max-width: 100%;
  }
}

/* GALLERY */
.telecom-gallery {
  margin-top: 80px;
  text-align: center;
}

.telecom-gallery h4 {
  color: #1e40af;
  margin-bottom: 30px;
}

.telecom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 25px;
  justify-items: center;
}

.telecom-img-box img {
  width: 100%;
  max-width: 450px;
  height: 320px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.telecom-img-box img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(29, 78, 216, 0.25);
}

/* Larger images on desktop */
@media (min-width: 1024px) {
  .telecom-feature-images img {
    max-width: 420px;
    height: 270px;
  }
  .telecom-img-box img {
    height: 360px;
  }
}











/* ====================== PRECAST CONCRETE COMPOUND WALL ====================== */

.compound-wall-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f8fafc, #eef2ff);
  font-family: "Poppins", sans-serif;
  color: #1e293b;
}

/* Headings */
.compound-wall-section h2 {
  text-align: center;
  font-size: 2.6rem;
  color: #1e40af;
  font-weight: 700;
  margin-bottom: 10px;
}

.compound-wall-section h3 {
  text-align: center;
  font-size: 1.4rem;
  color: #475569;
  margin-bottom: 40px;
}

.description {
  max-width: 900px;
  margin: 0 auto 20px;
  text-align: center;
  line-height: 1.8;
  font-size: 1rem;
  color: #334155;
}

/* Info Cards */
.compound-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin: 50px auto;
}

.compound-card {
  background: #ffffff;
  border: 2px solid #dbeafe;
  border-radius: 16px;
  padding: 25px;
  width: 350px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.compound-card:hover {
  transform: translateY(-5px);
  border-color: #1d4ed8;
  box-shadow: 0 8px 18px rgba(29, 78, 216, 0.2);
}

/* Image Section */
.compound-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin: 60px auto;
}

.compound-images img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.compound-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(29, 78, 216, 0.3);
}

/* Topography & Features */
.topography, .wall-features {
  max-width: 900px;
  margin: 50px auto;
  background: #fff;
  padding: 25px 30px;
  border-radius: 16px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
}

.wall-features ul {
  list-style: none;
  padding: 0;
}

.wall-features li::before {
  content: "✔ ";
  color: #2563eb;
  font-weight: bold;
}

/* Advantages */
/* COMPOUND WALL ADVANTAGES */
.compound-advantages {
  margin: 80px auto;
  text-align: center;
  max-width: 1100px;
  padding: 0 20px;
}

.compound-advantages h3 {
  font-size: 28px;
  color: #1d4ed8;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.compound-adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  justify-items: center;
}

.compound-adv-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.compound-adv-card p {
  margin: 0;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
}

.compound-adv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(29, 78, 216, 0.2);
}

/* Gallery */
.compound-gallery {
  margin-top: 80px;
  text-align: center;
}

.compound-gallery h4 {
  color: #1e40af;
  margin-bottom: 30px;
  font-size: 1.4rem;
}

.compound-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 25px;
  justify-items: center;
}

.compound-img-box img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 12px;
  object-fit: contain; /* ensures full image visible */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.compound-img-box img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(29, 78, 216, 0.25);
}











/* RETAINING WALL MAIN */
.retaining-wall {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.retaining-wall h2 {
  font-size: 2rem;
  color: #1d4ed8;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.intro-text {
  color: #444;
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* RETAINING GALLERY SECTIONS */
.retaining-gallery-section {
  margin-bottom: 70px;
}

.retaining-gallery-section h3 {
  font-size: 1.5rem;
  color: #1d4ed8;
  margin-bottom: 25px;
  text-transform: uppercase;
}

/* IMAGE GRID */
.retaining-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  justify-items: center;
}

.retaining-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.retaining-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(29, 78, 216, 0.25);
}

.retaining-item h4 {
  background: #eff6ff;
  color: #1d4ed8;
  padding: 12px 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.retaining-item img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  background: #f9fafb;
  transition: transform 0.3s ease;
}

.retaining-item:hover img {
  transform: scale(1.05);
}

/* BENEFITS SECTION */
.benefits {
  margin-top: 80px;
}

.benefits h3 {
  font-size: 26px;
  color: #1d4ed8;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.benefit-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 5px 14px rgba(0,0,0,0.08);
  text-align: left;
  transition: 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(29, 78, 216, 0.2);
}

.benefit-card h5 {
  font-size: 18px;
  color: #1d4ed8;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

/* CONNECTION DETAILS */
.connection-details {
  margin-top: 60px;
  text-align: left;
}

.connection-details h4 {
  color: #1d4ed8;
  font-size: 22px;
  margin-bottom: 10px;
}

.connection-details ul {
  list-style: disc;
  margin-left: 40px;
  color: #333;
  line-height: 1.6;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .retaining-wall h2 {
    font-size: 1.6rem;
  }

  .retaining-gallery img {
    height: auto;
  }

  .retaining-gallery-section h3 {
    font-size: 1.2rem;
  }

  .benefit-card {
    padding: 20px;
  }
}












/* hollow-core-cladding */
/* PRECAST UNDERGROUND WATER TANKS */
.water-tank {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.water-tank h2 {
  font-size: 2rem;
  color: #1d4ed8;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.water-tank .intro-text {
  font-size: 1.1rem;
  color: #444;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* DESIGN REQUIREMENTS */
.design-requirements {
  margin-bottom: 70px;
}

.design-requirements h3 {
  font-size: 1.5rem;
  color: #1d4ed8;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.design-requirements p {
  max-width: 900px;
  margin: 0 auto 30px;
  color: #444;
}

.design-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  justify-items: center;
}

.design-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: 0.3s;
}

.design-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(29, 78, 216, 0.25);
}

.design-item h4 {
  background: #eff6ff;
  color: #1d4ed8;
  padding: 12px;
  font-size: 1.1rem;
}

.design-item img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: #f9fafb;
}

/* FEATURES GRID */
.features {
  margin-top: 60px;
}

.features h3 {
  color: #1d4ed8;
  margin-bottom: 25px;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 5px 14px rgba(0,0,0,0.08);
  text-align: left;
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(29, 78, 216, 0.2);
}

.feature-card h5 {
  color: #1d4ed8;
  margin-bottom: 10px;
  font-size: 1rem;
}

.feature-card p {
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}

/* TABLE SECTION */
.table-section {
  margin-top: 60px;
  text-align: left;
}

.table-section h3 {
  color: #1d4ed8;
  font-size: 1.4rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.info-table th, .info-table td {
  border: 1px solid #ddd;
  padding: 12px 15px;
  text-align: left;
}

.info-table th {
  background-color: #eff6ff;
  color: #1d4ed8;
}

.info-table td {
  color: #333;
}

/* PROJECTS */
.projects {
  margin-top: 70px;
}

.projects h3 {
  color: #1d4ed8;
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.project-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 5px 14px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: 0.3s;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(29, 78, 216, 0.25);
}

.project-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: #f9fafb;
}

.project-card h5 {
  background: #eff6ff;
  color: #1d4ed8;
  padding: 10px;
  font-size: 1rem;
}

.project-card p {
  padding: 10px 15px;
  color: #333;
  font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .water-tank h2 {
    font-size: 1.6rem;
  }
  .design-item img, .project-card img {
    height: auto;
  }
}














/* SLEEK WALL page */
.sleek-wall {
  padding: 60px 8%;
  background: #fafafa;
  color: #222;
}

.sleek-wall h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #004aad;
}

.sleek-wall p {
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-size: 1rem;
  text-align: justify;
}

.sleek-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.sleek-item {
  text-align: center;
  background: white;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 15px;
  transition: transform 0.3s;
}

.sleek-item:hover {
  transform: translateY(-6px);
}

.sleek-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: contain; /* prevents cropping */
}

.sleek-item h4 {
  margin: 15px 0 10px;
  font-size: 1.1rem;
  color: #003366;
}

.sleek-item .note {
  font-size: 0.9rem;
  color: #777;
  margin-top: 8px;
}

.sleek-features {
  background: #f0f5ff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
}

.sleek-features h3 {
  text-align: center;
  color: #004aad;
  margin-bottom: 25px;
}

.feature {
  margin-bottom: 20px;
}

.feature h4 {
  color: #222;
  margin-bottom: 10px;
}

.feature ul {
  padding-left: 20px;
  color: #555;
}

/* SLEEK WALL - SIZE SECTION */
.sleek-details {
  background: #fff;
  border-left: 5px solid #004aad;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
}

.sleek-details-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap; /* ensures responsiveness */
}

.sleek-text {
  flex: 1 1 50%;
}

.sleek-text h3 {
  color: #004aad;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.sleek-text ul {
  list-style: disc;
  padding-left: 20px;
  color: #444;
  line-height: 1.8;
}

.sleek-image {
  flex: 1 1 40%;
  text-align: center;
}

.sleek-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

/* Responsive layout */
@media (max-width: 768px) {
  .sleek-details-content {
    flex-direction: column;
    text-align: center;
  }

  .sleek-text {
    flex: 1 1 100%;
  }

  .sleek-image {
    flex: 1 1 100%;
    margin-top: 20px;
  }

  .sleek-image img {
    max-width: 100%;
  }
}


.sleek-gallery-works {
  text-align: center;
}

.sleek-gallery-works h3 {
  color: #004aad;
  margin-bottom: 20px;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.works-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
}

.sleek-footer-text {
  text-align: center;
  margin-top: 30px;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}














/* planters page */
/* ===== GENERAL STYLES ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f9f9fb;
  color: #333;
  line-height: 1.6;
}

/* ===== SECTION HEADERS ===== */
section {
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

h2 {
  font-size: 2.3rem;
  color: #004aad;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.intro-text {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  max-width: 850px;
  margin: 0 auto 50px;
  line-height: 1.9;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== FLEX CONTENT ===== */
.planter-content,
.staircase-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* ===== IMAGE GALLERY ===== */
.planter-image,
.staircase-image {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.planter-image img,
.staircase-image img {
  width: 100%;
  border-radius: 18px;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.planter-image img:hover,
.staircase-image img:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 40px rgba(0, 74, 173, 0.35);
}

/* ===== FEATURE / ADVANTAGE CARDS ===== */
.planter-text,
.staircase-advantages {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 30px 35px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 74, 173, 0.15);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 74, 173, 0.25);
}

/* CARD TITLES */
.card h3 {
  color: #004aad;
  font-size: 1.4rem;
  border-left: 4px solid #004aad;
  padding-left: 10px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* LIST STYLING */
.card ul {
  list-style: none;
  padding-left: 0;
}

.card ul li {
  font-size: 1rem;
  color: #333;
  margin: 8px 0;
  position: relative;
  padding-left: 28px;
}

.card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #004aad;
  font-weight: bold;
}

/* ===== BACKGROUND GRADIENTS ===== */
.precast-planters {
  background: linear-gradient(135deg, #eef4ff 0%, #f8fbff 100%);
}

.precast-staircase {
  background: linear-gradient(135deg, #fdfdfd 0%, #e9f1ff 100%);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .planter-content,
  .staircase-content {
    flex-direction: column;
    text-align: center;
  }

  .planter-text,
  .staircase-advantages {
    align-items: center;
  }

  .planter-image img,
  .staircase-image img {
    height: 200px;
  }
}

@media (max-width: 600px) {
  h2 {
    font-size: 1.8rem;
  }

  .card {
    padding: 20px;
  }
}















/* ===== PRECAST CONCRETE FACADES page ===== */
.precast-facades {
  background: linear-gradient(135deg, #eef6ff 0%, #f8fbff 100%);
  padding: 80px 20px;
}

.precast-facades h2 {
  font-size: 2.4rem;
  color: #004aad;
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.precast-facades .intro-text {
  text-align: center;
  font-size: 1.1rem;
  color: #444;
  max-width: 850px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.facade-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* ===== FACADE IMAGE GALLERY ===== */
.facade-gallery {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.facade-gallery img {
  width: 100%;
  height: 230px;
  border-radius: 15px;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.facade-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 74, 173, 0.3);
}

/* ===== FEATURES CARD ===== */
.facade-features {
  flex: 1;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 30px 35px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 74, 173, 0.15);
}

.facade-features h3 {
  font-size: 1.5rem;
  color: #004aad;
  border-left: 4px solid #004aad;
  padding-left: 10px;
  margin-bottom: 15px;
}

.facade-features ul {
  list-style: none;
  padding-left: 0;
}

.facade-features ul li {
  margin: 10px 0;
  font-size: 1rem;
  color: #333;
  position: relative;
  padding-left: 28px;
}

.facade-features ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #004aad;
  font-weight: bold;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .facade-content {
    flex-direction: column;
  }

  .facade-features {
    order: -1;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .facade-gallery img {
    height: 200px;
  }
}














/* ===== PRECAST CONCRETE FURNITURE SECTION ===== */
.precast-furniture {
  background: linear-gradient(120deg, #f8fbff, #eef4ff);
  padding: 90px 20px;
}

.precast-furniture h2 {
  text-align: center;
  color: #003a8c;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.precast-furniture .intro-text {
  text-align: center;
  color: #555;
  font-size: 1.1rem;
  max-width: 850px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

/* GRID LAYOUT */
.furniture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

/* FURNITURE CARD */
.furniture-card {
  background: white;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  border-left: 6px solid #004aad;
}

.furniture-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 74, 173, 0.2);
}

.furniture-card h3 {
  color: #004aad;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.furniture-card h4 {
  color: #003a8c;
  margin-top: 10px;
  font-weight: 600;
}

.furniture-card p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 10px;
}

.furniture-card ul {
  padding-left: 20px;
  color: #333;
}

.furniture-card ul li {
  margin-bottom: 6px;
}

/* IMAGE STYLING */
.furniture-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 15px;
}

.furniture-images img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.furniture-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 74, 173, 0.25);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .furniture-card {
    padding: 25px;
  }

  .furniture-card h3 {
    font-size: 1.2rem;
  }

  .furniture-images img {
    height: 160px;
  }
}











/* PRECAST TILES SECTION */
.precast-tiles {
  background: #f8f9fa;
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
}

.precast-tiles .container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

.precast-tiles h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.precast-tiles .intro-text {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

.tiles-info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.tiles-details {
  flex: 1 1 40%;
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.tiles-details h3 {
  color: #222;
  margin-top: 20px;
  font-size: 1.2rem;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 5px;
}

.tiles-details ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.tiles-details ul li {
  padding: 8px 0;
  color: #444;
  font-size: 1rem;
  position: relative;
  padding-left: 25px;
}

.tiles-details ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
}

.tiles-image {
  flex: 1 1 55%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 15px;
}

.tiles-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tiles-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.gallery-title {
  text-align: center;
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 25px;
  border-bottom: 3px solid #27ae60;
  display: inline-block;
  padding-bottom: 5px;
}

.tiles-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.tiles-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.4s ease;
}

.tiles-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .tiles-info {
    flex-direction: column;
  }
}















/* FOUNDATION SECTION */
.foundation-section {
  background: #f7f9fc;
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
}

.foundation-section .container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

.foundation-section h2 {
  text-align: center;
  font-size: 2.6rem;
  color: #333;
  margin-bottom: 20px;
}

.foundation-section .intro-text {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
  line-height: 1.7;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.foundation-elements {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.element-card {
  flex: 1 1 30%;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.element-card:hover {
  transform: translateY(-8px);
}

.element-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.element-card h3 {
  color: #222;
  font-size: 1.3rem;
  margin: 15px 0 10px;
  text-align: center;
}

.element-card p {
  font-size: 1rem;
  color: #555;
  padding: 0 20px 10px;
  text-align: justify;
}

.foundation-procedure h3 {
  text-align: center;
  font-size: 1.8rem;
  margin: 60px 0 30px;
  color: #333;
  border-bottom: 3px solid #27ae60;
  display: inline-block;
  padding-bottom: 5px;
}

.procedure-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.procedure-card {
  flex: 1 1 45%;
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.procedure-card h4 {
  color: #2c3e50;
  margin-bottom: 15px;
}

.procedure-card ol {
  margin-left: 20px;
  color: #555;
  line-height: 1.7;
}

.material-spec ul {
  list-style: none;
  padding-left: 0;
  line-height: 1.8;
  color: #444;
}

.material-spec h3, 
.material-spec h4 {
  color: #222;
  margin-top: 20px;
}

.gallery-title {
  text-align: center;
  font-size: 1.9rem;
  color: #333;
  margin: 50px 0 25px;
  border-bottom: 3px solid #27ae60;
  display: inline-block;
  padding-bottom: 5px;
}

.foundation-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 15px;
}

.foundation-gallery img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.foundation-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .foundation-elements,
  .procedure-grid {
    flex-direction: column;
  }
}














/* ===== Pre-stressed Purlins styles (unique class names) ===== */
.purlins-section { background: linear-gradient(180deg,#f7fbff,#fff); padding: 60px 20px; font-family: 'Poppins', sans-serif; color:#1f2937; }
.purlins-wrap { max-width:1200px; margin:0 auto; }
.purlins-head { text-align:center; margin-bottom:28px; }
.purlins-title { font-size:2rem; color:#0b63c7; margin:0; display:inline-block; padding:6px 12px; border-radius:8px; font-weight:800; }
.purlins-lead { max-width:920px; margin:12px auto 0; color:#374151; line-height:1.6; }

.purlins-grid { display:grid; grid-template-columns: 1fr 420px; gap:28px; align-items:start; margin-top:24px; }
@media (max-width: 992px){ .purlins-grid { grid-template-columns: 1fr; } }

/* Left column */
.purlins-left h3 { color:#0b63c7; margin-top:0; font-size:1.1rem; }
.purlins-features { list-style: none; padding:0; margin:12px 0 22px; display:grid; gap:10px; }
.purlins-features li { background:#ffffff; border-left:4px solid #93c5fd; padding:10px 14px; border-radius:6px; box-shadow:0 6px 18px rgba(13,38,76,0.03); color:#213547; line-height:1.5; }

.purlins-specs { width:100%; border-collapse:collapse; margin-bottom:18px; }
.purlins-specs th, .purlins-specs td { text-align:left; padding:8px 10px; border-bottom:1px solid #eef2ff; }
.purlins-specs th { width:40%; color:#0b63c7; font-weight:700; }

/* applications list */
.purlins-apps { list-style: disc; margin-left:18px; color:#334155; }

/* Right column (gallery + stats) */
.purlins-right { display:flex; flex-direction:column; gap:18px; align-items:stretch; }
.purlins-gallery {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 50px auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.purlins-gal-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
}

.purlins-gal-img {
  width: 100%;
  flex-shrink: 0;
  height: 400px;
  object-fit: cover;
}

/* Buttons */
.purlins-prev, .purlins-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  color: #0b76ef;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.purlins-prev:hover, .purlins-next:hover {
  background: #0b76ef;
  color: #fff;
}

.purlins-prev {
  left: 10px;
}
.purlins-next {
  right: 10px;
}

/* Stats */
.purlins-stats { display:flex; gap:12px; justify-content:space-between; }
@media (max-width:600px){ .purlins-stats { flex-direction:column; } }
.purlins-stat { background:#fff; padding:14px; border-radius:10px; text-align:center; box-shadow:0 6px 18px rgba(2,6,23,0.04); flex:1; }
.purlins-stat-num { font-size:1.5rem; color:#0b63c7; font-weight:800; }
.purlins-stat-label { font-size:0.85rem; color:#475569; margin-top:6px; }

/* CTA */
.purlins-cta { display:inline-flex; align-items:center; justify-content:center; gap:10px; background:#0b63c7; color:#fff; padding:12px 16px; border-radius:10px; text-decoration:none; font-weight:700; box-shadow:0 8px 20px rgba(11,99,255,0.12); }
.purlins-cta i { font-size:1.05rem; }

/* small utilities */
.visually-hidden { position:absolute !important; height:1px; width:1px; overflow:hidden; clip:rect(1px,1px,1px,1px); white-space:nowrap; }












.solid-slab {
  padding: 100px 20px;
  background: #f8fafc;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #0b76ef;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.intro-text {
  text-align: center;
  font-size: 1.1rem;
  color: #444;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.solid-slab-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  flex: 1 1 350px;
}

.card h3 {
  color: #0b76ef;
  margin-bottom: 15px;
  font-size: 1.4rem;
  border-bottom: 2px solid #0b76ef;
  display: inline-block;
  padding-bottom: 5px;
}

.card ul {
  list-style: none;
  padding: 0;
}

.card ul li {
  padding: 8px 0;
  font-size: 1rem;
  color: #333;
  position: relative;
  padding-left: 22px;
}

.card ul li::before {
  content: "✔";
  color: #0b76ef;
  position: absolute;
  left: 0;
  font-size: 1rem;
}

.solid-slab-gallery {
  flex: 1 1 500px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.solid-slab-gallery img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.solid-slab-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .solid-slab-content {
    flex-direction: column;
  }
  .solid-slab-gallery img {
    height: 200px;
  }
}
















/* Insulated Wall Panels PAGE */
.insulated-wall {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f8fafc, #eaf3ff);
  font-family: 'Poppins', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 2.6rem;
  color: #0b76ef;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.intro-text {
  text-align: center;
  color: #444;
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.insulated-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.card {
  background: #fff;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  flex: 1 1 360px;
}

.card h3 {
  color: #0b76ef;
  font-size: 1.4rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #0b76ef;
  display: inline-block;
  padding-bottom: 5px;
}

.card ul {
  list-style: none;
  padding: 0;
}

.card ul li {
  padding: 8px 0;
  font-size: 1rem;
  color: #333;
  position: relative;
  padding-left: 22px;
}

.card ul li::before {
  content: "✔";
  color: #0b76ef;
  position: absolute;
  left: 0;
  font-size: 1rem;
}

.insulated-gallery {
  flex: 1 1 500px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.insulated-gallery img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.insulated-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .insulated-content {
    flex-direction: column;
  }
  .insulated-gallery img {
    height: 200px;
  }
}

















.contact-section {
  background: linear-gradient(180deg, #f2f8ff, #e7efff);
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 2.6rem;
  color: #0b76ef;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contact-intro {
  text-align: center;
  color: #444;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.7;
  font-size: 1.1rem;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.contact-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 30px;
  flex: 1 1 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.contact-card h3 {
  color: #0b76ef;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.contact-card p {
  color: #333;
  font-size: 1rem;
  margin: 8px 0;
}

.contact-card a {
  color: #0b76ef;
  text-decoration: none;
  font-weight: 600;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-card {
    flex: 1 1 100%;
  }
}












/* ===== Enquiry Section ===== */
.enquiry-section {
  background-color: #060616;
  padding: 60px 0;
  font-family: 'Segoe UI', sans-serif;
}

.enquiry-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.enquiry-title {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: 1px;
}

.enquiry-form input,
.enquiry-form textarea {
  display: block;
  width: 80%;
  margin: 0 auto 20px;
  padding: 14px 16px;
  font-size: 18px;
  border: 2px solid transparent;
  border-radius: 10px;
  transition: all 0.3s ease;
  background-color: #fff;
  color: #222;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: #5bd183;
  box-shadow: 0 0 5px #5bd183;
}

.enquiry-form button {
  background-color: #5bd183;
  color: #000;
  font-size: 20px;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.enquiry-form button:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .enquiry-form input,
  .enquiry-form textarea {
    width: 90%;
  }
}
