/* HOME PAGE START FROM HERE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  /* overflow-x: hidden; */
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  background: #fff;
  color: #2d3e42;
}
.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}
:root {
  --brand-color: #2d3690;
  --brand-dark: #1e2668;
  --brand-light: #e8eaff;
  --secondary-color: #004b8a;
  --light-bg: #f8f9fc;
  --dark-text: #1a2c2e;
  --ep-brand: #0d98ba;
  --ep-light: #e0f7fa;
  --ep-dark: #0f172a;
}

.section__title,
.section-title {
  font-size: 27px;
  font-weight: 600;
  color: #1a2c2e;
  margin-bottom: 40px;
  /* text-align: center; */
  letter-spacing: -0.3px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  transition: 0.25s ease;
}

/* Topbar */

.topbar {
  background: #fff;
  border-bottom: 1px solid #eef2f5;
  padding: 7px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  row-gap: 20px;
  flex-wrap: wrap;
}

.logo {
  width: 120px;
  height: 61px;
  object-fit: cover;
}
.mobile_menu_logo {
  display: none;
}

.mobile_menu_logo_area img {
  background: #fff;
  width: 100px;
  height: 55px;
  object-fit: cover;
  position: absolute;
  top: 10px;
}
.close_icon {
  width: 30px;
  height: 30px;
  background: #fff;
}
.search_icon {
  width: 25px;
  height: 25px;
}
.menu_close_icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.buy-btn a {
  background: var(--brand-color);
  color: white;
  padding: 8px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 15px;
  transition: 0.2s;
  display: inline-block;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.buy-btn a:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}

/* Main Navigation */
.menuHeader {
  background: var(--brand-color);
  border-bottom: #fff 1px solid;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: white;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  padding: 6px 0;
  letter-spacing: 0.5px;
}

.dropdown_icon_style {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Chevron icon transition */
.dropdown_icon_style i {
  transition: transform 0.3s ease;
}

.dropdown.open .dropdown_icon_style i {
  transform: rotate(180deg);
}

/* Dropdown menu with smooth transition */
.dropdown-menu {
  position: absolute;
  top: 38px;
  left: 0;
  background: white;
  min-width: 260px;
  border-radius: 12px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 0.28s cubic-bezier(0.2, 0.9, 0.4, 1.1),
    visibility 0.28s,
    transform 0.28s ease;
  z-index: 100;
  padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  color: #1f2f33;
  padding: 10px 22px;
  display: block;
  font-weight: 400;
  text-transform: none;
}

.dropdown-menu a:hover {
  background: var(--brand-light);
  color: var(--brand-color);
  padding-left: 28px;
}

.search-btn {
  background: rgba(255, 255, 255, 0.15);

  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: 0.2s;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.mobile-toggle {
  display: none;
  font-size: 24px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}

/* Search Overlay - Right slide */
.search-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.92); */
  /* background: rgba(0, 0, 0, 0.05); */
  backdrop-filter: blur(15px);
  z-index: 2000;
  display: none;
  justify-content: flex-end;
  align-items: flex-start;
}

.search-container {
  width: 100%;
  max-width: 520px;
  height: 100%;
  background: #ffffff;
  box-shadow: -8px 0 35px rgba(0, 0, 0, 0.2);
  padding: 40px 30px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  position: relative;
  overflow-y: auto;
}

.search-overlay.active {
  display: flex;
}

.search-overlay.active .search-container {
  transform: translateX(0);
}

.search-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #f0f2f5;
  border: none;
  font-size: 20px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a2c2e;
}

.search-close:hover {
  background: #e0e4e8;
  transform: rotate(90deg);
}

.search-container input {
  width: 100%;
  padding: 18px 22px;
  font-size: 20px;
  font-weight: 500;
  border: 2px solid #e2e8f0;
  border-radius: 60px;
  outline: none;
  margin-top: 60px;
}

.search-container input:focus {
  border-color: var(--brand-color);
}

.search-hint {
  margin-top: 20px;
  color: #6b7a7e;
  font-size: 14px;
  text-align: center;
}

/* Mobile Menu Overlay - with backdrop blur effect */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 998;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.close-menu-btn {
  display: none;
  position: absolute;
  top: 20px;
  right: 25px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  z-index: 1001;
}

/* Product categories: left side, icons right side */
.products-grid-layout {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
}

.product-categories {
  width: 280px;
  background: white;
  border-radius: 28px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  height: fit-content;
}

.product-categories ul {
  list-style: none;
}

.product-categories li {
  padding: 14px 18px;
  cursor: pointer;
  font-weight: 500;
  border-bottom: 1px solid #eef2f5;
  transition: 0.2s;
  border-radius: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5px;
  font-size: 15px;
}

.product-categories li i {
  opacity: 0;
  transition: 0.2s;
  color: var(--brand-color);
}

.product-categories li.active i,
.product-categories li:hover i {
  opacity: 1;
}

.product-categories li.active,
.product-categories li:hover {
  color: var(--brand-color);
  background: var(--brand-light);
  transform: translateX(6px);
  font-weight: 600;
}

.category-slider {
  flex: 1;
  overflow: hidden;
}

/* Banner Swiper - each slide with unique text overlay */
.banner-container {
  position: relative;
}

.banner-swiper {
  width: 100%;
  overflow: hidden;
}

.banner-slide {
  position: relative;
}

.banner-img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

/* Individual banner overlay - positioned center */
.banner-text-overlay {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 28px 20px;
  /* border-radius: 80px; */
  /* border-top-left-radius: 50px;
  border-bottom-right-radius: 50px; */
  color: white;
  z-index: 10;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: fadeInScale 3s ease-out;
  /* background: var(--brand-color); */
  color: var(--brand-color);
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.banner-text-overlay h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.banner-text-overlay p {
  font-size: 1.1rem;
  opacity: 0.95;
  font-weight: 500;
}

/* Other styles */
.feature-card,
.product-card,
.vertical-item,
.global-stat {
  transition:
    transform 0.25s ease,
    box-shadow 0.3s;
  cursor: pointer;
}
.vertical-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.business-vertical-icon {
  width: 50px;
  margin-bottom: 15px;
}
.feature-card {
  background: white;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card i {
  font-size: 52px;
  color: var(--brand-color);
  margin-bottom: 20px;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--brand-color);
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

.feature-card:hover::before {
  transform: translateY(0);
}

.feature-card:hover {
  color: #fff;
}
.feature-card:hover i {
  color: #fff;
}

.innovation-section,
.global-presence {
  padding: 70px 0;
  background: #fafcff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.global-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 45px;
  justify-content: center;
}

.global-stat {
  text-align: center;
  min-width: 180px;
  background: white;
  padding: 25px 20px;
  border-radius: 36px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid #eee;
}

.global-stat h3 {
  font-size: 48px;
  color: var(--brand-color);
  font-weight: 800 !important;
}

.about-section {
  padding: 70px 0;
}

.about-grid {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
}

.about-video {
  flex: 1;
}

.about-video video {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stats {
  display: flex;
  gap: 35px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.stat h3 {
  font-size: 38px;
  color: var(--brand-color);
  font-weight: 800;
}

.blue-btn {
  background: var(--brand-color);
  color: white;
  padding: 10px 28px;
  border-radius: 44px;
  display: inline-block;
  margin-right: 15px;
  margin-top: 12px;
  font-weight: 500;
  transition: 0.2s;
}

.blue-btn:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}

.bornIn {
  background: var(--brand-light);
  padding: 60px 0;
  text-align: center;
}

.products-wrap {
  background: #f8f9fc;
  padding: 70px 0;
}

.product-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.product-card img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  background: #fafcff;
  padding: 20px;
}

.product-info {
  padding: 18px 12px 22px;
}
.business_verticals-section {
  padding: 40px 0;
}
.vertical-item {
  background: var(--light-bg);
  padding: 32px 20px;
  border-radius: 32px;
  text-align: center;
  transition: 0.25s;
  border: 1px solid #eee8e8;
  cursor: pointer;
}

.vertical-item i {
  color: var(--brand-color) !important;
}

.faq-section {
  padding: 60px 0 80px;
  background: #fefefe;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 18px;
}

.faq-question {
  font-weight: 600;
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
}

.faq-answer {
  display: none;
  padding-bottom: 20px;
  color: #4b5e63;
}

/* Enhanced Footer Design */
.footer {
  background: #0a1a2a;
  color: #b0c4de;
  padding: 60px 0 30px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--brand-color),
    #4a6fa5,
    var(--brand-color)
  );
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 45px;
  margin-bottom: 45px;
}

.footer-col h4 {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 22px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--brand-color);
  border-radius: 2px;
}

.footer-col p {
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 14px;
}

.footer-col a {
  color: #b0c4de;
  display: block;
  margin: 12px 0;
  font-size: 14px;
  transition: 0.2s;
}

.footer-col a:hover {
  color: white;
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 18px;
  margin-top: 20px;
}

.social-links a {
  background: rgba(255, 255, 255, 0.1);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  margin: 0;
}

.social-links a:hover {
  background: var(--brand-color);
  transform: translateY(-3px);
}

.social-links i {
  font-size: 18px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 10px;
  font-size: 13px;
}

.swiper-button-next,
.swiper-button-prev {
  color: white;
  background: rgba(0, 0, 0, 0.4);
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
}

.swiper-pagination-bullet-active {
  background: var(--brand-color) !important;
}
/* HOME PAGE ENDS FROM HERE */

/* ABOUT PAGE START FROM HERE */
/* ================= ROOT ================= */
.uxp-about {
  --uxp-main: #2d3690;
  --uxp-grad: linear-gradient(135deg, #2d3690, #6a74ff);
  --uxp-light: #f4f7ff;
}

/* ================= CONTAINER ================= */
.uxp-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ================= SECTION ================= */
.uxp-section {
  padding: 50px 0;
}
.uxp-light {
  background: var(--uxp-light);
}

/* ================= HERO ================= */
.uxp-hero {
  /* background: var(--uxp-grad); */
  /* background: linear-gradient(270deg, #0b1028, #2d3690, #1b2455); */
  background-image: url(../images/banner_img/bg.png);
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 160px 20px;
  position: relative;
  overflow: hidden;
}

/* glowing blur */
.uxp-hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -200px;
  right: -200px;
  filter: blur(80px);
  animation: uxpFloat 10s ease-in-out infinite alternate;
}

/* hero text */
.uxp-hero h5,
.uxp-hero h1,
.uxp-hero p,
.uxp-hero .uxp-hero-btns {
  opacity: 0;
  transform: translateY(30px);
  animation: uxpFadeUp 1s ease forwards;
}

.uxp-hero h5 {
  animation-delay: 0.2s;
}
.uxp-hero h1 {
  animation-delay: 0.4s;
}
.uxp-hero p {
  animation-delay: 0.6s;
}
.uxp-hero .uxp-hero-btns {
  animation-delay: 0.8s;
}

@keyframes uxpFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes uxpFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-40px, 40px) scale(1.1);
  }
}

.uxp-hero h1 {
  font-size: 64px;
  line-height: 1.2;
}

.uxp-hero p {
  max-width: 600px;
  margin: 20px auto;
  opacity: 0.9;
}

/* ================= BUTTON ================= */
.uxp-btn-primary {
  background: #fff;
  color: var(--uxp-main);
  border: none;
  padding: 14px 35px;
  border-radius: 40px;
  margin: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.uxp-btn-outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 14px 35px;
  border-radius: 40px;
  margin: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.uxp-btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
}

.uxp-btn-outline:hover {
  background: #fff;
  color: var(--uxp-main);
  transform: translateY(-3px);
}

/* ================= SPLIT ================= */
.uxp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ================= STATS ================= */
.uxp-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.uxp-stat-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  cursor: pointer;
}

.uxp-stat-card:hover {
  transform: translateY(-10px);
}

.uxp-stat-card h3 {
  color: var(--uxp-main);
  font-size: 30px;
}

/* ================= GRID ================= */
.uxp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.uxp-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}
.visssion-mission-icon {
  width: 60px;
  margin-bottom: 10px;
}
.uxp-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* ================= PILLS ================= */
.uxp-pill-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.uxp-pill {
  padding: 12px 25px;
  border-radius: 50px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.uxp-pill:hover {
  background: var(--uxp-main);
  color: #fff;
}

/* ================= PROCESS ================= */
.uxp-process {
  /* display: flex; */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.uxp-step {
  flex: 1;
  min-width: 180px;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}
.uxp-step:hover {
  transform: translateY(-10px);
}
.uxp-step span {
  display: block;
  width: 45px;
  height: 45px;
  margin: auto;
  margin-bottom: 10px;
  background: var(--uxp-main);
  color: #fff;
  border-radius: 50%;
  line-height: 45px;
}

/* ================= CTA ================= */
.uxp-cta {
  background: var(--uxp-grad);
  background-image: url(../images/banner_img/bg.png);
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.uxp-center {
  text-align: center;
}

/* QUALITY SECTION - refined card grid */
.about-details {
  padding: 0px 20px;
}

.epx6-quality {
  background: #ffffff;
  border-radius: 36px;
  padding: 32px 24px;
  box-shadow: 0 18px 36px -12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(45, 54, 144, 0.12);
  transition: 0.2s;
}

.epx6-quality h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a236b;
  margin-bottom: 28px;
  letter-spacing: -0.3px;
  position: relative;
  display: inline-block;
}

.epx6-quality h3:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #2d3690;
  border-radius: 3px;
  margin-top: 8px;
}

.epx6-qgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
}

.epx6-qcard {
  background: #fafcff;
  border-radius: 28px;
  padding: 22px 12px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid #eef2fc;
  backdrop-filter: blur(2px);
  cursor: pointer;
}

.epx6-qcard span {
  display: inline-flex;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #eef2ff, #ffffff);
  border-radius: 40px;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 18px;
  box-shadow: 0 10px 18px -6px rgba(45, 54, 144, 0.2);
  transition: 0.2s;
  color: #2d3690;
}

.epx6-qcard p {
  font-weight: 600;
  font-size: 0.9rem;
  color: #1f2b4e;
}

.epx6-qcard:hover {
  transform: translateY(-8px);
  border-color: #2d3690;
  background: #ffffff;
  box-shadow: 0 22px 30px -14px rgba(45, 54, 144, 0.3);
}

.epx6-qcard:hover span {
  background: #2d3690;
  color: white;
  transform: scale(1.05);
}

.about-details p {
  font-size: 16px;
  /* line-height: 1.8; */
  color: #333;
  margin-bottom: 20px;
}

.about_title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
  margin-top: 40px;
}

.about_title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #2d3690;
  position: relative;
  display: block;

  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about_title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin: 8px auto 0;
  background: linear-gradient(90deg, #2d3690, #00c6ff);
  border-radius: 5px;
  animation: line 1s ease forwards;
}

@keyframes line {
  from {
    width: 0;
  }

  to {
    width: 80px;
  }
}

/* ABOUT PAGE ENDS FROM HERE */

/* CAREER PAGE STARTS FROM HERE */
/* ================= ROOT (SCOPED ONLY) ================= */
.ep-career {
  --ep-brand: #2d3690;
  --ep-light: #0d98ba;
  background: #f6fbff;
  color: #111;
}

/* ================= HERO ================= */
.ep-hero {
  height: 40vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: linear-gradient(270deg, #0b1028, #2d3690, #1b2455); */
  background-image: url(../images/banner_img/bg.png);
  background-size: cover;
}

/* floating bg text */
.ep-bg-text {
  position: absolute;
  font-size: clamp(40px, 10vw, 150px);
  font-weight: 900;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.18);
  animation: ep-float 6s ease-in-out infinite;
  user-select: none;
  text-align: center;
}

@keyframes ep-float {
  0% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(-20px);
  }
}

/* OVERLAY (NO BACKGROUND AS YOU SAID) */
.ep-overlay {
  z-index: 2;
  text-align: center;
  padding: 10px 15px;
  background: transparent; /* IMPORTANT */
}

.ep-overlay h2 {
  font-size: clamp(24px, 6vw, 48px);
  color: #fff;
  letter-spacing: 2px;
}

.ep-overlay p {
  margin-top: 8px;
  font-size: clamp(14px, 2.5vw, 16px);
  color: #fff;
  opacity: 0.9;
}

/* ================= WRAPPER (NO CONTAINER CONFLICT) ================= */
.ep-wrap {
  width: 92%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 0;
}

/* ================= BLOCK ================= */
.ep-block {
  margin: 50px 0;
  /* text-align: center; */
}
.career_desc {
  text-align: center;
}
.ep-block h3 {
  font-size: clamp(18px, 3vw, 26px);
  text-align: center;
  margin-bottom: 12px;
}

.ep-block p {
  line-height: 1.8;
  font-size: clamp(14px, 2.2vw, 16px);
}

/* ================= EMAIL ================= */
.ep-email {
  color: var(--ep-brand);
  font-weight: 700;
}

/* ================= TABLE ================= */
.ep-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.ep-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.ep-table th {
  background: var(--ep-brand);
  color: #fff;
  padding: 12px;
  text-align: left;
}

.ep-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
}

/* ================= BUTTON ================= */
.ep-btn {
  margin-top: 20px;
  padding: 12px 28px;
  background: var(--ep-brand);
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.ep-btn:hover {
  opacity: 0.85;
}

/* ================= GALLERY ================= */
.ep-gallery {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); */
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 15px;
}

.ep-gallery img {
  width: 100%;
  border-radius: 10px;
  transition: 0.3s;
  display: block;
}

.ep-gallery img:hover {
  transform: scale(1.05);
}

/* CAREER PAGE ENDS FROM HERE */

/* PVC PAGE START FROM HERE */
.xpc-page {
  --main: #2d3690;

  background: #f4f6ff;
}

/* container */
.xpc-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HERO */
.xpc-hero {
  padding: 150px 0;
  /* background: linear-gradient(270deg, #0b1028, #2d3690, #1b2455); */
  background-image: url(../images/banner_img/bg.png);
  background-size: cover;
  /* background-size: 400% 400%; */
  /* animation: gradientMove 12s ease infinite; */
  color: #fff;
  position: relative;
  overflow: hidden;
}

@keyframes gradientMove {
  50% {
    background-position: 100% 50%;
  }
}

/* floating particles */
.xpc-bg-anim::before,
.xpc-bg-anim::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: float 10s infinite ease-in-out;
}

.xpc-bg-anim::before {
  background: #5c6cff;
  top: -100px;
  left: -100px;
}

.xpc-bg-anim::after {
  background: #00d4ff;
  bottom: -120px;
  right: -120px;
  animation-delay: 3s;
}

@keyframes float {
  50% {
    transform: translateY(50px) translateX(30px);
  }
}

.xpc-hero h1 {
  font-size: 60px;
  margin: 15px 0;
}

/* layout */
.xpc-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  margin-top: 60px;
  padding: 20px;
}
.xpc-acc-item span {
  font-size: 14px;
}
.xpc-acc-body a {
  font-size: 13px;
}
/* SIDEBAR */
.xpc-sidebar {
  background: #fff;
  border-radius: 18px;
  padding: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.xpc-acc-header {
  display: flex;
  justify-content: space-between;
  padding: 14px;
  cursor: pointer;
  font-weight: 600;
  border-radius: 10px;
  transition: 0.3s;
  border: 1px solid #f0e9e9;
  margin: 5px 0;
}

.xpc-acc-header:hover {
  background: #f1f3ff;
}

.xpc-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  display: flex;
  flex-direction: column;
}

.xpc-acc-body a {
  padding: 10px 15px;
  text-decoration: none;
  color: #444;
  transition: 0.3s;
}

.xpc-acc-body a:hover {
  color: var(--main);
  transform: translateX(5px);
}

.xpc-acc-item.active .xpc-acc-body {
  max-height: 400px;
}

/* GRID */
.xpc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.xpc-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.xpc-card a {
  color: inherit;
}
.xpc-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.5s;
}

.xpc-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.xpc-card:hover img {
  transform: scale(1.1);
}

.xpc-card h3 {
  padding: 15px;
}

.xpc-card p {
  padding: 0 15px 20px;
  opacity: 0.7;
}

/* PVC PAGE ENDS FROM HERE */

/* CONTACT PAGE START FROM HERE */

/* ===== ROOT ===== */
.ep-contact-page {
  padding: 60px 0;
  background: linear-gradient(135deg, #e0f7fa, #ffffff);
  position: relative;
  overflow: hidden;
}

/* soft background glow */
.ep-contact-page::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(13, 152, 186, 0.2);
  filter: blur(120px);
  top: -100px;
  left: -100px;
}

/* ===== CONTAINER ===== */
.ep-contact-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 1;
}

/* ===== HEADER ===== */
.ep-contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.ep-contact-header h2 {
  font-size: 42px;
  color: #0f172a;
  margin-bottom: 10px;
}

.ep-contact-header p {
  color: #64748b;
  font-size: 16px;
}

/* ===== GRID ===== */
.ep-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ===== CARD (PREMIUM HOVER) ===== */
.ep-contact-card {
  background: #fff;
  padding: 40px 20px;
  border-radius: 18px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  cursor: pointer;
}

/* gradient border */
.ep-contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, #0d98ba, #0077b6);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.4s;
}

/* shine effect */
.ep-contact-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.7),
    transparent
  );
  transition: 0.7s;
}

/* hover main */
.ep-contact-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 25px 70px rgba(13, 152, 186, 0.25);
}

/* activate border */
.ep-contact-card:hover::before {
  opacity: 1;
}

/* shine move */
.ep-contact-card:hover::after {
  left: 120%;
}

/* ===== ICON ===== */
.ep-icon {
  width: 70px;
  height: 70px;
  margin: auto;
  /* background: linear-gradient(135deg, #0d98ba, #0077b6); */
  background: var(--brand-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  margin-bottom: 15px;
  transition: 0.4s;
}

/* icon hover */
.ep-contact-card:hover .ep-icon {
  transform: scale(1.15) rotate(6deg);
  box-shadow: 0 10px 25px rgba(13, 152, 186, 0.4);
}

/* ===== TEXT ===== */
.ep-contact-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #0f172a;
  transition: 0.3s;
}

.ep-contact-card p {
  font-size: 15px;
  color: #64748b;
  transition: 0.3s;
}

.ep-contact-card span {
  font-size: 13px;
  color: #94a3b8;
}

/* text hover */
.ep-contact-card:hover h3 {
  color: #0077b6;
}

.ep-contact-card:hover p {
  color: #0f172a;
}

/* ===== EXTRA ===== */
.ep-contact-extra {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ep-extra-box {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  cursor: pointer;
}
.ep-extra-box h3 {
  margin-bottom: 10px;
}
.ep-extra-box:hover {
  transform: translateY(-6px);
}

/* ===== BOTTOM ===== */
.ep-contact-bottom {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 25px;
}

/* ===== FORM ===== */
.ep-form-box {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.ep-form-box h3 {
  margin-bottom: 15px;
}

.ep-input-group {
  display: flex;
  gap: 10px;
}

.ep-form-box input,
.ep-form-box textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: 0.3s;
}

.ep-form-box input:focus,
.ep-form-box textarea:focus {
  border-color: #0d98ba;
  outline: none;
  box-shadow: 0 0 0 3px rgba(13, 152, 186, 0.15);
}

.ep-form-box textarea {
  height: 120px;
}

.ep-form-box button {
  width: 100%;
  padding: 14px;
  border: none;
  /* background: linear-gradient(135deg, #0d98ba, #0077b6); */
  background: var(--brand-color);
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.ep-form-box button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ===== CTA ===== */
.ep-cta-box {
  /* background: linear-gradient(135deg, #0d98ba, #0077b6); */
  background: var(--brand-color);
  color: #fff;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
}

.ep-call-btn {
  display: inline-block;
  margin-top: 15px;
  background: #fff;
  color: #0077b6;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.ep-call-btn:hover {
  background: #e0f7fa;
  transform: translateY(-3px);
}

/* ===== MAP ===== */
.map-section iframe {
  width: 100%;
  border: none;
  border-radius: 20px;
  margin-top: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.map-section {
  padding: 0 15px;
}

/* CONTACT PAGE ENDS FROM HERE */

/* BOARD OF DIRECTOR PAGE START FROM HERE */

.bdp-section {
  padding: 40px 20px;
  background: #f5f6fa;
}

/* TITLE */
.bdp-title {
  font-size: 40px;
  margin-bottom: 40px;
  text-align: center;
  color: #333;
}

/* =========================
   MAIN LAYOUT
========================= */
.bdp-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

/* =========================
   LEFT GRID
========================= */
.bdp-left {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-items: center;
}

/* =========================
   🔥 Managing Director CENTER
========================= */

/* First item (Managing Director) full width center */
.bdp-left .bdp-person:nth-child(1) {
  grid-column: 1 / -1;
  justify-self: center;
}

/* =========================
   PERSON CARD
========================= */
.bdp-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: 0.3s ease;
  padding: 10px;
  border-radius: 10px;
}

.bdp-person:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.bdp-person img {
  width: 160px;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.bdp-person:hover img {
  transform: scale(1.03);
}

/* NAME */
.bdp-person h4 {
  margin-top: 10px;
  font-size: 16px;
  color: #333;
}

/* ROLE */
.bdp-person span {
  color: #666;
  font-size: 14px;
}

.chairman_profile_author {
  font-size: 23.5px;
  text-transform: uppercase;
  font-weight: normal;
  border-bottom: 2px solid #ddd;
  margin-top: 10px;
  display: inline-block !important;
}

/* =========================
   RIGHT MENU
========================= */
.bdp-card-menu {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 20px;
}

.bdp-card-menu a {
  display: block;
  padding: 12px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #eee;
  transition: 0.3s ease;
  font-size: 14px;
}

.bdp-card-menu a:hover {
  color: #2d3690;
  transform: translateX(5px);
}

.bdp-card-menu a.active {
  color: #2d3690;
  font-weight: 600;
}

/* =========================
   MODAL
========================= */
.bdp-modal {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  backdrop-filter: blur(6px);
}

.bdp-modal-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  max-width: 650px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(-60px);
  opacity: 0;
  transition: 0.4s ease;
}

.bdp-modal.show .bdp-modal-box {
  transform: translateY(0);
  opacity: 1;
}

/* CLOSE BUTTON */
.bdp-close {
  position: absolute;
  background: var(--brand-color);
  color: #fff;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 10px;
  right: 7px;
  font-size: 26px;
  cursor: pointer;
}

.bdp-close:hover {
  color: red;
  transform: rotate(90deg);
}

/* TOP AREA */
.bdp-top {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 15px;
}

/* IMAGE */
.bdp-top img {
  width: 180px;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  border: 4px solid #e5e5e5;
  flex-shrink: 0;
}

/* NAME */
.bdp-info h2 {
  font-size: 22px;
  margin: 0 0 6px;
}

/* ROLE */
.bdp-info h4 {
  margin: 0;
  color: #555;
  border-bottom: 2px solid #ddd;
  padding-bottom: 6px;
}

/* DESCRIPTION */
#bdpDesc {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* BOARD OF DIRECTOR PAGE ENDS FROM HERE */

/* CHAIRMAN PROFILE START FROM HERE */

/* =========================
   CONTAINER
========================= */
.container {
  /* width: 92%; */
  max-width: 1200px;
  margin: auto;
}

.chairman_title {
  font-size: 30px;
  font-weight: normal;
  margin-bottom: 30px;
  margin-top: 10px;
}

/* =========================
   LAYOUT
========================= */
.profile-layout {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 30px;
  margin: 40px 0;
}

/* =========================
   MAIN CONTENT CARD
========================= */
.content-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

/* =========================
   HERO IMAGE
========================= */
.page-thumb {
  position: relative;
  margin-bottom: 20px;
}

.page-thumb img {
  width: 220px;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  border: 4px solid #eee;
}

/* =========================
   TEXT
========================= */
.content-card p {
  margin-bottom: 15px;
  line-height: 1.8;
  font-size: 15px;
  color: #444;
}

/* =========================
   ACCORDION
========================= */
.accordion {
  margin-top: 20px;
}

.accordion-btn {
  width: 100%;
  background: #2d3690;
  color: #fff;
  border: none;
  padding: 14px;
  margin-bottom: 8px;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
}

.accordion-btn:hover {
  background: #232a70;
}

.accordion-content {
  display: none;
  padding: 15px;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 12px;
}

.accordion-content ul {
  padding-left: 20px;
}

.accordion-content li {
  margin-bottom: 8px;
  font-size: 14px;
}

/* =========================
   SIDEBAR
========================= */
.sidebar {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 20px;
  height: fit-content;
}

.sidebar h3 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #2d3690;
}

.sidebar ul {
  list-style: none;
}

.sidebar ul li {
  border-bottom: 1px solid #eee;
}

.sidebar ul li a {
  display: block;
  padding: 12px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: 0.3s;
}

.sidebar ul li a:hover {
  color: #2d3690;
  padding-left: 16px;
}

.sidebar ul li a.active {
  color: #2d3690;
  font-weight: 600;
}

/* =========================
   RESPONSIVE
========================= */

/* CHAIRMAN PROFILE ENDS FROM HERE */

/* GROUP PAGE START FROM HERE */

.gap-section {
  background: #f8faff;
}

/* HERO */
.gap-hero {
  background: linear-gradient(135deg, #2d3690, #1b1f5c);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.gap-hero-inner {
  text-align: center;
  position: relative;
}

.gap-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  white-space: nowrap;
}

/* HERO TEXT */
.gap-hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.gap-hero p {
  opacity: 0.85;
}

/* SECTION TITLE */
.gap-title {
  text-align: center;
  font-size: 28px;
  margin: 60px 0 30px;
  color: #222;
}

/* BRAND GRID */
.gap-brands {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 25px;
}

/* CARD */
.gap-card {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: 0.35s;
}

.gap-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 40px rgba(45, 54, 144, 0.2);
}

.gap-card img {
  max-width: 100%;
  height: 70px;
  object-fit: contain;
  transition: 0.3s;
}

.gap-card:hover img {
  transform: scale(1.1);
}

/* BUSINESS */
.gap-business {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.gap-business ul {
  list-style: none;
  padding: 0;
}

.gap-business li {
  padding-left: 18px;
  margin-bottom: 12px;
  position: relative;
  transition: 0.3s;
}

.gap-business li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}

.gap-business li:hover {
  color: #2d3690;
  transform: translateX(5px);
}

/* RESPONSIVE */

/* GROUP PAGE ENDS FROM HERE */

/* PRODUCT DETAILS PAGE START FROM HERE */

/* ================= BASE ================= */
.epx6-wrap {
  padding: 40px 20px;
  position: relative;
}
.product-description {
  margin-top: 30px;
  margin-bottom: 20px;
  color: #333;
}
.epx6-wrap::before {
  content: "";
  position: absolute;
  background: radial-gradient(
    circle at 10% 20%,
    rgba(45, 54, 144, 0.02),
    transparent 80%
  );
}

.epx6-container {
  max-width: 1280px;
  margin: auto;
}

/* ================= TITLE ================= */
.epx6-title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1f2a7a, #3b47b8, #2d3690);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 50px;
}

.epx6-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #2d3690;
  margin: 14px auto;
}

/* ================= TOP ================= */
.epx6-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

/* ===== LEFT (SLIDER) ===== */
.epx6-left {
  height: 100%;
}

.epx6-slider {
  height: 100%;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.epx6-slide {
  display: none;
  height: 100%;
}

.epx6-slide.active {
  display: block;
}

.epx6-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* arrows */
.epx6-prev,
.epx6-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(45, 54, 144, 0.9);
  color: #fff;
  cursor: pointer;
  z-index: 5;
}

.epx6-prev {
  left: 12px;
}

.epx6-next {
  right: 12px;
}

/* ===== RIGHT CONTENT ===== */
.epx6-right {
  max-height: 420px;
  overflow-y: auto;
  padding-right: 5px;
}

/* scrollbar */
.epx6-right::-webkit-scrollbar {
  width: 5px;
}

.epx6-right::-webkit-scrollbar-thumb {
  background: #c5cbe3;
  border-radius: 10px;
}

/* accordion */
.epx6-accordion {
  background: #fff;
  border-radius: 20px;
  padding: 10px;
}

.epx6-head {
  width: 100%;
  padding: 14px;
  border: none;
  background: #f3f6ff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

.epx6-body {
  display: none;
  padding: 12px;
  font-size: 0.9rem;
}

/* description */
.easy_description {
  line-height: 1.8;
  font-size: 0.95rem;
  color: #2c3e50;
  margin-bottom: 12px;
}

/* ================= MID ================= */
.epx6-mid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

.epx6-desc {
  background: #fff;
  padding: 22px;
  border-radius: 20px;
}

.epx6-desc h4 {
  color: #2d3690;
  margin: 12px 0;
}

/* bullet list */
.epx6-desc ul {
  list-style: disc;
  padding-left: 20px;
}

.epx6-desc li {
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.epx6-desc li::marker {
  color: #2d3690;
}

/* ================= SPEC TABLE ================= */
.epx6-spec {
  margin-top: 50px;
  background: #fff;
  border-radius: 20px;
  padding: 14px 0;
  border: 1px solid #eee;
  overflow: hidden;
}

.epx6-spec h3 {
  font-size: 1.2rem;
  margin: 0 18px 12px;
  color: #1f2a6b;
}

.epx6-spec {
  max-width: 700px;
  margin: 20px 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* TITLE */
.epx6-spec h3 {
  font-size: 16px;
  margin: 0 0 10px 0;
  color: #2d3690;
  border-left: 3px solid #2d3690;
  padding-left: 6px;
}

/* TABLE WRAP */
.epx6-spec table {
  width: 100%;
  border-collapse: collapse;
}

/* HEADER */
.epx6-spec thead {
  background: #f5f7ff;
}

.epx6-spec th {
  text-align: left;
  padding: 8px;
  font-size: 13px;
  color: #2d3690;
  white-space: nowrap;
}

/* BODY */
.epx6-spec td {
  padding: 8px;
  font-size: 13px;
  border-top: 1px solid #eee;
  color: #333;
}

/* hover */
.epx6-spec tbody tr:hover {
  background: #fafbff;
}

/* =========================
   🔥 MOBILE FIX (IMPORTANT)
   ========================= */

/* PRODUCT DETAILS PAGE ENDS FROM HERE */

/* PRESSURE PAGE START FROM HERE */

.xpc-sidebar {
  /* position: sticky; */
  top: 20px;
  height: fit-content;
}

/* =========================
RIGHT GRID (future safe)
👉 2 card now, 10 card add korleo safe
========================= */
.xpc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

/* =========================
PREMIUM CARD (PRO LOOK)
========================= */
.xpc-card {
  background: linear-gradient(145deg, #ffffff, #f7f9ff);
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.08);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

  transition: 0.5s ease;
  position: relative;
}

.xpc-card:hover {
  transform: translateY(-14px);

  box-shadow: 0 28px 60px rgba(37, 99, 235, 0.18);
}

/* =========================
LINK FULL CLICKABLE
========================= */
.xpc-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* =========================
IMAGE (premium depth)
========================= */
.xpc-card-image {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.xpc-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s ease;
}

.xpc-card:hover .xpc-card-image img {
  transform: scale(1.15);
}

/* overlay premium feel */
.xpc-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent);
}

/* =========================
CONTENT
========================= */
.xpc-card-info {
  /* padding: 24px; */
}

.xpc-card-info h3 {
  font-size: 22px;
  color: #111827;
  margin-bottom: 8px;
}

.xpc-card-info p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* =========================
BUTTON (INSIDE LINK)
========================= */
.xpc-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  /* background: linear-gradient(135deg, #2563eb, #1d4ed8); */
  background: var(--brand-color);
  color: #fff;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
}

/* shine animation */
.xpc-view-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
  transform: skewX(-25deg);
  transition: 0.7s;
}

.xpc-card:hover .xpc-view-btn::before {
  left: 150%;
}

.xpc-card:hover .xpc-view-btn {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
}

.xpc-view-btn span {
  transition: 0.3s ease;
}

.xpc-card:hover .xpc-view-btn span {
  transform: translateX(6px);
}

/* PRESSURE PAGE ENDS  FROM HERE */

/* CATALOGUE PAGE START FROM HERE */

/* SECTION */
.catalogue-section {
  padding: 50px 20px;
  /* background: #f5f6fa; */
}

/* HEADER */
.catalogue-header {
  text-align: center;
  margin-bottom: 40px;
}

.catalogue-header h1 {
  font-size: 24px;
  color: #222;
  /* margin-bottom: 10px; */
}

.catalogue-header p {
  color: #666;
  font-size: 15px;
}

/* GRID */
.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.cat-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  position: relative;
}

/* HOVER EFFECT */
.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.cat-card img {
  width: 100%;
  /* height: 200px; */
  object-fit: cover;
  transition: 0.4s ease;
}

.cat-card:hover img {
  transform: scale(1.05);
}

/* TEXT */
.cat-card h3 {
  margin: 15px 0 5px;
  font-size: 18px;
  color: #222;
}

.cat-card p {
  font-size: 14px;
  color: #666;
  padding: 0 10px;
}

/* BUTTON */
.cat-card a {
  display: inline-block;
  margin: 15px 0 20px;
  padding: 8px 16px;
  background: #2d3690;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.cat-card a:hover {
  background: #1f2560;
  transform: scale(1.05);
}

/* RESPONSIVE */

/* CATALOGUE PAGE ENDS FROM HERE */

/* PVC PAGE START FROM HERE */

/* =========================
 

/* =========================
SIDEBAR (STICKY SAFE)
========================= */
.xpc-sidebar {
  /* position: sticky; */
  top: 20px;
  height: fit-content;
}

.xpc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

/* =========================
PREMIUM CARD (PRO LOOK)
========================= */
.xpc-card {
  background: linear-gradient(145deg, #ffffff, #f7f9ff);
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

  transition: 0.5s ease;
  position: relative;
}

.xpc-card:hover {
  transform: translateY(-14px);

  box-shadow: 0 28px 60px rgba(37, 99, 235, 0.18);
}

/* =========================
LINK FULL CLICKABLE
========================= */
.xpc-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* =========================
IMAGE (premium depth)
========================= */
.xpc-card-image {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.xpc-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s ease;
}

.xpc-card:hover .xpc-card-image img {
  transform: scale(1.15);
}

/* overlay premium feel */
.xpc-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent);
}

/* =========================
CONTENT
========================= */
.xpc-card-info {
  /* padding: 24px; */
}

.xpc-card-info h3 {
  font-size: 18px;
  color: #111827;
  margin-bottom: 8px;
}

.xpc-card-info p {
  color: #6b7280;
  line-height: 1.7;
  /* margin-bottom: 18px; */
}

/* =========================
BUTTON (INSIDE LINK)
========================= */
.xpc-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  /* background: linear-gradient(135deg, #2563eb, #1d4ed8); */
  color: #fff;
  font-weight: 600;

  position: relative;
  overflow: hidden;

  transition: 0.4s ease;
}

/* shine animation */
.xpc-view-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;

  background: rgba(255, 255, 255, 0.35);
  transform: skewX(-25deg);
  transition: 0.7s;
}

.xpc-card:hover .xpc-view-btn::before {
  left: 150%;
}

.xpc-card:hover .xpc-view-btn {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
}

.xpc-view-btn span {
  transition: 0.3s ease;
}

.xpc-card:hover .xpc-view-btn span {
  transform: translateX(6px);
}

/* PVC PAGE ENDS FROM HERE */

/* PRODUCT DETAILS PAGE START FROM HERE */

.epx6-spec {
  max-width: 700px;
  margin: 20px 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* TITLE */
.epx6-spec h3 {
  font-size: 16px;
  margin: 0 0 10px 0;
  color: #2d3690;
  border-left: 3px solid #2d3690;
  padding-left: 6px;
}

/* TABLE WRAP */
.epx6-spec table {
  width: 100%;
  border-collapse: collapse;
}

/* HEADER */
.epx6-spec thead {
  background: #f5f7ff;
}

.epx6-spec th {
  text-align: left;
  padding: 8px;
  font-size: 13px;
  color: #2d3690;
  white-space: nowrap;
}

/* BODY */
.epx6-spec td {
  padding: 8px;
  font-size: 13px;
  border-top: 1px solid #eee;
  color: #333;
}

/* hover */
.epx6-spec tbody tr:hover {
  background: #fafbff;
}

/* PRODUCT DETAILS PAGE ENDS FROM HERE */
