body{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}
:root {
  --ttipl-blue: #0078D7;
  --ttipl-red: #E41E26;
  --ttipl-dark: #1E1E1E;
  --ttipl-light: #F3F4F6;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo-img {
  width:250px;
}

.navbar-nav .nav-link {
  color: var(--ttipl-dark);
  margin: 0 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--ttipl-blue);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 0;
  height: 2px;
  background: var(--ttipl-red);
  transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover::after {
  width: 80%;
}

.btn-ttipl {
  background: linear-gradient(90deg, var(--ttipl-blue), #004a99);
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}
.btn-ttipl:hover {
  background: linear-gradient(90deg, var(--ttipl-red), #b51018);
  transform: translateY(-2px);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100vw;
  background: #fff;
  border-top: 3px solid var(--ttipl-blue);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.dropdown.show .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-menu h6 {
  border-bottom: 2px solid var(--ttipl-red);
  padding-bottom: 4px;
  margin-bottom: 10px;
}
.mega-menu ul li a {
  color: var(--ttipl-dark);
  text-decoration: none;
  display: block;
  padding: 5px 0;
  transition: all 0.3s ease;
}
.mega-menu ul li a:hover {
  color: var(--ttipl-blue);
  transform: translateX(5px);
}

.menu-icon span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--ttipl-blue);
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.custom-toggler:not(.collapsed) .menu-icon span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.custom-toggler:not(.collapsed) .menu-icon span:nth-child(2) {
  opacity: 0;
}
.custom-toggler:not(.collapsed) .menu-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
  }
  .navbar-nav .nav-link {
    color: #333;
    font-size: 0.95rem;
    padding: 10px 0;
  }
  .mega-menu {
    position: static !important;
    background: #fff;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 10px 0;
  }
}

.hero-corporate {
  position: relative;
  width: 100%;
  min-height: 90vh;
  overflow: hidden;
  background: linear-gradient(120deg, #ffffff 0%, #f7faff 100%);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.hero-bg-gradient {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, rgba(0,120,215,0.08) 0%, rgba(228,30,38,0.05) 100%);
  animation: gradientMove 6s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes gradientMove {
  from { background-position: 0% 0%; }
  to { background-position: 100% 100%; }
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1 1 45%;
  animation: fadeInLeft 1s ease-out forwards;
}
.hero-topline {
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--ttipl-blue);
}
.hero-heading {
  font-size: 2.8rem;
  color: #1b1d24;
  line-height: 1.3;
  text-transform: uppercase;
}
.hero-heading span {
  color: var(--ttipl-blue);
}
.hero-desc {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  max-width: 550px;
}

.hero-image-wrapper {
  flex: 1 1 50%;
  position: relative;
  text-align: right;
  animation: fadeInRight 1.2s ease-out forwards;
}
.hero-img {
  max-width: 580px;
  width: 100%;
  border-radius: 0 0 0 60px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
  animation: slowFloat 6s ease-in-out infinite alternate;
}
@keyframes slowFloat {
  from { transform: translateY(0px); }
  to { transform: translateY(-10px); }
}

.btn-outline-ttipl {
  border: 2px solid var(--ttipl-blue);
  color: var(--ttipl-blue);
  transition: all 0.3s ease;
}
.btn-outline-ttipl:hover {
  background: var(--ttipl-blue);
  color: #fff;
}

.animated-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--ttipl-blue), var(--ttipl-red));
  animation: lineGrow 4s ease-in-out forwards 0.6s;
}
@keyframes lineGrow {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 991px) {
  .hero-corporate {
    padding: 80px 0;
    text-align: center;
  }
  .hero-content, .hero-image-wrapper {
    flex: 1 1 100%;
    text-align: center;
  }
  .hero-img {
    margin-top: 40px;
    border-radius: 20px;
  }
  .hero-heading {
    font-size: 2rem;
  }
}

.products-row-section {
  background: #f8fafc;
  position: relative;
}

.section-header h2 {
  font-size: 2.2rem;
  color: #1a1a1a;
  letter-spacing: 1px;
}
.section-header p {
  color: #666;
  font-size: 1.05rem;
}
.header-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--ttipl-blue), var(--ttipl-red));
  border-radius: 4px;
}

.product-box {
  background: #fff;
  border-radius: 12px;
  padding: 20px 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  height: 100%;
}
.product-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.product-img {
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.product-img img {
  max-height: 200px;
  width: auto;
  transition: transform 0.5s ease;
}
.product-box:hover img {
  transform: scale(1.05);
}

.product-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 10px;
  min-height: 40px;
}

.btn-enquire {
  display: inline-block;
  margin-top: 10px;
  background: var(--ttipl-blue);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 30px;
  padding: 8px 20px;
  transition: all 0.3s ease;
  border: none;
}
.btn-enquire:hover {
  background: var(--ttipl-red);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 1199px) {
  .col-lg-2 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}
@media (max-width: 767px) {
  .col-lg-2 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .col-lg-2 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.about-industrial {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  color: #fff;
}

.about-bg {
  position: absolute;
  inset: 0;
  background: url("../img/about-factory.webp") center center / cover no-repeat;
  background-attachment: fixed;
  z-index: 1;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.85) 30%, rgba(0,45,90,0.7) 100%);
  z-index: 2;
  animation: lightSweep 10s infinite alternate ease-in-out;
}
@keyframes lightSweep {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.about-industrial-content {
  position: relative;
  z-index: 5;
}
.about-industrial-title {
  font-size: 2.5rem;
  line-height: 1.3;
  color: #ffffff;
}
.about-industrial-title span {
  color: var(--ttipl-blue);
}
.about-industrial-desc {
  font-size: 1.05rem;
  color: #d8e3f0;
  line-height: 1.8;
  margin-top: 15px;
}

.about-industrial-stats {
  gap: 40px;
}
.stat-item {
  text-align: center;
  min-width: 120px;
}
.stat-item h3 {
  font-size: 2rem;
  color: var(--ttipl-blue);
  font-weight: 700;
}
.stat-item p {
  font-size: 0.95rem;
  color: #cfd9e4;
}

.btn-industrial {
  background: linear-gradient(90deg, var(--ttipl-blue), var(--ttipl-red));
  border: none;
  color: #fff;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.btn-industrial:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 25px rgba(0,120,215,0.4);
}

.about-industrial-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  z-index: 4;
}
.about-industrial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 420px;
  filter: brightness(0.95) contrast(1.05);
  transition: transform 1s ease;
}
.about-industrial-image:hover .about-industrial-img {
  transform: scale(1.05);
}

.industrial-glow {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(0,120,215,0.3) 0%, transparent 70%);
  z-index: 3;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0.5; transform: scale(1); }
}

@media (max-width: 991px) {
  .about-industrial-title {
    font-size: 2rem;
  }
  .stat-item h3 {
    font-size: 1.6rem;
  }
  .about-industrial-img {
    max-height: 350px;
  }
}

.approvals-section {
  background: linear-gradient(120deg, #f8fafc 0%, #edf2f7 100%);
  position: relative;
  overflow: hidden;
  padding: 36px 0;
}
.approvals-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(0deg, rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.28;
  z-index: 1;
}

.section-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--ttipl-blue), var(--ttipl-red));
  border-radius: 4px;
}

.approvals-scroll-wrapper {
  position: relative;
  z-index: 2;
  margin-top: 18px;
}

.approvals-scroll-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;  
  scroll-behavior: smooth;
  padding: 12px 6px;
  touch-action: pan-x;                 
  overscroll-behavior-x: contain;     
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.approvals-scroll-container::-webkit-scrollbar {
  height: 8px;
}
.approvals-scroll-container::-webkit-scrollbar-thumb {
  background: rgba(0,120,215,0.32);
  border-radius: 8px;
}

.approvals-row {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: nowrap;         
  width: max-content;        
  padding: 6px;
  margin-left: 6px;       
}

.approval-logo-card {
  flex: 0 0 auto;
  width: 350px;
  height: 350px;
  padding: 14px 10px;
  background: #fff;
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(9,18,28,0.06);
  transition: transform .32s ease, box-shadow .32s ease;
  cursor: pointer;
  user-select: none;        
  -webkit-user-drag: none;
  position: relative;
}
.approval-logo-card img {
  width:200px;
  object-fit: contain;
  filter: grayscale(100%) brightness(.92);
  transition: transform .32s ease, filter .32s ease;
}
.approval-title {
  margin-top: 10px;
  font-size: .85rem;
  font-weight: 600;
  color: #111;
  line-height: 1.2;
}

.approval-logo-card:hover,
.approval-logo-card:focus {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(9,18,28,0.12);
}
.approval-logo-card:hover img,
.approval-logo-card:focus img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(1);
}

.approval-logo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--ttipl-blue), var(--ttipl-red));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.approval-logo-card:hover::before,
.approval-logo-card:focus::before {
  opacity: 1;
  animation: borderFlow 3s linear infinite;
}
@keyframes borderFlow { from { background-position: 0% 50%; } to { background-position: 100% 50%; } }

.approval-logo-card {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeInUp .6s ease forwards;
}
@keyframes fadeInUp { from { opacity:0; transform:translateY(18px);} to { opacity:1; transform:translateY(0);} }
.approval-logo-card:nth-child(1){animation-delay:.08s}
.approval-logo-card:nth-child(2){animation-delay:.14s}
.approval-logo-card:nth-child(3){animation-delay:.20s}
.approval-logo-card:nth-child(4){animation-delay:.26s}
.approval-logo-card:nth-child(5){animation-delay:.32s}
.approval-logo-card:nth-child(6){animation-delay:.38s}
.approval-logo-card:nth-child(7){animation-delay:.44s}
.approval-logo-card:nth-child(8){animation-delay:.50s}
.approval-logo-card:nth-child(9){animation-delay:.56s}

@media (max-width: 991px) {
  .approval-logo-card { width: 120px; height: 140px; }
  .approval-logo-card img { max-height: 64px; }
}
@media (max-width: 575px) {
  .approval-logo-card { width: 100px; height: 120px; }
  .approval-logo-card img { max-height: 56px; }
  .approval-title { font-size: .78rem; }
}

.approvals-scroll-wrapper .scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .28s ease;
  cursor: pointer;
}
.scroll-left { left: 6px; }
.scroll-right { right: 6px; }
.scroll-btn i { color: var(--ttipl-blue); font-size: 1.3rem; pointer-events: none; }
.scroll-btn:hover { background: linear-gradient(90deg,var(--ttipl-blue),var(--ttipl-red)); }
.scroll-btn:hover i { color: #fff; }

@media (max-width: 767px) {
  .approvals-scroll-wrapper .scroll-btn { display: none; }
}

.industries-section {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 50%, #e6ebf1 100%);
  padding: 80px 0;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.industries-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(0,120,215,0.08), transparent 70%);
  z-index: 0;
}

.industries-section .section-header {
  position: relative;
  z-index: 2;
}

.industries-grid {
  position: relative;
  z-index: 2;
}

.industry-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  padding: 30px 20px;
  transition: all 0.4s ease;
  text-align: center;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  background: linear-gradient(135deg, #ffffff 0%, #f3faff 100%);
}

.industry-card .icon i,
.industry-card .icon svg {
  font-size: 2.5rem;
  color: var(--ttipl-blue);
  transition: all 0.3s ease;
}

.industry-card:hover .icon i,
.industry-card:hover .icon svg {
  color: var(--ttipl-red);
}

.industry-card h5 {
  font-size: 1rem;
  margin-top: 15px;
  color: #1a1a1a;
  font-weight: 600;
  text-transform: capitalize;
}
.section-divider {
  height: 60px;
  background: linear-gradient(to bottom, #f1f5f9 0%, #edf2f7 100%);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.clients-section {
  background: linear-gradient(120deg, #ffffff 0%, #f3f6fa 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.clients-slider-wrapper {
  overflow: hidden;
  position: relative;
}

.clients-slider {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: slideClients 30s linear infinite;
}

.client-logo {
  flex: 0 0 auto;
  width: 160px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.client-logo img {
  max-width: 100%;
  max-height: 80px;
  filter: grayscale(100%) brightness(0.9);
  transition: all 0.3s ease;
}
.client-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.client-logo:hover img {
  filter: grayscale(0%) brightness(1);
}

@keyframes slideClients {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.clients-slider:hover {
  animation-play-state: paused;
}

@media (max-width: 991px) {
  .clients-slider {
    gap: 40px;
    animation-duration: 20s;
  }
  .client-logo {
    width: 130px;
    height: 80px;
  }
}
@media (max-width: 575px) {
  .clients-slider {
    gap: 30px;
  }
  .client-logo {
    width: 100px;
    height: 70px;
  }
}

.footer-section {
  background: linear-gradient(180deg, #e8edf2 0%, #dce3eb 100%);
  color: #1c1c1c;
  font-size: 0.95rem;
  position: relative;
  border-top: 2px solid rgba(0, 120, 215, 0.2);
}

.footer-top {
  padding: 70px 0 50px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(3px);
}

.footer-logo {
  width: 220px;
  filter: none;
}

.footer-about p {
  color: #333;
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  color: #003366;
  margin-bottom: 15px;
  position: relative;
}
.footer-title::after {
  content: "";
  display: block;
  width: 45px;
  height: 2px;
  background: var(--ttipl-blue);
  margin-top: 6px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-links a:hover {
  color: var(--ttipl-blue);
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  color: #333;
  line-height: 1.6;
}
.footer-contact i {
  color: var(--ttipl-blue);
  font-size: 1.1rem;
  margin-right: 10px;
  margin-top: 3px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #003366;
  background: rgba(0, 120, 215, 0.1);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.social-links a:hover {
  color: #fff;
  background: var(--ttipl-blue);
  transform: translateY(-3px);
}

.footer-bottom {
  background: #cfd8e3;
  padding: 18px 0;
  font-size: 0.9rem;
  color: #333;
  text-align: center;
}
.footer-bottom .dev-link {
  color: var(--ttipl-blue);
  text-decoration: none;
  font-weight: 500;
}
.footer-bottom .dev-link:hover {
  text-decoration: underline;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--ttipl-blue), var(--ttipl-red), var(--ttipl-blue));
  background-size: 200% 100%;
  animation: moveGradient 6s linear infinite;
}
@keyframes moveGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@media (max-width: 767px) {
  .footer-top {
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 20px;
    display: block;
  }

  .footer-title {
    text-align: center;
    display: inline-block;
    position: relative;
  }
  .footer-title::after {
    margin: 6px auto 0;
    left: 0;
    right: 0;
  }

  .footer-about {
    margin-bottom: 30px;
  }

  .footer-links {
    text-align: center;
    padding-left: 0 !important;
  }
  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-contact li {
    justify-content: center;
    text-align: left;
    max-width: 320px;
    margin: 8px auto;
  }

  .social-links {
    justify-content: center;
    margin-top: 15px;
  }

  .footer-bottom {
    text-align: center;
    flex-direction: column !important;
    padding: 20px 15px;
  }

  .footer-bottom p {
    margin: 5px 0;
  }
}

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 25px;
  z-index: 999;
  background: linear-gradient(90deg, var(--ttipl-blue), var(--ttipl-red));
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 18px rgba(0,0,0,0.2);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
#backToTop i {
  font-size: 1.4rem;
}
#backToTop.show {
  opacity: 1;
  visibility: visible;
  bottom: 40px;
}
#backToTop:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.quick-strip {
  display: none; 
}

@media (max-width: 767px) {
  .quick-strip {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 28px;
    background: linear-gradient(90deg, var(--ttipl-blue), var(--ttipl-red));
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #fff;
    z-index: 1000;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.25);
  }

  .strip-item {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
  }

  .strip-item i {
    font-size: 0.95rem;
    line-height: 1;
  }

  .strip-item:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    transform: translateY(-1px);
  }
}
@media (max-width: 767px) {
  footer,
  .footer-section,
  .footer-bottom {
    padding-bottom: 40px !important; 
  }
}

.enquiry-modal {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.enquiry-modal .modal-header {
  background: linear-gradient(90deg, var(--ttipl-blue), var(--ttipl-red));
  color: #fff;
  border-bottom: none;
}

.enquiry-modal .modal-title {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.enquiry-modal .btn-close {
  filter: invert(1);
  opacity: 0.8;
}
.enquiry-modal .btn-close:hover {
  opacity: 1;
}

.enquiry-modal .modal-body {
  background: #f9fbfd;
  padding: 25px 30px;
}

.enquiry-modal label {
  font-weight: 500;
  font-size: 0.9rem;
  color: #333;
}

.enquiry-modal .form-control,
.enquiry-modal .form-select {
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: none;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.enquiry-modal .form-control:focus,
.enquiry-modal .form-select:focus {
  border-color: var(--ttipl-blue);
  box-shadow: 0 0 0 0.2rem rgba(0,120,215,0.25);
}

.enquiry-modal .btn-ttipl {
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-hero {
  background: url('../img/about-banner.webp') center center / cover no-repeat;
  height: 70vh;
  position: relative;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,45,90,0.8) 0%, rgba(0,120,215,0.7) 100%);
  z-index: 1;
}

.value-box {
  background: #fff;
  padding: 25px 10px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}
.value-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.mission-vision-ttipl {
  background: radial-gradient(circle at center, #002d5a 0%, #001b33 100%);
  position: relative;
  color: #fff;
  text-align: center;
  padding: 100px 0;
}
.ttipl-bg-overlay {
  position: absolute;
  inset: 0;
  background: url("../img/industrial-pattern-light.webp") center/cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}
.mission-vision-ttipl .container {
  position: relative;
  z-index: 2;
}
.ttipl-subtitle {
  color: #d1e3ff;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.ttipl-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 40px 30px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  height: 100%;
}
.ttipl-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 120, 215, 0.3);
}

.icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ttipl-blue), var(--ttipl-red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 0 20px rgba(0,120,215,0.5);
  transition: all 0.3s ease;
}
.ttipl-card:hover .icon-box {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(228,30,38,0.6);
}

.animated-line-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--ttipl-blue), var(--ttipl-red), var(--ttipl-blue));
  background-size: 300% 100%;
  animation: slideGradient 6s linear infinite;
}
@keyframes slideGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@media (max-width: 767px) {
  .ttipl-card {
    padding: 30px 20px;
  }
  .icon-box {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}


.global-presence-cta {
  background: linear-gradient(120deg, #f8fafc 0%, #edf2f7 100%);
}

.inner-hero-section {
  position: relative;
  background: url("../images/products-hero.webp") center center / cover no-repeat;
  height: 50vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-hero-section .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.75), rgba(0, 45, 90, 0.6));
  z-index: 1;
}
.inner-hero-section .container {
  z-index: 2;
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.product-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img {
  transform: scale(1.05);
}
.product-content {
  padding: 20px;
}
.product-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ttipl-blue);
  margin-bottom: 10px;
}
.product-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  min-height: 70px;
}
.product-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.product-buttons .btn {
  border-radius: 30px;
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-industrial {
  height: 70vh;
  position: relative;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
  position: absolute;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,30,60,0.8), rgba(0,120,215,0.5));
  z-index: 1;
}
.hero-industrial .container {
  position: relative;
  z-index: 3;
}

.product-intro {
  background: linear-gradient(120deg, #f9fbfd 0%, #eef2f7 100%);
}
.intro-highlights div {
  margin-bottom: 8px;
  color: #333;
}
.glow-accent {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(0,120,215,0.25) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.product-tabs .nav-tabs {
  border-bottom: 2px solid #ddd;
}
.product-tabs .nav-link {
  color: #555;
  font-weight: 600;
  padding: 10px 25px;
  border: none;
  border-radius: 30px;
  margin: 0 5px;
}
.product-tabs .nav-link.active {
  background: var(--ttipl-blue);
  color: #fff;
}
.spec-box {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  transition: 0.3s;
}
.spec-box:hover {
  transform: translateY(-6px);
}
.adv-card {
  background: #f8fafc;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}
.adv-card i {
  font-size: 2rem;
  color: var(--ttipl-blue);
  margin-bottom: 10px;
}
.adv-card:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.product-showcase {
  background: #fff;
}
.product-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: 0.4s;
}
.product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover img {
  transform: scale(1.05);
}
.card-info {
  padding: 20px;
  text-align: left;
}
.card-info h5 {
  color: var(--ttipl-blue);
  font-weight: 700;
}
.card-info span {
  font-size: 0.9rem;
  color: #666;
}

.cta-industrial {
  background: linear-gradient(120deg, var(--ttipl-blue), var(--ttipl-red));
  color: #fff;
}

.category-table-ui th {
  background: var(--ttipl-blue);
  color: #fff;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.category-table-ui td {
  background: #fff;
  color: #333;
  font-weight: 500;
  font-size: 0.95rem;
}
.category-table-ui tr:nth-child(even) td {
  background: #f7f9fc;
}

.material-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  padding: 25px;
  transition: 0.3s;
}
.material-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.material-card table th {
  background: var(--ttipl-blue);
  color: #fff;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.material-card table td {
  font-size: 0.9rem;
  color: #333;
}

.production-flow {
  background: linear-gradient(120deg, #f8fafc 0%, #eaf1f8 100%);
}
.flow-image-wrapper {
  overflow-x: auto;
}
.flow-img {
  border-radius: 10px;
  transition: transform 0.4s ease;
}
.flow-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-hero {
  background: linear-gradient(120deg, var(--ttipl-blue), var(--ttipl-red));
  color: #fff;
  padding: 80px 0;
}
.contact-hero h1 {
  font-size: 2.5rem;
}

.presence-section {
  background: #f9fafc;
}
.branch-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.branch-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.branch-card h5 {
  font-size: 1.1rem;
}
.map-wrapper {
  border-radius: 10px;
  overflow: hidden;
  margin-top: 10px;
}
.map-wrapper iframe {
  width: 100%;
  height: 220px;
  border: 0;
}

.contact-form {
  max-width: 900px;
  margin: 0 auto;
}
.contact-form .form-control,
.contact-form .form-select {
  border-radius: 8px;
  border: 1px solid #dcdfe3;
  box-shadow: none;
  transition: border-color 0.3s ease;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--ttipl-blue);
  box-shadow: 0 0 5px rgba(0,120,215,0.2);
}
.contact-form button {
  font-weight: 600;
  font-size: 1rem;
}

@media (max-width: 767px) {
  .contact-hero h1 { font-size: 2rem; }
  .branch-card { text-align: center; }
  .branch-card p { font-size: 0.95rem; }
}

.approvals-page-hero {
  background: linear-gradient(120deg, var(--ttipl-blue), var(--ttipl-red));
  color: #fff;
}

.approvals-gallery-section {
  background: #f8fafc;
}

.approval-card {
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.approval-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.approval-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  pointer-events: none;
  user-select: none;
}

.approval-title {
  font-weight: 600;
  color: #222;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  margin-top: 10px;
  line-height: 1.3;
}

.copyright-note {
  font-size: 0.95rem;
  font-weight: 500;
  color: #444;
  padding: 12px 20px;
  border-radius: 30px;
  background: #e9eff6;
  display: inline-block;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}
.copyright-note i {
  color: var(--ttipl-blue);
  margin-right: 6px;
}

img, .approval-card {
  -webkit-user-drag: none;
  user-select: none;
}

@media (max-width: 767px) {
  .approval-card img {
    width: 100%;
    height: auto;
  }
  .approval-title {
    font-size: 0.85rem;
  }
}

.facilities-hero {
  background: linear-gradient(120deg, var(--ttipl-blue), var(--ttipl-red));
  color: #fff;
}

.facilities-intro p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}
.facilities-intro {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

.facilities-showcase {
  background: #f8fafc;
}
.facility-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
}
.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}
.facility-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.facility-card:hover img {
  transform: scale(1.05);
}
.facility-card h5 {
  padding: 14px 10px 16px;
  margin: 0;
  font-weight: 600;
  color: var(--ttipl-blue);
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  background: #fff;
}

.facility-card {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 0.8s ease forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991px) {
  .facility-card img {
    height: 180px;
  }
}
@media (max-width: 575px) {
  .facility-card h5 {
    font-size: 0.85rem;
  }
}
.facility-card { opacity: 0; transform: translateY(25px); transition: all 0.6s ease; }
.facility-card.visible { opacity: 1; transform: translateY(0); }

.blogs-hero {
  background: linear-gradient(120deg, var(--ttipl-blue), var(--ttipl-red));
  color: #fff;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}
.blog-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.blog-content {
  padding: 16px 18px;
  flex-grow: 1;
}
.blog-meta {
  font-size: 0.8rem;
  color: #777;
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}
.blog-meta i {
  color: var(--ttipl-blue);
  margin-right: 5px;
}
.blog-title {
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  margin: 10px 0;
  min-height: 40px;
}
.blog-excerpt {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
}
.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #eee;
}
.social-share a {
  color: var(--ttipl-blue);
  margin-right: 8px;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.social-share a:hover {
  color: var(--ttipl-red);
}
.blog-author {
  font-size: 0.8rem;
  color: #666;
}

#showMoreBtn {
  background: linear-gradient(90deg, var(--ttipl-blue), var(--ttipl-red));
  color: #fff;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}
#showMoreBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
  .blog-img img { height: 160px; }
}
@media (max-width: 575px) {
  .blog-meta { flex-direction: column; gap: 4px; }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}
.social-share a {
  color: var(--ttipl-blue);
  margin-right: 8px;
  font-size: 1.1rem;
  transition: transform 0.2s ease, color 0.3s ease;
}
.social-share a:hover {
  color: var(--ttipl-red);
  transform: translateY(-2px);
}

.clients-hero {
  background: linear-gradient(120deg, var(--ttipl-blue), var(--ttipl-red));
  color: #fff;
}

.clients-section {
  background: #f8fafc;
}

.client-logo-card {
  text-align: center;
  position: relative;
}

.client-logo-wrapper {
  background: #fff;
  border-radius: 12px;
  padding: 25px 15px;
  transition: all 0.4s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.client-logo-wrapper img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.9);
  transition: all 0.4s ease;
}
.client-logo-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}
.client-logo-wrapper:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

.client-logo-card {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.client-logo-card.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .client-logo-wrapper {
    height: 100px;
  }
}
@media (max-width: 575px) {
  .client-logo-wrapper {
    padding: 18px 10px;
  }
}
