/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Open Sans', sans-serif; font-size: 14px; color: #333; }
a { text-decoration: none; color: inherit; cursor: pointer; }
ul { list-style: none; }
img { max-width: 100%; }

/* ===== PAGE SYSTEM ===== */
.page { display: none; }
.page.active { display: block; }

/* ===== TOP BAR ===== */
.topbar { background: #0d2d4a; color: #aac4d8; font-size: 11px; padding: 6px 0; position: fixed; top: 0; left: 0; width: 100%; z-index: 1002; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.topbar .left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar .left span { display: flex; align-items: center; gap: 6px; }
.topbar .left i { color: #e8a020; }
.topbar .right a { background: #e8a020; color: #fff; padding: 4px 12px; border-radius: 2px; font-size: 11px; font-weight: 600; cursor: pointer; }
.topbar .right a:hover { background: #c8880f; }

/* ===== HEADER ===== */
header { background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.1); position: fixed; top: 33px; left: 0; width: 100%; z-index: 1001; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 40px; width: 100%; box-sizing: border-box; }
.logo { cursor: pointer; flex-shrink: 0; max-width: 300px; }
.logo-text { font-size: 22px; font-weight: 800; color: #010405; line-height: 1.2; }
.logo-text span { color: #000000; }
.logo-sub { font-size: 10px; color: #888; letter-spacing: 1px; text-transform: uppercase; }
.header-right { display: flex; align-items: center; gap: 20px; flex-shrink: 0; position: absolute; right: 40px; top: 50%; transform: translateY(-50%); }
.header-contact { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; font-size: 12px; color: #555; }
.header-contact strong { color: #e8a020; font-size: 13px; }
.header-email { display: flex; align-items: center; gap: 6px; background: #e8a020; color: #fff; padding: 8px 14px; border-radius: 2px; font-size: 12px; font-weight: 600; cursor: pointer; }
.header-email:hover { background: #c8880f; }

/* ===== NAVIGATION ===== */
nav { background: #1a5276; position: fixed; top: 128px; left: 0; width: 100%; z-index: 1000; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 15px; display: flex; align-items: center; position: relative; }
nav ul { display: flex; flex-wrap: wrap; }
nav ul > li { position: relative; }
nav ul > li > a { display: block; padding: 14px 16px; color: #fff; font-size: 12px; font-weight: 600; letter-spacing: 0.3px; text-transform: uppercase; transition: background 0.2s; cursor: pointer; }
nav ul > li > a:hover, nav ul > li.nav-active > a { background: #e8a020; }
.dropdown { display: none; position: absolute; top: 100%; left: 0; background: #1a5276; min-width: 200px; border-top: 3px solid #e8a020; z-index: 999; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
nav ul > li:hover .dropdown { display: block; }
.dropdown li a { display: block; padding: 10px 16px; color: #fff; font-size: 12px; border-bottom: 1px solid rgba(255,255,255,0.1); text-transform: none; font-weight: 400; cursor: pointer; }
.dropdown li a:hover { background: #e8a020; padding-left: 22px; }
.nav-quote { margin-left: auto; background: #e8a020; color: #fff; padding: 14px 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; cursor: pointer; white-space: nowrap; }
.nav-quote:hover { background: #c8880f; }

/* ===== BREADCRUMB ===== */
.breadcrumb { background: #f0f4f8; padding: 10px 0; border-bottom: 1px solid #dde; }
.breadcrumb .container { max-width: 1200px; margin: 0 auto; padding: 0 15px; font-size: 12px; color: #666; }
.breadcrumb a { color: #0e1214; cursor: pointer; }
.breadcrumb a:hover { color: #e8a020; }
.breadcrumb span { margin: 0 6px; color: #bbb; }

/* ===== PAGE HERO ===== */
.page-hero { background: linear-gradient(135deg, #010406, #0d2d4a); padding: 40px 0; text-align: center; color: #fff; }
.page-hero h1 { font-size: 30px; font-weight: 700; margin-bottom: 8px; }
.page-hero p { color: #aac4d8; font-size: 14px; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

/* ===== SECTION ===== */
section { padding: 50px 0; }
.section-title { text-align: center; margin-bottom: 35px; }
.section-title h2 { font-size: 26px; color: #171818; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; }
.section-title .line { width: 60px; height: 3px; background: #e8a020; margin: 0 auto 10px; }
.section-title p { color: #666; font-size: 14px; }

/* ===== BUTTONS ===== */
.btn-primary { display: inline-block; background: #e8a020; color: #fff; padding: 11px 26px; font-weight: 700; font-size: 13px; border-radius: 2px; transition: background 0.2s; text-transform: uppercase; cursor: pointer; border: none; }
.btn-primary:hover { background: #c8880f; }
.btn-secondary { display: inline-block; background: #1a5276; color: #fff; padding: 11px 26px; font-weight: 700; font-size: 13px; border-radius: 2px; transition: background 0.2s; text-transform: uppercase; cursor: pointer; border: none; }
.btn-secondary:hover { background: #e8a020; }
.btn-outline { display: inline-block; border: 2px solid #fff; color: #fff; padding: 9px 24px; font-weight: 600; font-size: 13px; border-radius: 2px; transition: all 0.2s; text-transform: uppercase; cursor: pointer; }
.btn-outline:hover { background: #fff; color: #1a5276; }

/* ===== HERO SLIDER ===== */
.slider {
  position: relative;
  overflow: hidden;
  height: 100vh;
  max-height: 580px;
  min-height: 420px;
  background: #0d2d4a;
}
.slides {
  display: flex;
  width: 300%;
  transition: transform 0.7s ease-in-out;
  height: 100%;
}
.slide {
  width: 33.333%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65) 40%, rgba(0,0,0,0.1));
}
.slide-1 { background: url('images/slider/slide1.jpg') center center / cover no-repeat; }
.slide-2 { background: url('images/slider/slide2.jpg') center center / cover no-repeat; }
.slide-3 { background: url('images/slider/slide3.jpg') center center / cover no-repeat; }

.slide-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 700px;
}
.slide-content h2 {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}
.slide-content h2 span { color: #e8a020; }
.slide-content p {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 25px;
  line-height: 1.6;
}
.slide-content .btns { display: flex; gap: 12px; flex-wrap: wrap; }

.slider-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s;
}
.dot.active { background: #e8a020; border-color: #fff; }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  padding: 15px 18px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
}
.slider-arrow:hover { background: #e8a020; }
.slider-prev { left: 0; }
.slider-next { right: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .slider { max-height: 480px; }
  .slide-content h2 { font-size: 30px; }
  .slide-content { padding: 0 50px; }
}
@media (max-width: 768px) {
  .slider { max-height: 380px; min-height: 320px; }
  .slide-content h2 { font-size: 24px; }
  .slide-content p { font-size: 14px; }
  .slide-content { padding: 0 30px; }
}
@media (max-width: 480px) {
  .slider { max-height: 300px; min-height: 260px; }
  .slide-content h2 { font-size: 20px; }
  .slide-content p { display: none; }
  .slide-content { padding: 0 20px; }
  .slider-arrow { padding: 10px 13px; font-size: 15px; }
}

/* ===== TICKER ===== */
.product-ticker { background: #1a5276; overflow: hidden; border-bottom: 3px solid #e8a020; }
.ticker-wrap { display: flex; align-items: stretch; }
.ticker-label { background: #e8a020; color: #fff; font-weight: 700; font-size: 11px; padding: 10px 18px; white-space: nowrap; text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; }
.ticker-content { overflow: hidden; flex: 1; padding: 10px 0; }
.ticker-inner { display: flex; white-space: nowrap; animation: ticker 35s linear infinite; }
.ticker-inner a { color: #fff; font-size: 12px; padding: 0 22px; border-right: 1px solid rgba(255,255,255,0.3); cursor: pointer; }
.ticker-inner a:hover { color: #e8a020; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== HOME ABOUT ===== */
.about-section { background: #f7f9fb; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-text h2 { font-size: 24px; color: #1a5276; font-weight: 700; margin-bottom: 15px; position: relative; padding-bottom: 12px; }
.about-text h2::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 3px; background: #e8a020; }
.about-text p { color: #555; line-height: 1.8; margin-bottom: 15px; }
.about-text .btn-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 5px; }
.about-box { background: #232324; color: #fff; padding: 40px; text-align: center; border-radius: 4px; position: relative; overflow: hidden; }
.about-box::before { content: ''; position: absolute; top: -20px; right: -20px; width: 100px; height: 100px; border-radius: 50%; background: rgba(232,160,32,0.15); }
.about-box i { font-size: 50px; color: #e8a020; margin-bottom: 15px; }
.about-box h3 { font-size: 20px; margin-bottom: 10px; }
.about-box p { color: #f2f5f7; font-size: 13px; line-height: 1.7; }

/* ===== PRODUCTS GRID ===== */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.product-card { border: 1px solid #e0e0e0; border-radius: 4px; overflow: hidden; transition: all 0.3s; text-align: left; background: #fff; }
.product-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.15); transform: translateY(-5px); }

/* Image area with overlay label at bottom */
.prod-img {
  width: 100%; height: 220px; background: #f0f4f8;
  display: flex; align-items: center; justify-content: center;
  font-size: 50px; color: rgba(26,82,118,0.2);
  overflow: hidden; position: relative;
}
.prod-img img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }

/* Dark blue banner label overlaid at bottom of image */
.prod-img-label {
  position: absolute;
  bottom: 0; left: 0;
  background: #1a5276;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  width: auto;
  max-width: 85%;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
  padding-right: 28px;
  letter-spacing: 0.3px;
}

/* Know More arrow link below card */
.card-body { padding: 12px 15px; }
.know-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1a5276;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  background: none;
  padding: 0;
  border-radius: 0;
}
.know-more::after { content: '→'; font-size: 14px; }
.know-more:hover { color: #eec641; background: none; }

/* ===== CLIENTS SECTION ===== */
.clients-section { background: #fff; padding: 48px 0 40px; }
.clients-section .section-header { padding: 0 40px; margin-bottom: 30px; }
.clients-section h3 { font-size: 22px; color: #1a1a1a; font-weight: 700; text-align: left; }
.clients-section h3::after { content: ''; display: block; width: 50px; height: 3px; background: #e8a020; margin-top: 8px; }

.clients-logos-wrap { overflow: hidden; width: 100%; position: relative; }
.clients-logos-wrap::before,
.clients-logos-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.clients-logos-wrap::before { left: 0; background: linear-gradient(to right, #fff 0%, transparent 100%); }
.clients-logos-wrap::after  { right: 0; background: linear-gradient(to left,  #fff 0%, transparent 100%); }

.clients-logos { display: flex; gap: 0; animation: scrollClients 28s linear infinite; width: max-content; }
.clients-logos:hover { animation-play-state: paused; }
@keyframes scrollClients {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-logo-box {
  background: #fff; border: 1px solid #e8e8e8;
  height: 110px; min-width: 180px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 16px 20px; margin: 0 8px; border-radius: 6px;
  transition: all 0.3s ease; overflow: hidden;
}
.client-logo-box:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.1); border-color: #ee6c1c; transform: translateY(-3px); }
.client-logo-box img { max-width: 140px; max-height: 75px; object-fit: contain; }
.client-name-fallback { display: none; font-size: 13px; font-weight: 700; color: #1a5276; text-align: center; }

/* ===== PRODUCT CAROUSEL ===== */
.prod-carousel-wrap {
  background: #f5f0a0;
  position: relative;
  padding: 20px 0;
  overflow: hidden;
  user-select: none;
}

.pc-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(11, 10, 10, 0.936); color: #fff; border: none;
  width: 44px; height: 44px; border-radius: 50%; font-size: 22px;
  cursor: pointer; z-index: 20; transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.pc-arrow:hover { background: #e8a020; }
.pc-prev { left: 16px; }
.pc-next { right: 16px; }

.prod-carousel-track-wrap {
  overflow: hidden;
  width: calc(100% - 100px);
  margin: 0 auto;
}
.prod-carousel { display: flex; transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94); will-change: transform; }

.pc-slide {
  flex: 0 0 25%;
  min-width: 0;
  position: relative;
  cursor: pointer;
  padding: 0 8px;
  display: flex;
  flex-direction: column;
}
.pc-slide-inner {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 6px;
  overflow: hidden;
  background: #f5f0a0;
  box-sizing: border-box;
}
.pc-slide img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
  transition: transform 0.4s ease;
  padding: 8px;
  box-sizing: border-box;
}
.pc-slide:hover img { transform: scale(1.06); }

.pc-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(12,28,48,0.82);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  color: #fff;
  text-align: center;
  padding: 16px;
  border-radius: 6px;
  box-sizing: border-box;
}
.pc-slide:hover .pc-overlay,
.pc-slide.active .pc-overlay { opacity: 1; }

.pc-overlay h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 12px; line-height: 1.35; }

.read-more-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: #eee9e0;
  text-transform: uppercase; letter-spacing: 1.2px;
  border: none; background: none; cursor: pointer; transition: gap 0.2s;
}
.read-more-btn:hover { gap: 10px; }
.read-more-btn::after { content: '→'; font-size: 15px; }

.pc-dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.pc-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,0,0,0.25); border: none; cursor: pointer; transition: background 0.3s, transform 0.3s; padding: 0; }
.pc-dot.active { background: #e8a020; transform: scale(1.35); }

@media (max-width: 1024px) {
  .pc-slide { flex: 0 0 33.333%; max-width: 33.333%; }
}

@media (max-width: 768px) {
  .pc-slide { flex: 0 0 50%; max-width: 50%; }
  .pc-slide-inner { height: 170px; }
  .pc-slide img { height: 170px; }
  .prod-carousel-wrap { padding: 20px 50px; }
  .client-logo-box { min-width: 150px; height: 95px; }
}

@media (max-width: 480px) {
  .pc-slide { flex: 0 0 100%; max-width: 100%; }
  .pc-slide-inner { height: 160px; }
  .pc-slide img { height: 160px; }
  .prod-carousel-wrap { padding: 20px 44px; }
  .client-logo-box { min-width: 130px; height: 85px; }
}

/* ===== MINI PRODUCTS ===== */
.more-products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.mini-product { border: 1px solid #e0e0e0; border-radius: 4px; overflow: hidden; transition: all 0.3s; }
.mini-product:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.12); transform: translateY(-3px); }
.mini-img { width: 100%; height: 180px; background: #fff; display: flex; align-items: center; justify-content: center; color: rgba(0,0,0,0.15); font-size: 40px; overflow: hidden; border-bottom: 1px solid #eee; }
.mini-img img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.mini-body { padding: 12px 15px; }
.mini-body h5 { font-size: 13px; color: #1a5276; font-weight: 700; margin-bottom: 8px; }
.read-more-link { font-size: 11px; color: #e8a020; font-weight: 700; text-transform: uppercase; display: flex; align-items: center; gap: 4px; cursor: pointer; }
.read-more-link:hover { color: #1a5276; }

/* ===== CTA ===== */
.cta-section { background: linear-gradient(135deg, #1a5276, #0d2d4a); padding: 50px 0; text-align: center; }
.cta-section h2 { font-size: 28px; color: #fff; font-weight: 700; margin-bottom: 8px; }
.cta-section .tagline { font-size: 20px; color: #e8a020; font-style: italic; margin-bottom: 20px; font-weight: 600; }

/* ===== ABOUT PAGE ===== */
.about-page-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.about-page-content h2 { font-size: 24px; color: #1a5276; font-weight: 700; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 3px solid #e8a020; }
.about-page-content p { color: #555; line-height: 1.9; margin-bottom: 15px; }
.about-page-content ul { margin: 10px 0 15px 0; }
.about-page-content ul li { padding: 5px 0 5px 18px; position: relative; color: #555; font-size: 13px; line-height: 1.7; }
.about-page-content ul li::before { content: '›'; position: absolute; left: 0; color: #e8a020; font-size: 16px; line-height: 1.4; }
.sidebar-box { background: #1a5276; color: #fff; padding: 25px; border-radius: 4px; margin-bottom: 20px; }
.sidebar-box h4 { font-size: 15px; font-weight: 700; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 2px solid #e8a020; }
.sidebar-box ul li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 13px; color: #aac4d8; cursor: pointer; }
.sidebar-box ul li:hover { color: #e8a020; padding-left: 5px; transition: 0.2s; }
.sidebar-box ul li:last-child { border: none; }
.sidebar-enquiry { background: #e8a020; color: #fff; padding: 25px; border-radius: 4px; text-align: center; }
.sidebar-enquiry h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.sidebar-enquiry p { font-size: 12px; margin-bottom: 15px; opacity: 0.9; }
.sidebar-enquiry button { background: #fff; color: #e8a020; border: none; padding: 10px 24px; font-weight: 700; font-size: 13px; border-radius: 2px; cursor: pointer; }
.sidebar-enquiry button:hover { background: #1a5276; color: #fff; }

/* ===== STATS ===== */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 30px 0; }
.stat-box { background: #f7f9fb; border: 1px solid #e0e0e0; padding: 25px; text-align: center; border-radius: 4px; }
.stat-box .num { font-size: 36px; font-weight: 800; color: #e8a020; }
.stat-box p { font-size: 12px; color: #666; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 5px; }

/* ===== QUALITY POLICY ===== */
.about-page-content .quality-img-wrap {
  text-align: center;
  width: 100%;
  display: block;
}

/* ===== QUALITY PAGE FULL WIDTH FIX ===== */
#page-quality .about-page-grid {
  display: block;
}
#page-quality .about-page-content {
  max-width: 100%;
  width: 100%;
}
#page-quality .quality-img-wrap {
  text-align: center;
  margin: 20px auto;
}
#page-quality .quality-img-wrap img {
  max-width: 600px;
  width: 100%;
  display: inline-block;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.quality-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.quality-item { background: #f7f9fb; border-left: 4px solid #e8a020; padding: 20px; border-radius: 0 4px 4px 0; }
.quality-item h4 { color: #1a5276; font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.quality-item p { color: #555; font-size: 13px; line-height: 1.7; }

/* ===== EVENTS ===== */
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.event-card { border: 1px solid #e0e0e0; border-radius: 4px; overflow: hidden; background: #fff; }
.event-img { height: 180px; background: linear-gradient(135deg, #1a5276, #2874a6); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.3); font-size: 50px; }
.event-body { padding: 18px; }
.event-date { font-size: 11px; color: #e8a020; font-weight: 700; text-transform: uppercase; margin-bottom: 6px; }
.event-body h4 { font-size: 14px; color: #1a5276; font-weight: 700; margin-bottom: 8px; }
.event-body p { font-size: 13px; color: #666; line-height: 1.6; }

/* ===== PRODUCTS PAGE ===== */
.products-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.prod-page-card { border: 1px solid #e0e0e0; border-radius: 4px; overflow: hidden; background: #fff; transition: all 0.3s; }
.prod-page-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.12); transform: translateY(-4px); }
.prod-page-img { height: 220px; background: #fff; display: flex; align-items: center; justify-content: center; color: rgba(0,0,0,0.15); font-size: 60px; overflow: hidden; border-bottom: 1px solid #eee; }
.prod-page-img img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.prod-page-body { padding: 18px; }
.prod-page-body h4 { font-size: 14px; color: #1a5276; font-weight: 700; margin-bottom: 8px; }
.prod-page-body p { font-size: 12px; color: #666; line-height: 1.6; margin-bottom: 12px; }

/* ===== APPLICATIONS PAGE ===== */
.app-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.app-card { background: #f7f9fb; border: 1px solid #e0e0e0; padding: 25px; border-radius: 4px; text-align: center; transition: all 0.3s; }
.app-card:hover { background: #1a5276; color: #fff; transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.app-card i { font-size: 40px; color: #e8a020; margin-bottom: 15px; }
.app-card h4 { font-size: 14px; font-weight: 700; color: #1a5276; margin-bottom: 8px; }
.app-card:hover h4 { color: #fff; }
.app-card p { font-size: 12px; color: #666; line-height: 1.6; }
.app-card:hover p { color: #aac4d8; }

/* ===== GALLERY ===== */
.gallery-filter { display: flex; gap: 10px; justify-content: center; margin-bottom: 30px; flex-wrap: wrap; }
.filter-btn { padding: 8px 20px; border: 2px solid #1a5276; color: #1a5276; background: #fff; border-radius: 2px; font-size: 12px; font-weight: 700; cursor: pointer; text-transform: uppercase; transition: all 0.2s; }
.filter-btn.active, .filter-btn:hover { background: #1a5276; color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-bottom: 40px; }
.gallery-item { height: 260px; background: #f0f4f8; border: 1px solid #e0e0e0; border-radius: 4px; overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  padding: 10px;
}
.gallery-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; z-index: 2; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 30px; color: #fff; }
.gallery-icon { font-size: 50px; color: rgba(26,82,118,0.2); display: flex; align-items: center; justify-content: center; height: 100%; position: relative; z-index: 1; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-box { background: #1a5276; color: #fff; padding: 30px; border-radius: 4px; }
.contact-info-box h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid #e8a020; }
.contact-info-item { display: flex; gap: 15px; margin-bottom: 20px; }
.contact-info-item i { font-size: 20px; color: #e8a020; margin-top: 3px; flex-shrink: 0; }
.contact-info-item div h5 { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.contact-info-item div p { font-size: 12px; color: #aac4d8; line-height: 1.7; }
.map-placeholder { background: #e8f0f7; height: 250px; display: flex; align-items: center; justify-content: center; border-radius: 4px; margin-top: 20px; border: 1px solid #ddd; }
.map-placeholder i { font-size: 50px; color: #1a5276; margin-right: 10px; }
.map-placeholder p { color: #1a5276; font-weight: 600; font-size: 14px; }

/* ===== ENQUIRY / FORM ===== */
.form-box { background: #fff; border: 1px solid #e0e0e0; padding: 35px; border-radius: 4px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.form-box h3 { font-size: 18px; color: #1a5276; font-weight: 700; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid #e8a020; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 0; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 12px; font-weight: 700; color: #444; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 10px 12px; border: 1px solid #ddd; border-radius: 2px;
  font-size: 13px; font-family: inherit; outline: none; transition: border 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #1a5276; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { margin-top: 20px; }
.form-submit button { background: #1a5276; color: #fff; padding: 12px 36px; font-weight: 700; font-size: 13px; text-transform: uppercase; border: none; border-radius: 2px; cursor: pointer; transition: background 0.2s; }
.form-submit button:hover { background: #e8a020; }
.success-msg { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; padding: 12px 20px; border-radius: 4px; margin-top: 15px; display: none; font-size: 13px; }

/* ===== LOCATIONS ===== */
.locations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.location-card { background: #f7f9fb; border: 1px solid #e0e0e0; padding: 20px; border-radius: 4px; text-align: center; transition: all 0.3s; }
.location-card:hover { background: #1a5276; color: #fff; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.location-card i { font-size: 28px; color: #e8a020; margin-bottom: 10px; }
.location-card h4 { font-size: 13px; font-weight: 700; color: #1a5276; margin-bottom: 5px; }
.location-card:hover h4 { color: #fff; }
.location-card p { font-size: 11px; color: #888; }
.location-card:hover p { color: #aac4d8; }

/* ===== DESIGN FEATURES ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.feature-card { background: #fff; border: 1px solid #e0e0e0; padding: 25px; border-radius: 4px; text-align: center; transition: all 0.3s; }
.feature-card:hover { border-color: #e8a020; box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.feature-card i { font-size: 38px; color: #1a5276; margin-bottom: 15px; }
.feature-card h4 { font-size: 14px; color: #1a5276; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 12px; color: #666; line-height: 1.7; }

/* ===== PRODUCT DETAIL PAGE ===== */
#page-product-detail .prod-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.prod-detail-img-box {
  background: #f7f9fb;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 20px;
}
.prod-detail-img-box img {
  max-width: 100%;
  max-height: 320px;
  object-fit: contain;
}
.prod-detail-img-box i {
  font-size: 100px;
  color: rgba(26,82,118,0.15);
}
.prod-detail-info h2 {
  font-size: 24px;
  color: #1a5276;
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 3px solid #e8a020;
}
.prod-detail-info p { color: #555; line-height: 1.9; margin-bottom: 15px; font-size: 14px; }
.prod-detail-info ul { margin: 10px 0 20px 0; }
.prod-detail-info ul li {
  padding: 6px 0 6px 18px;
  position: relative;
  color: #555;
  font-size: 13px;
  line-height: 1.7;
  border-bottom: 1px solid #f0f0f0;
}
.prod-detail-info ul li::before { content: '›'; position: absolute; left: 0; color: #e8a020; font-size: 16px; line-height: 1.4; }
.prod-spec-table { width: 100%; border-collapse: collapse; margin: 15px 0 20px; }
.prod-spec-table th { background: #1a5276; color: #fff; padding: 10px 14px; font-size: 13px; text-align: left; }
.prod-spec-table td { padding: 9px 14px; font-size: 13px; color: #555; border-bottom: 1px solid #eee; }
.prod-spec-table tr:nth-child(even) td { background: #f7f9fb; }
.prod-detail-btns { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }

@media (max-width: 768px) {
  #page-product-detail .prod-detail-grid { grid-template-columns: 1fr; }
}

/* ===== OUR CLIENTS PAGE (5 per row) ===== */
#page-clients .clients-logos { grid-template-columns: repeat(5, 1fr) !important; gap: 20px; }

/* ===== FOOTER ===== */
footer { background: #0d2d4a; color: #aac4d8; padding: 50px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 35px; }
.footer-col h4 { font-size: 13px; color: #fff; font-weight: 700; text-transform: uppercase; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid #e8a020; letter-spacing: 0.5px; }
.footer-logo-text { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 5px; }
.footer-logo-text span { color: #e8a020; }
.footer-col p { font-size: 12px; line-height: 1.8; color: #8aabbd; }
.footer-col p strong { color: #fff; display: block; margin-top: 12px; margin-bottom: 3px; }
.footer-col ul li { margin-bottom: 6px; }
.footer-col ul li a { color: #8aabbd; font-size: 12px; transition: color 0.2s; display: flex; align-items: center; gap: 6px; cursor: pointer; }
.footer-col ul li a::before { content: '›'; color: #e8a020; font-size: 16px; line-height: 1; }
.footer-col ul li a:hover { color: #e8a020; }
.social-links { display: flex; gap: 10px; margin-top: 15px; }
.social-links a { width: 32px; height: 32px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; transition: background 0.2s; cursor: pointer; }
.social-links a:hover { background: #e8a020; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 11px; color: #556a7a; }
.footer-bottom a { color: #e8a020; cursor: pointer; }
.footer-bottom a:hover { text-decoration: underline; }

/* ===== WHATSAPP ===== */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; z-index: 9999; }
.whatsapp-float a { background: #25d366; color: #fff; width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; box-shadow: 0 4px 15px rgba(0,0,0,0.3); transition: transform 0.2s; }
.whatsapp-float a:hover { transform: scale(1.1); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-grid, .more-products-grid, .products-page-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .about-page-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .clients-logos { grid-template-columns: repeat(4, 1fr) !important; }
  #page-clients .clients-logos { grid-template-columns: repeat(3, 1fr) !important; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  nav ul { display: none; }
  .slider { height: 320px; }
  .slide-content { padding: 0 30px; }
  .slide-content h2 { font-size: 24px; }
  .slide-content p { font-size: 13px; }
  .products-grid, .more-products-grid, .products-page-grid, .app-grid, .events-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .quality-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .clients-logos { grid-template-columns: repeat(3, 1fr) !important; }
  #page-clients .clients-logos { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .stats-row, .locations-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .slide-content h2 { font-size: 20px; }
  .clients-logos { grid-template-columns: repeat(2, 1fr) !important; }
}
