/* ==============================================================================
   EPP COMPOSITES - 1:1 REPLICA STYLESHEET (ADAPTED FOR ASK INNOCOMP)
   ============================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --epp-primary: #002b5c;
  --epp-dark: #001833;
  --epp-accent: #0072ce;
  --epp-accent-hover: #005bb5;
  --epp-text: #222222;
  --epp-muted: #666666;
  --epp-bg-light: #f5f7fa;
  --epp-border: #e0e6ed;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--epp-text);
  background-color: #ffffff;
  overflow-x: hidden;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #ffffff;
  border-bottom: 1px solid var(--epp-border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.logo img {
  height: 48px;
  width: auto;
}

.head-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.head-menu > li > a {
  font-size: 15px;
  font-weight: 600;
  color: var(--epp-primary);
  text-transform: capitalize;
  padding: 28px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.head-menu > li > a:hover {
  color: var(--epp-accent);
}

/* Mega Menu Dropdown */
.has-mega-menu {
  position: relative;
}

.sub-menu-corporate {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 240px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--epp-border);
  border-top: 3px solid var(--epp-accent);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.has-mega-menu:hover .sub-menu-corporate {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu-corporate ul {
  list-style: none;
}

.sub-menu-corporate ul li a {
  display: block;
  padding: 8px 24px;
  font-size: 14px;
  color: #333333;
  font-weight: 500;
}

.sub-menu-corporate ul li a:hover {
  background: var(--epp-bg-light);
  color: var(--epp-accent);
  padding-left: 28px;
}

/* ==========================================================================
   EPP SWIPER HERO SLIDER
   ========================================================================== */

.index-slider {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 550px;
  max-height: 780px;
  background: var(--epp-dark);
  overflow: hidden;
}

.index-swiper, .swiper-wrapper, .swiper-slide {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
}

.image-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

.image-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.image-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 24, 51, 0.9) 0%, rgba(0, 24, 51, 0.6) 50%, rgba(0, 24, 51, 0.2) 100%);
  z-index: 1;
}

.index-slider .caption {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 60px;
  margin-left: 5%;
  color: #ffffff;
}

.index-slider .caption span {
  display: block;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.index-slider .caption p {
  font-size: 26px;
  font-weight: 400;
  color: #e0e6ed;
  margin-bottom: 25px;
}

.button.border.light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 30px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.button.border.light:hover {
  background: var(--epp-accent);
  border-color: var(--epp-accent);
  color: #ffffff;
  transform: translateY(-2px);
}

.button.border.dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 34px;
  color: #ffffff;
  background: var(--epp-primary);
  border: 1px solid var(--epp-primary);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.button.border.dark:hover {
  background: var(--epp-accent);
  border-color: var(--epp-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 114, 206, 0.3);
}

/* Swiper Nav Arrows */
.swiper-button-next, .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
  background: var(--epp-accent);
}

/* ==========================================================================
   ABOUT US & NUMBERS SECTION (EPP CONTENT-INFO)
   ========================================================================== */

.content-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 40px;
  align-items: center;
}

.content-info .small-head {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--epp-accent);
  margin-bottom: 25px;
}

.content-info .numbers .items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 30px;
}

.content-info .numbers .item {
  display: flex;
  flex-direction: column;
}

.content-info .numbers .item .countnumber {
  font-size: 48px;
  font-weight: 800;
  color: var(--epp-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.content-info .numbers .item p {
  font-size: 14px;
  font-weight: 600;
  color: var(--epp-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.content-info .text p {
  font-size: 17px;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 35px;
}

/* ==========================================================================
   PRODUCT CATEGORY IMAGE GRID (EPP CARD-ITEMS-IMAGE)
   ========================================================================== */

.card-items-image {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px 100px;
}

.card-items-image .items.row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.card-items-image .item {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--epp-dark);
}

.card-items-image .item figure {
  width: 100%;
  height: 100%;
  margin: 0;
}

.card-items-image .item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.card-items-image .item:hover figure img {
  transform: scale(1.08);
}

.card-items-image .item figcaption {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 24, 51, 0.85) 60%, rgba(0, 24, 51, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 35px;
  color: #ffffff;
}

.card-items-image .item figcaption h4 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

/* ==========================================================================
   INDUSTRIES SERVED SECTION (EPP TABBED SECTION)
   ========================================================================== */

.industries-section {
  background: var(--epp-bg-light);
  padding: 90px 40px;
  border-top: 1px solid var(--epp-border);
}

.industries-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.industries-headline {
  font-size: 34px;
  font-weight: 800;
  color: var(--epp-primary);
  margin-bottom: 40px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.industry-card-box {
  background: #ffffff;
  border-radius: 6px;
  padding: 30px 24px;
  border: 1px solid var(--epp-border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.industry-card-box:hover {
  transform: translateY(-5px);
  border-color: var(--epp-accent);
  box-shadow: 0 10px 25px rgba(0, 43, 92, 0.08);
}

.industry-card-box i {
  font-size: 28px;
  color: var(--epp-accent);
}

.industry-card-box h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--epp-primary);
}

.industry-card-box p {
  font-size: 13.5px;
  color: var(--epp-muted);
  line-height: 1.6;
}

/* ==========================================================================
   EPP FLOATING ACTION BUTTONS (RIGHT SIDE)
   ========================================================================== */

.floating-btn-block {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 9999;
}

.btn-floating {
  display: flex;
  align-items: center;
  background: var(--epp-primary);
  color: #ffffff;
  padding: 12px 18px;
  border: none;
  cursor: pointer;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  gap: 10px;
  transform: translateX(calc(100% - 46px));
}

.btn-floating:hover {
  transform: translateX(0);
  background: var(--epp-accent);
}

.btn-floating.phone {
  background: #002b5c;
}
.btn-floating.whatsapp {
  background: #25d366;
}
.btn-floating.whatsapp:hover {
  background: #1eb855;
}
.btn-floating.download-cata {
  background: #e65100;
}
.btn-floating.download-cata:hover {
  background: #f57c00;
}

/* ==========================================================================
   EPP CORPORATE FOOTER
   ========================================================================== */

footer.epp-footer {
  background-color: var(--epp-dark);
  color: #a0aec0;
  padding: 80px 40px 30px;
  border-top: 4px solid var(--epp-accent);
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-grid h4 {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 22px;
}

.footer-grid ul {
  list-style: none;
}

.footer-grid ul li {
  margin-bottom: 12px;
}

.footer-grid ul li a {
  color: #a0aec0;
  font-size: 14px;
}

.footer-grid ul li a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 1024px) {
  .card-items-image .items.row, .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .content-info, .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .index-slider .caption span {
    font-size: 32px;
  }
  .index-slider .caption p {
    font-size: 18px;
  }
  .head-menu {
    display: none;
  }
  .card-items-image .items.row, .industries-grid {
    grid-template-columns: 1fr;
  }
  .floating-btn-block {
    display: none;
  }
}
