html,
body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

html,
body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

li {
  margin-bottom: 0;
  font-size: 18px;
}

p {
  margin-bottom: 0;
  font-size: 18px;
}

.biggerh1 {
  font-size: 130px;
  letter-spacing: -0.01em;
  font-weight: 600;
}

h1 {
  font-size: 68px;
  font-style: normal;
}

h2 {
  font-size: 38px;
  font-style: normal;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

.home_main_header_image_area {
  display: block;
  position: relative;
}

.home_main_header_image_area img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.about_home_main_header_image_area {
  display: block;
  position: relative;
}

.about_home_main_header_image_area img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.more_icon_iteams {
  display: flex;
  position: relative;
  align-items: center;
  gap: 0;
}

/* ===== Header Side Icons ===== */
.header_side_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0 15px;
  height: 90px;
  transition: opacity 0.3s ease;
}

.header_side_icon:hover {
  opacity: 0.7;
}

.header_side_icon img {
  width: 20px;
  height: 20px;
}

/* ===== Icon Separator ===== */
.icon_separator {
  display: block;
  width: 1px;
  height: 20px;
  flex-shrink: 0;
}

.header-transparent .icon_separator {
  background-color: rgba(255, 255, 255, 0.3);
}

.header-white .icon_separator {
  background-color: rgba(0, 0, 0, 0.3);
}

/* ===== Language Switcher ===== */
.lang_switcher {
  position: relative;
  gap: 6px;
  user-select: none;
}

.lang_code {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1;
}

.header-transparent .lang_code {
  color: #ffffff;
}

.header-white .lang_code {
  color: #1c1c1c;
}

.lang_arrow {
  width: 12px !important;
  height: 12px !important;
  transition: transform 0.3s ease;
}

.lang_switcher .lang_dropdown.open~.lang_arrow,
.lang_dropdown.open+.lang_arrow {
  transform: rotate(180deg);
}

/* ===== Language Dropdown ===== */
.lang_dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 180px;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.lang_dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang_option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  text-decoration: none !important;
  white-space: nowrap;
}

.lang_option:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
}

.lang_flag {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ===== Search Overlay ===== */
.search_overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 90px;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 100;
}

.search_overlay.active {
  width: 100%;
}

.search_overlay_form {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 20px;
  gap: 15px;
}

.search_overlay_input {
  flex: 1;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid #666666 !important;
  color: #ffffff !important;
  font-size: 18px !important;
  font-weight: 300;
  padding: 10px 0 !important;
  margin-bottom: 0 !important;
  outline: none;
  font-family: "NeueHaas", sans-serif;
  letter-spacing: 0.5px;
}

.search_overlay_input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  font-size: 18px;
}

.search_overlay_input:focus {
  border-bottom-color: rgba(255, 255, 255, 0.7) !important;
}

.search_overlay_submit {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.search_overlay_submit:hover {
  opacity: 1;
}

.search_overlay_submit img {
  width: 20px;
  height: 20px;
}

.search_overlay_close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  padding: 5px 10px;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  font-weight: 300;
}

.search_overlay_close:hover {
  opacity: 1;
}

/* ===== Nav Scroll (Sticky Header) States ===== */
.nav-scroll .icon_separator {
  background-color: rgba(0, 0, 0, 0.2);
}

.nav-scroll .lang_code {
  color: #222;
}

.nav-scroll .header_side_icon img {
  filter: brightness(0);
}

.nav-scroll .lang_arrow {
  filter: brightness(0);
}

.nav-scroll .search_overlay {
  background: rgba(255, 255, 255, 0.98);
}

.nav-scroll .search_overlay_input {
  color: #222 !important;
  border-bottom-color: rgba(0, 0, 0, 0.2) !important;
}

.nav-scroll .search_overlay_input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.nav-scroll .search_overlay_input:focus {
  border-bottom-color: rgba(0, 0, 0, 0.5) !important;
}

.nav-scroll .search_overlay_submit img {
  filter: brightness(0);
}

.nav-scroll .search_overlay_close {
  color: #222;
}

.home_main_header_content_area {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 100%;
  z-index: 10;
}

.main_about_header_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 10;
}

.main_home_header_content {
  width: 100%;
}

.main_about_header_content {
  width: 100%;
}

.header_left_content {
  text-align: left;
}

.header_center_content {
  text-align: center;
}

.home_home_main_subtitle_area {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 40px;
  min-height: 48px;
  /* To give the absolute icon room */
}

.home_home_main_subtitle_area img {
  height: 34px;
  width: auto;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.home_home_main_subtitle_area h6 {
  color: #ffffff;
  letter-spacing: 0.4em;
  margin: 0;
  font-weight: 400;
  padding-left: 20px;
  position: relative;
  z-index: 2;
  font-size: 12px;
}

.header_left_content h1 {
  color: #ffffff;
  font-weight: 300;
  line-height: 1;
  margin: 0;
}

.header_center_content h1 {
  color: #ffffff;
  font-weight: 300;
  line-height: 1;
  margin: 0;
}

.play_pause_btn {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play_pause_btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.pause_lines {
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 4px;
  margin-left: 4px;
  font-weight: 300;
}

.about_hero_image_area {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.about_hero_image_area img {
  max-width: 100%;
}

/* --- APCI Custom Bracket Button --- */
.apci_custom_btn {
  display: inline-flex;
  align-items: center;
  background-color: #f5f3f1;
  height: 48px;
  padding: 0 24px;
  text-decoration: none !important;
  position: relative;
  margin-top: 80px;
  border: none;
  transition: background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.apci_custom_btn .apci_btn_icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  height: 100%;
}

.apci_custom_btn .apci_btn_icon img {
  height: 100%;
  width: auto;
}

.apci_custom_btn .btn_text {
  color: #1a1a1a;
  font-size: 14px;
  letter-spacing: 0.15em;
  font-weight: 400;
  margin-right: 30px;
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}

.apci_custom_btn .btn_arrow {
  display: flex;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.apci_custom_btn .btn_arrow svg {
  width: 20px;
  height: 20px;
  stroke: #1a1a1a;
  transition: stroke 0.4s ease;
}

.apci_custom_btn:hover {
  background-color: #ebe8e3;
}

.apci_custom_btn:hover .btn_text {
  color: #1c1c1c;
}

.apci_custom_btn:hover .btn_arrow {
  transform: translateX(8px);
}

.apci_custom_btn:hover .btn_arrow svg {
  stroke: #d24c0a;
}

/* Custom Button 2 */

/* --- APCI Custom Bracket Button --- */
.apci_custom_btn2 {
  display: inline-flex;
  align-items: center;
  background-color: #101010;
  height: 48px;
  padding: 0 24px;
  text-decoration: none !important;
  position: relative;
  margin-top: 0;
  border: none;
  transition: background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.apci_custom_btn2 .apci_btn_icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  height: 100%;
}

.apci_custom_btn2 .apci_btn_icon img {
  height: 100%;
  width: auto;
}

.apci_custom_btn2 .btn_text {
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.15em;
  font-weight: 400;
  margin-right: 30px;
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}

.apci_custom_btn2 .btn_arrow {
  display: flex;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.apci_custom_btn2 .btn_arrow svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
  transition: stroke 0.4s ease;
}

.apci_custom_btn2:hover {
  background-color: #1a1a1a;
}

.apci_custom_btn2:hover .btn_text {
  color: #ffffff;
}

.apci_custom_btn2:hover .btn_arrow {
  transform: translateX(8px);
}

.apci_custom_btn2:hover .btn_arrow svg {
  stroke: #d24c0a;
}

.pl-100 {
  padding-left: 100px;
}

.about_hero_content_area {
  display: block;
  position: relative;
}

.about_hero_content_area h2 {
  color: #000;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  margin-bottom: 0;
}

.secondary_bg {
  background-color: #f5f3f1;
}

.collection_slider_area h2 {
  color: #000;
  text-align: center;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  margin-bottom: 0;
}

/* --- Animated Collection Tab Buttons --- */
.collection_tab_btns_area {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  /* margin-bottom: 20px; */
}

.tabs_container {
  display: inline-flex;
  background-color: #ffffff;
  border-radius: 50px;
  position: relative;
  padding: 4px;
}

.tab_btn {
  background-color: transparent;
  border: none;
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 400;
  padding: 14px 40px;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
  outline: none;
  line-height: 100%;
}

.tab_btn.active {
  color: #ffffff;
}

.tab_slider {
  position: absolute;
  top: 6px;
  left: 6px;
  height: calc(100% - 12px);
  background-color: #000000;
  border-radius: 50px;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- Collection Swiper Panels --- */
.collection_swiper_panel {
  display: none;
  /* margin-top: 10px; */
}

.collection_swiper_panel.active {
  display: block;
}

.collection_swiper_wrapper {
  overflow: visible;
}

.swiper-container.collection_swiper {
  overflow: visible !important;
  touch-action: pan-y;
}

.collection_swiper .swiper-slide {
  height: auto;
}

/* --- Collection Card --- */
.collection_card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.collection_card img {
  width: 100%;
  /* height: 380px; */
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.collection_card:hover img {
  transform: scale(1.05);
}

.collection_card_label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, transparent 100%);
}

.card_arrow {
  font-size: 20px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.collection_card:hover .card_arrow {
  opacity: 1;
}

/* --- Collection Scrollbar --- */
.collection_scrollbar {
  width: 100px;
  height: 4px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  margin: 80px auto 0;
  position: relative;
}

.collection_scrollbar.swiper-scrollbar-lock {
  display: block !important;
}

.collection_scrollbar .swiper-scrollbar-drag {
  background: #1a1a1a;
  border-radius: 4px;
}

.pt-80 {
  padding-top: 80px;
}

.home_application_based_header_area {
  display: block;
  position: relative;
}

.home_application_based_header_area h2 {
  color: #000;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  margin-bottom: 0;
}

.home_application_based_content_area {
  display: block;
  position: relative;
}

.home_application_based_content_area p {
  color: #666;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  letter-spacing: 0.02em;
}

.card_arrow img {
  width: 30px;
}

.collection_card_label span {
  color: #fff;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

/* Application Slider Styles */
.application_based_collection_area {
  width: 100%;
  position: relative;
  padding-top: 40px;
  padding-bottom: 100px;
  z-index: 1;
}

.application_based_collection_area::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  /* Assuming native desktop height around 560px, half is 280px + 40px padding = 320px */
  top: 320px;
  background-color: #f5f3f1;
  z-index: -1;
}

.application_swiper {
  width: 100%;
  overflow: hidden !important;
  touch-action: pan-y;
}

.app_card_img img {
  width: 100%;
  /* height: 560px; */
  object-fit: cover;
  display: block;
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.app_card_content {
  margin: 20px 20px 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.app_card_left {
  display: flex;
  width: 60%;
  align-items: flex-start;
}

.app_number {
  margin-right: 40px;
  color: #000;
  font-style: normal;
  font-weight: 300;
  margin-bottom: 0;
}

.app_title {
  font-weight: 300;
  color: #000;
  margin-bottom: 0;
}

.app_card_right {
  width: 40%;
}

.app_subtitle {
  font-weight: 400;
  color: #1c1c1c;
  margin-bottom: 15px;
  line-height: 1.2;
}

.app_desc {
  color: #666;
  line-height: 1.2;
  font-weight: 300;
  margin: 0;
  letter-spacing: 0.02em;
}

.recent_projects_showcase_header_area {
  display: block;
  position: relative;
}

.recent_projects_showcase_header_area h2 {
  color: #000;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  margin-bottom: 80px;
}

.similar_product_showcase_header_area {
  display: block;
  position: relative;
}

.similar_product_showcase_header_area h2 {
  color: #000;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  margin-bottom: 60px;
}

.projects_blocks_line {
  border-bottom: 1px solid #ddd;
}

.similar_product_blocks_line {
  border-bottom: 1px solid #ddd;
}

/* Projects Showcase Layout */
.projects_label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #1c1c1c;
}

.projects_dot {
  width: 10px;
  height: 10px;
  background-color: #d24c0a;
  border-radius: 50%;
  display: inline-block;
}

.projects_static_list {
  display: flex;
  gap: 30px;
  width: 100%;
}

.projects_showcase_area {
  overflow-x: hidden;
}

.static_card {
  flex: 1;
  min-width: 0;
}

.project_card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  /* border-radius if needed: border-radius: 16px; */
}

.project_categories {
  color: #666;
  margin-bottom: 8px;
  font-weight: 300;
}

.project_link {
  font-size: 16px;
  color: #1c1c1c;
  font-weight: 400;
  text-decoration: underline !important;
  transition: color 0.3s ease;
}

.project_link:hover {
  color: #d24c0a;
}

.dark_bg {
  background-color: #101010;
}

.blog_news_home_header_area {
  display: flex;
  position: relative;
  justify-content: space-between;
}

.blog_news_header {
  display: block;
  position: relative;
}

.blog_news_header h2 {
  color: #f5f3f1;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  margin-bottom: 0;
}

.main_home_single_blog_area {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background-color: #1a1a1a;
}

.main_home_single_blog_image_area {
  display: block;
  position: relative;
}

.main_home_single_blog_image_area img {
  width: 100%;
}

.main_home_single_blog_content_area {
  padding: 30px;
}

.main_home_single_blog_content_area h6 {
  color: #7e7e7e;
  margin-bottom: 24px;
}

.main_home_single_blog_content_area h4 {
  color: #f5f3f1;
  font-style: normal;
  font-weight: 300;
  line-height: 110%;
  margin-bottom: 50px;
}

.main_home_single_blog_content_area a {
  color: #f5f3f1;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.15em;
  display: inline-flex;
  gap: 30px;
  align-items: center;
  padding: 13px 24px;
  border: 1px solid #3e3e3e;
}

.main_home_single_blog_content_area a img {
  width: 20px;
}

footer {
  padding-top: 80px;
  background-color: #f5f3f1;
}

.footer_top_header_area {
  display: block;
  position: relative;
}

.footer_top_header_area h2 {
  color: #000;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  margin-bottom: 0;
}

.footer_top_area {
  padding-top: 100px;
}

.footer_social_single_links_area {
  display: block;
  position: relative;
  padding: 0 15px;
}

.footer_social_single_links_area a {
  display: flex;
  position: relative;
  justify-content: space-between;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 20px;
  padding-top: 20px;
}

.footer_social_links_name {
  display: flex;
  position: relative;
  gap: 20px;
  align-items: center;
}

.footer_social_links_name img {
  width: 30px;
}

.footer_social_links_name p {
  color: #1c1c1c;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

.footer_social_area>.col-lg-4:nth-child(n + 4) .footer_social_single_links_area a {
  padding-bottom: 0;
  border-bottom: none;
}

/* Remove LEFT padding (1st, 4th, ...) */
.footer_social_area>.col-lg-4:nth-child(3n + 1) .footer_social_single_links_area {
  padding-left: 0;
}

/* Remove RIGHT padding (3rd, 6th, ...) */
.footer_social_area>.col-lg-4:nth-child(3n) .footer_social_single_links_area {
  padding-right: 0;
}

.footer_links_area {
  padding-top: 120px;
}

.footer_quick_links_header {
  display: flex;
  position: relative;
  gap: 12px;
  margin-bottom: 30px;
}

.footer_quick_links_header h5 {
  margin-bottom: 0;
  color: #1c1c1c;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.footer_quick_links_header img {
  width: 24px;
}

.footer_quick_links_link {
  display: block;
  position: relative;
}

.footer_quick_links_link ul {
  padding-left: 0;
  margin: 0;
}

.footer_quick_links_link ul li a {
  color: #666;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 139%;
}

/* Footer Copyright Area */
.footer_copyright_area {
  padding: 30px 0;
  margin-top: 80px;
  background-color: #fff;
}

.footer_copyright_left {
  display: flex;
  align-items: center;
}

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

.footer_copyright_divider {
  height: 30px;
  width: 1px;
  background-color: #d8d8d8;
  margin: 0 50px;
}

.footer_copyright_links {
  display: flex;
  gap: 50px;
}

.footer_copyright_links a {
  color: #666;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer_copyright_links a:hover {
  color: #1a1a1a;
}

.footer_copyright_right {
  text-align: right;
}

.footer_copyright_right p {
  color: #666;
  font-size: 16px;
  margin-bottom: 0;
  line-height: 1.4;
}

.footer_copyright_right p:last-child {
  margin-bottom: 0;
}

.about_hero_content_area p {
  margin: 50px 0;
  color: #666;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
}

.about_hero_content_area p b {
  color: #1c1c1c;
  font-weight: 400;
}

.about_hero_content_btn_area {
  display: block;
  position: relative;
}

.about_hero_content_btn_area a {
  display: flex;
  justify-content: space-between;
  color: #1c1c1c;
  font-weight: 400;
  font-size: 18px;
  padding: 20px 0;
  border-top: 1px solid #dddddd;
}

.about_hero_content_btn_area a:last-child {
  border-bottom: 1px solid #dddddd;
}

.about_hero_content_btn_area a img {
  width: 24px;
}

.apci_timeline_header_area {
  display: block;
  position: relative;
}

.apci_timeline_header_area h2 {
  color: #f5f3f1;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  margin-bottom: 0;
}

/* --- APCI About Timeline Styles --- */
.apci_main_timeline_area {
  display: block;
  position: relative;
  margin-top: 180px;
  overflow: hidden;
}

.timeline_nav_wrapper {
  margin-bottom: 40px;
}

.timeline-nav-buttons .timeline-prev,
.timeline-nav-buttons .timeline-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.timeline-nav-buttons .timeline-prev:hover,
.timeline-nav-buttons .timeline-next:hover {
  border-color: #f5f3f1;
}

.timeline-nav-buttons svg {
  width: 16px;
  height: 16px;
  stroke: #f5f3f1;
  fill: none;
  stroke-width: 2;
  /* Set explicit stroke width for consistency */
}

.apci_timeline_swiper {
  position: relative;
  width: 100%;
  overflow: visible !important;
  /* Padding-left will be dynamically set by JS */
}

/* The continuous background line */
.apci_timeline_swiper::before {
  content: "";
  position: absolute;
  left: -100vw;
  right: -100vw;
  top: 155px;
  /* Adjust according to year text height to align with node */
  border-bottom: 1px solid #333;
  z-index: 1;
}

.timeline_slide {
  width: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
}

/* Big Year for Active Slide */
.timeline_year_big {
  font-size: 160px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  margin: 0;
  height: 150px;
  /* Fixed height to keep node aligned */
  display: flex;
  align-items: flex-end;

  opacity: 0;
  visibility: hidden;
  transform: translateX(-30px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.8s;
}

/* Small Year for Inactive Slide */
.timeline_small_year {
  font-size: 16px;
  font-weight: 300;
  color: #666;
  line-height: 1;
  margin: 0;
  height: 150px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 15px;
  /* Offset above dot */

  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.6s;
  position: absolute;
  top: 0;
  left: 0;
}

/* The Timeline Node (Dot) Area */
.timeline_node {
  width: 100%;
  height: 10px;
  display: flex;
  align-items: center;
  position: relative;
}

.timeline_dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #666;
  transition:
    background-color 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Description Area */
.timeline_desc {
  margin-top: 50px;
  font-size: 18px;
  color: #f5f3f1;
  font-weight: 300;
  line-height: 1.5;
  max-width: 500px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.8s;
  transition-delay: 0.15s;
}

/* --- Active Slide States --- */
.timeline_slide.swiper-slide-active .timeline_year_big {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -70px);
}

.timeline_slide.swiper-slide-active .timeline_small_year {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
}

.timeline_slide.swiper-slide-active .timeline_dot {
  background-color: #d24c0a;
  /* Orange accent color */
  transform: scale(1.2);
}

.timeline_slide.swiper-slide-active .timeline_desc {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.apci_mission_vision_header_area {
  display: block;
  position: relative;
  margin-bottom: 140px;
}

.apci_mission_vision_header_area h2 {
  color: #000;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  margin-bottom: 0;
}

.with-line {
  position: relative;
}

.with-line::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -9999px;
  right: 0;
  height: 1px;
  background: #ccc;
}

.with-line::before {
  content: "";
  position: absolute;
  bottom: -54px;
  right: 0;
  width: 10px;
  height: 10px;
  background: #d24c0a;
  border-radius: 50%;
  z-index: 999;
}

.apci_mission_vision_content_desc_area {
  display: block;
  position: relative;
}

.apci_mission_vision_content_desc_area p {
  color: #666;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  width: 420px;
}

.apci_mission_vision_content_desc_area p b {
  color: #1c1c1c;
  font-weight: 400;
}

.apci_mission_vision_content_desc_area p+p {
  margin-top: 60px;
}

.apci_mission_vision_image_area {
  display: block;
  position: relative;
}

.apci_mission_vision_image_area img {
  width: 100%;
}

.core_values_points_area_left_single_area {
  display: flex;
  position: relative;
  gap: 90px;
  padding: 60px 0;
}

.col-lg-4 .core_values_points_area_left_single_area:first-child {
  padding-top: 0;
}

.core_values_points_icon_image {
  display: block;
  position: relative;
}

.core_values_points_icon_image img {
  width: 60px;
}

.core_values_points_desc_area {
  display: block;
  position: relative;
}

.core_values_points_desc_area h4 {
  color: #1c1c1c;
  font-style: normal;
  font-weight: 300;
  line-height: 110%;
  margin-bottom: 40px;
}

.core_values_points_desc_area p {
  color: #666;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.core_values_points_wrapper {
  position: relative;
}

.core_values_points_wrapper::before {
  content: "";
  position: absolute;
  top: -100px;
  bottom: 0;
  left: 30px;
  width: 1px;
  background: #ccc;
}

.core_values_points_area_left_single_area {
  position: relative;
}

.core_values_points_area_left_single_area::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 30px;
  /* Break out of container */
  right: calc(-50vw + 50%);
  height: 1px;
  background: #ddd;
}

.apci_tech_machine_header_area {
  display: block;
  position: relative;
}

.apci_tech_machine_header_area h2 {
  color: #f5f3f1;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  margin-bottom: 0;
}

.tech_logo_section_header {
  padding: 80px 0 60px 0;
  border-bottom: 1px solid rgba(204, 204, 204, 0.4);
}

.machinery_company_logo_area {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  justify-items: center;
  gap: 40px;
  padding: 60px 0 80px 0;
}

.single_machinery_logo_image_area {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.single_machinery_logo_image_area img {
  max-height: 70px;
  max-width: 150px;
  width: 100%;
  object-fit: contain;
}

.apci_certification_header_area {
  display: block;
  position: relative;
}

.apci_certification_header_area h2 {
  color: #000;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  margin-bottom: 0;
}

.certification_table_wrapper {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 50px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.certification_table_header {
  display: flex;
  background: #f5f3f1;
  padding: 30px 40px;
}

.certification_table_header .cert_col {
  font-size: 24px;
  font-weight: 400;
  color: #1c1c1c;
  align-content: center;
  line-height: 1;
}

.certification_row {
  display: flex;
  padding: 40px 25px;
  border-bottom: 2px solid #f5f3f1;
  align-items: center;
  transition: background-color 0.3s ease;
  background: #fff;
}

.certification_row:last-child {
  border-bottom: none;
}

.certification_row:hover {
  background-color: #fafafa;
}

.cert_col {
  padding: 0 20px;
}

.logo_col {
  flex: 0 0 220px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo_col img {
  max-width: 140px;
  max-height: 80px;
  object-fit: contain;
  transition: all 0.4s ease;
}

.certification_row:hover .logo_col img {
  filter: grayscale(0);
  opacity: 1;
}

.code_col {
  flex: 0 0 320px;
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  line-height: 100%;
}

.desc_col {
  flex: 1;
  font-size: 16px;
  color: #666;
  line-height: 130%;
  font-weight: 400;
}

/* --- Responsive Fixes --- */

.certification_table_body {
  padding: 0 10px 10px 10px;
  background: #f5f3f1;
}

.certification_table_body .certification_row:first-child {
  border-radius: 10px 10px 0 0;
}

.certification_table_body .certification_row:last-child {
  border-radius: 0 0 10px 10px;
}


.certification_table_body .certification_row:first-child {
  border-radius: 15px 15px 0 0;
}

.certification_table_body .certification_row:last-child {
  border-radius: 0 0 15px 15px;
}

.sub_pages_header_area {
  background-color: #f5f3f1;
  padding-top: 150px;
  padding-bottom: 80px;
}

.apci_subpage_breadcumb_list_area ul {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.apci_subpage_breadcumb_list_area ul li,
.apci_subpage_breadcumb_list_area ul li a {
  color: #666;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
}

.apci_subpage_breadcumb_list_area ul li.active {
  color: #1c1c1c;
  font-weight: 400;
}

.apci_subpage_breadcumb_list_area ul li img {
  width: 14px;
}

.apci_subpage_header_info_area {
  display: block;
  position: relative;
  padding-top: 120px;
}

.apci_subpage_header_info_area h1 {
  color: #1c1c1c;
  leading-trim: both;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.apci_subpage_header_info_area p {
  color: #7e7e7e;
  font-style: normal;
  font-weight: 300;
}

.apci_blogpage_header_info_area {
  display: block;
  position: relative;
  padding-top: 120px;
}

.apci_blogpage_header_info_area h1 {
  color: #1c1c1c;
  leading-trim: both;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  margin-bottom: 16px;
}

.apci_blogpage_header_info_area p {
  color: #7e7e7e;
  font-style: normal;
  font-weight: 300;
}

.apci_contact_form_wrapper {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.apci_contact_form_header {
  display: flex;
  background: #f5f3f1;
  padding: 30px 60px;
}

.apci_contact_form_header {
  display: block;
  position: relative;
}

.apci_contact_form_header h4 {
  color: #1c1c1c;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 0;
  font-size: 24px;
}

.apci_contact_form_body {
  padding: 0 10px 10px 10px;
  background-color: #f5f3f1;
}

.apci_contact_form_area {
  background-color: #fff;
  padding: 50px 45px;
  border-radius: 10px;
}

#inquiryForm input[type="password"],
#inquiryForm input[type="email"],
#inquiryForm input[type="text"],
#inquiryForm input[type="file"],
#inquiryForm textarea {
  border: none !important;
  border-bottom: 1px dashed #cccccc !important;
  margin-bottom: 30px;
  padding-left: 0;
  color: #666;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-left: 5px;
  margin-right: 5px;
}

#inquiryForm select {
  border: none !important;
  border-bottom: 1px dashed #cccccc !important;
  margin-bottom: 30px;
  padding-left: 0;
  width: 100%;
  color: #aaaaaa !important;
  font-size: 16px !important;
}

#inquiryForm select:focus {
  border: none;
  box-shadow: none;
  outline: none;
}

#inquiryForm input::placeholder,
#inquiryForm textarea::placeholder {
  color: #aaaaaa;
  font-size: 16px;
}

#inquiryForm select option[disabled] {
  color: #aaaaaa !important;
  font-size: 16px !important;
}

.contact_form_content_btn button {
  color: #f5f3f1;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.15em;
  display: inline-flex;
  gap: 30px;
  align-items: center;
  padding: 13px 24px;
  border: 1px solid #3e3e3e;
  background-color: #1c1c1c;
  text-transform: uppercase;
}

.pl-120 {
  padding-left: 120px;
}

.mt-80 {
  margin-top: 80px;
}

.apci_contact_side_desc p {
  color: #666;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
}

.apci_contact_side_desc p b {
  color: #1c1c1c;
}

.apci_contact_side_desc {
  border-bottom: 1px solid #ccc;
  padding-bottom: 40px;
}

.apci_contact_link_details_area a {
  display: flex;
  position: relative;
  padding: 25px 0;
  border-bottom: 1px solid #ccc;
  align-items: center;
}

.apci_contact_link_details_area a img {
  width: 64px;
  margin-right: 30px;
}

.apci_contact_link_details_area p {
  color: #666;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
}

.apci_contact_link_details_area p b {
  color: #1c1c1c;
  font-weight: 400;
}

/* Transparent Header  */

.header-transparent {
  background: transparent;
}

.header-transparent .nav-link {
  color: #fff;
}

.header-transparent .logo-img {
  content: url("../upload/assets/white-logo.svg");
}

.header-transparent .header_side_icon img {
  filter: brightness(0) invert(1);
}

/* White Header  */

.header-white {
  background: #fff;
}

.header-white .nav-link {
  color: #000;
}

.header-white .logo-img {
  content: url("../upload/assets/black-logo.svg");
}

.header-white .header_side_icon.search_bar_icon img,
.header-white .header_side_icon.bookmark_icon img,
.header-white .header_side_icon.lang_switcher img {
  filter: invert(1);
}

.smart_new_navbar {
  padding: 0 50px;
  border-radius: 8px;
}

/* ===== Mega Dropdown — Collection ===== */
.mega-dropdown-wrapper {
  position: static !important;
}

.mega-dropdown-wrapper>.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mega-dropdown-arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-top: 1px;
}

.mega-dropdown-wrapper:hover .mega-dropdown-arrow,
.mega-dropdown-wrapper.mega-open .mega-dropdown-arrow {
  transform: rotate(180deg);
}

.mega-dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #f5f3f1;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mega-dropdown-wrapper:hover .mega-dropdown-panel,
.mega-dropdown-wrapper.mega-open .mega-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-dropdown-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.8fr;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 60px 55px;
}

.mega-col {
  padding-right: 40px;
}

.mega-col-right {
  padding-right: 0;
  padding-left: 40px;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.mega-col-title {
  font-size: 15px;
  font-weight: 500;
  color: #1c1c1c;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
  line-height: 1;
}

.mega-col-title-app {
  margin-top: 32px;
}

/* Link Lists */
.mega-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-link-list li {
  margin-bottom: 0;
}

.mega-link-list li a {
  display: block;
  padding: 7px 0;
  font-size: 14px;
  font-weight: 300;
  color: #555555;
  text-decoration: none;
  transition:
    color 0.25s ease,
    padding-left 0.25s ease;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.mega-link-list li a:hover {
  color: #d24c0a;
  padding-left: 4px;
}

/* Size Tags */
.mega-size-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mega-size-tag {
  display: inline-block;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 400;
  color: #555555;
  background: transparent;
  border: 1px solid #cccccc;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.25s ease;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.mega-size-tag:hover {
  color: #d24c0a;
  border-color: #d24c0a;
  background-color: rgba(210, 76, 10, 0.04);
}

/* Application Icons */
.mega-app-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.mega-app-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  transition: transform 0.25s ease;
}

.mega-app-item:hover {
  transform: translateY(-2px);
}

.mega-app-icon-wrap {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  transition: all 0.25s ease;
  padding: 12px;
}

.mega-app-item:hover .mega-app-icon-wrap {
  border-color: #d24c0a;
  box-shadow: 0 4px 12px rgba(210, 76, 10, 0.1);
}

.mega-app-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mega-app-label {
  font-size: 12px;
  font-weight: 400;
  color: #666666;
  text-align: center;
  line-height: 1.2;
  transition: color 0.25s ease;
}

.mega-app-item:hover .mega-app-label {
  color: #d24c0a;
}

.lang_dropdown a img {
  filter: invert(0) !important;
}

.blog_main_index_page_area.blog_main_index_page_area {
  background-color: #f5f3f1;
}

.blog_main_index_page_area .main_home_single_blog_content_area h4 {
  color: #1c1c1c;
}

.blog_main_index_page_area .main_home_single_blog_content_area a {
  color: #1c1c1c;
}

.blog_details_main_thumbnail_image_area {
  display: block;
  position: relative;
}

.blog_details_main_thumbnail_image_area img {
  max-width: 100%;
  width: 100%;
}

.blog_insider_details_area p {
  color: #666;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.blog_insider_details_area ul {
  margin-top: 20px;
}

.blog_insider_details_area ul li {
  color: #666;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0;
  margin-bottom: 0;
  list-style-type: disc;
}

.blog_insider_details_area h2 {
  color: #1c1c1c;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 30px;
  margin-top: 50px;
}

.blog_insider_details_area h3 {
  color: #1c1c1c;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 20px;
  margin-top: 40px;
}

.blog_insider_details_area h4 {
  color: #1c1c1c;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  margin-bottom: 15px;
  margin-top: 30px;
}

.blog_insider_details_area h5 {
  color: #1c1c1c;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
}

.blog_insider_details_area h6 {
  color: #212121;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
}

/* ===== Collection Filter Dropdowns ===== */
.apci_collection_filter_area {
  display: flex;
  width: 100%;
}

.apci_filter_dropdown {
  flex: 1;
  position: relative;
  border-right: 1px solid #dddddd;
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
}

.apci_filter_dropdown:first-child {
  border-left: 1px solid #dddddd;
}

.apci_filter_dropdown:first-child {
  border-radius: 12px 0 0 12px;
}

.apci_filter_dropdown:last-child {
  border-radius: 0 12px 12px 0;
}

.apci_filter_dropdown_trigger {
  padding: 16px 40px;
  cursor: pointer;
  transition: background-color 0.25s ease;
  user-select: none;
}

.apci_filter_dropdown_trigger:hover {
  background-color: #faf9f8;
}

.apci_filter_dropdown_label_group {
  display: block;
}

.apci_filter_label {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: #7e7e7e;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 10px;
}

.apci_filter_value_row {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.apci_filter_value {
  font-size: 18px;
  font-weight: 300;
  color: #1c1c1c;
  line-height: 1;
}

.apci_filter_arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0.5;
}

.apci_filter_dropdown.open .apci_filter_arrow {
  transform: rotate(180deg);
  opacity: 0.8;
}

/* Dropdown Menu */
.apci_filter_dropdown_menu {
  position: absolute;
  top: 100%;
  left: -1px;
  right: -1px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-top: none;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.apci_filter_dropdown.open .apci_filter_dropdown_menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.apci_filter_option {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #555555;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.3px;
}

.apci_filter_option:hover {
  background-color: #faf9f8;
  color: #1c1c1c;
}

.apci_filter_option.active {
  color: #d24c0a;
  font-weight: 500;
  background-color: rgba(210, 76, 10, 0.04);
}

.apci_collection_filter_title_label {
  display: block;
  position: relative;
  margin-bottom: 30px;
}

.apci_collection_filter_title_label span {
  color: #1c1c1c;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

/* ===== Product Index Card ===== */
.apci_product_index_single_area {
  position: relative;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.apci_product_index_single_area:hover {
  transform: translateY(-4px);
}

.full-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ===== Product Thumbnail ===== */
.apci_product_index_thumbnail_area {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.apci_product_index_thumbnail_area img {
  width: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.apci_product_index_single_area:hover .apci_product_index_thumbnail_area img {
  transform: scale(1.03);
}

/* ===== Bookmark Button ===== */
.bookmark-btn {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: #ffffff;
  /* border: 1px solid rgba(0, 0, 0, 0.08); */
  border-radius: 8px;
  cursor: pointer;
  outline: none;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    background 0.25s ease,
    transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

/* Show bookmark on card hover */
.apci_product_index_single_area:hover .bookmark-btn {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Always show if bookmarked */
.bookmark-btn.bookmarked {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.apci_product_index_single_area:hover .bookmark-btn:hover {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.15);
}

.bookmark-btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
  transition-duration: 0.1s;
}

/* Bookmark button text */
.bookmark-btn-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: #1c1c1c;
  line-height: 1;
  transition: color 0.3s ease;
}

/* Bookmark button icon wrapper */
.bookmark-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 14px;
  height: 14px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bookmark-btn:hover .bookmark-btn-icon {
  transform: scale(1.15);
}

/* Heart icon — outline (default) */
.bookmark-icon-outline {
  color: #1c1c1c;
  transition:
    opacity 0.25s ease,
    transform 0.3s ease;
}

/* Heart icon — filled (bookmarked) */
.bookmark-icon-filled {
  position: absolute;
  top: 0;
  left: 0;
  color: #d24c0a;
  opacity: 0;
  transform: scale(0.5);
  transition:
    opacity 0.25s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== Bookmarked Active State ===== */
.bookmark-btn.bookmarked {
  background: #ffffff;
  border-color: rgba(210, 76, 10, 0.2);
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bookmark-btn.bookmarked .bookmark-btn-text {
  color: #d24c0a;
}

.bookmark-btn.bookmarked .bookmark-icon-outline {
  opacity: 0;
  transform: scale(0.5);
}

.bookmark-btn.bookmarked .bookmark-icon-filled {
  opacity: 1;
  transform: scale(1);
}

/* Pop animation keyframe for heart */
@keyframes bookmarkPop {
  0% {
    transform: scale(1);
  }

  30% {
    transform: scale(1.35);
  }

  60% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}

.bookmark-btn.bookmark-animate .bookmark-btn-icon {
  animation: bookmarkPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* ===== Product Details ===== */
.apci_product_index_details_area {
  padding: 20px 20px 0 20px;
}

.apci_product_index_details_area span {
  font-size: 16px;
  color: #666666;
  font-weight: 300;
  margin-bottom: 4px;
  line-height: 1.4;
}

.apci_product_index_details_area h3 {
  font-weight: 400;
  color: #1c1c1c;
  line-height: 1.3;
  margin: 0;
  font-weight: 300;
}

.mt-60 {
  margin-top: 60px;
}

/* ===== Product Gallery ===== */
.apci_product_gallery {
  width: 100%;
}

/* Main Image Container */
.apci_gallery_main_area {
  position: relative;
  background: #f5f3f1;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  padding-bottom: 0;
}

.apci_gallery_main_area img {
  width: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
  border-radius: 10px;
}

/* Gallery Main Arrows */
.apci_gallery_main_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #DDDDDD;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  color: #D24C0A;
  transition: all 0.25s ease;
  z-index: 10;
}

.apci_gallery_main_arrow:hover {
  color: #1c1c1c;
  border: 1px solid #D24C0A !important;
}

.apci_gallery_main_arrow:active {
  transform: translateY(-50%) scale(0.93);
  transition-duration: 0.1s;
}

.apci_gallery_main_prev {
  left: 30px;
}

.apci_gallery_main_next {
  right: 30px;
}

/* Gallery Bookmark Icon */
.apci_gallery_bookmark {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  color: #1c1c1c;
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    color 0.3s ease;
}

.apci_gallery_bookmark:hover {
  transform: scale(1.15);
}

.apci_gallery_bookmark:active {
  transform: scale(0.95);
  transition-duration: 0.1s;
}

.apci_gallery_bookmark .bookmark-icon-outline {
  position: absolute;
  inset: 0;
  margin: auto;
  transition:
    opacity 0.25s ease,
    transform 0.3s ease;
}

.apci_gallery_bookmark .bookmark-icon-filled {
  position: absolute;
  inset: 0;
  margin: auto;
  color: #d24c0a;
  opacity: 0;
  transform: scale(0.5);
  transition:
    opacity 0.25s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.apci_gallery_bookmark.bookmarked .bookmark-icon-outline {
  opacity: 0;
  transform: scale(0.5);
}

.apci_gallery_bookmark.bookmarked .bookmark-icon-filled {
  opacity: 1;
  transform: scale(1);
}

/* ===== Thumbnail Carousel ===== */
.apci_gallery_thumbs_wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background-color: #f5f3f1;
  border-radius: 0 0 20px 20px;
}

/* Thumbnail Navigation Arrows */
.apci_gallery_thumb_arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #DDDDDD;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  color: #D24C0A;
  transition: all 0.25s ease;
}

.apci_gallery_thumb_arrow:hover {
  color: #1c1c1c;
  border: 1px solid #D24C0A !important;
}

.apci_gallery_thumb_arrow:active {
  transform: scale(0.93);
  transition-duration: 0.1s;
}

.apci_gallery_thumb_arrow.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

/* Swiper Thumbs Container — fixed height prevents CLS */
.apci_gallery_thumbs_swiper {
  flex: 1;
  overflow: hidden;
  min-width: 0;
  height: 100%;
}

/* Pre-init: constrain slides in a row before Swiper JS loads */
.apci_gallery_thumbs_swiper .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  height: 100%;
}

.apci_gallery_thumbs_swiper .swiper-slide {
  flex-shrink: 0;
  width: calc((100% - 40px) / 5);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Individual Thumbnail */
.apci_gallery_thumb {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
}

.apci_gallery_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.apci_gallery_thumb:hover {
  border-color: rgba(0, 0, 0, 0.1);
}

.apci_gallery_thumb.active {
  border-color: #c0462b;
}

.apci_gallery_main_area img.gallery-fade-out {
  opacity: 0.4;
}

.pl-120 {
  padding-left: 120px;
}

.apci_product_main_full_details_area {
  display: block;
  position: relative;
}

.product_details_type_area {
  display: inline-block;
  position: relative;
  background: #fdf8f5;
  margin-bottom: 30px;
}

.product_details_type_area span {
  color: #d24c0a;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.15em;
  padding: 8px 15px;
  text-transform: uppercase;
}

.product_details_name_area h1 {
  color: #1c1c1c;
  font-size: 54px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  margin-bottom: 0;
}

.product_details_more_info_area {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}

.product_details_more_info_area span {
  color: #1c1c1c;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  display: inline-flex;
  align-items: center;
}

.product_details_more_info_area span:not(:last-child)::after {
  content: "·";
  margin-left: 16px;
  margin-right: 16px;
  font-size: 42px;
  color: #cccccc;
  font-weight: 400;
}

.product_details_view_catalog_btn {
  display: block;
  position: relative;
  background-color: #323232;
  margin-bottom: 20px;
  transition: background-color 0.4s ease;
}

.product_details_view_catalog_btn:hover {
  background-color: #d24c0a;
}

.product_details_view_catalog_btn a {
  display: flex;
  position: relative;
  gap: 12px;
  padding: 14px 30px;

  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.product_details_view_catalog_btn a img {
  width: 18px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.product_details_view_catalog_btn:hover a img {
  transform: translateX(6px);
}

.product_details_description_text_area {
  display: block;
  position: relative;
}

.product_details_description_text_area p {
  color: #7e7e7e;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
}

.product_details_description_text_area {
  display: block;
  position: relative;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #ddd;
}

.product_details_description_text_area ul {
  padding-left: 0;
  margin-top: 30px;
  margin-bottom: 0;
}

.product_details_description_text_area ul li {
  display: flex;
  position: relative;
  gap: 12px;
  color: #1c1c1c;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 10px;
}

.product_details_description_text_area ul li:last-child {
  margin-bottom: 0;
}

.product_details_ctn_btn_header_area {
  background-color: #fdf8f5;
  padding: 30px 35px 20px 35px;
  margin-top: 30px;
}

.product_details_ctn_btn_header_area h2 {
  color: #1c1c1c;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  margin-bottom: 0;
}

.product_details_ctn_bottom_area p {
  color: #1c1c1c;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  margin-top: 15px;
  letter-spacing: 0.04em;
}

.product_details_ctn_bottom_area p span {
  font-weight: 600;
}

.product_details_ctn_btn_header_area h2 span {
  color: #d24c0a;
}

.product_details_ctn_top_area {
  display: flex;
  position: relative;
  justify-content: space-between;
  padding-bottom: 50px;
  border-bottom: 1px dashed #ddd;
}

.product_details_ctn_top_area_span {
  color: #d24c0a;
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.15em;
}

/* ======= Accordion Box (for Faqs) style ======= */

.accordion-box {
  position: relative;
  padding: 0;
}

.accordion-box .block {
  position: relative;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.accordion-box .block.active-block {
  background: rgba(0, 0, 0, 0.3);
}

.accordion-box .block:last-child {
  margin-bottom: 0;
}

.accordion-box .block .acc-btn {
  position: relative;
  cursor: pointer;
  padding: 20px;
  padding-right: 60px;
  transition: all 500ms ease;
  font-style: normal;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  color: #1c1c1c;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.accordion-box .block .acc-btn .count {
  color: #aa8453;
  padding-right: 3px;
}

.accordion-box .block .acc-btn:before {
  position: absolute;
  right: 35px;
  top: 20px;
  height: 30px;
  font-size: 14px;
  font-weight: normal;
  color: rgba(210, 76, 10, 1);
  line-height: 30px;
  content: "\e61a";
  font-family: "Themify";
  transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active {
  background: #fff;
  color: #1c1c1c;
}

.accordion-box .block .acc-btn.active:before {
  color: "Themify";
  content: "\e622";
}

.accordion-box .block .acc-content {
  position: relative;
  display: none;
}

.accordion-box .block .content {
  position: relative;
  padding: 15px 20px 25px;
  background: #fff;
  color: #1c1c1c;
}

.accordion-box .block .acc-btn.direct-link:before {
  content: "\e65a";
}

.accordion-box .block .acc-content.current {
  display: block;
}

.accordion-box .block .content .text {
  display: block;
  position: relative;
  top: 0px;
  display: block;
  color: #000;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.03em;
}

.product_details_main_fourth_area {
  margin-top: 30px;
}

.accordion-box .block {
  border-radius: 0;
}

/* bookmark page css */

.bookmark-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 46px;
  flex-wrap: wrap;
}

.apci_bookmark_title_area h2 {
  font-weight: 300;
  color: #1c1c1c;
  line-height: 120%;
  letter-spacing: 0;
  margin: 0;
}

.apci_bookmark_btn_area a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #000000;
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  padding: 14px 25px;
  text-transform: none;
  border: none;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.apci_bookmark_btn_area a span {
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0%;
}

.apci_bookmark_btn_area a:hover {
  background-color: #333333;
  color: #ffffff;
}

.apci_bookmark_btn_area a img {
  width: 18px;
  height: 18px;
}

.apci_bookmark_banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(204, 147, 120, 0.08);
  border: 1px dashed #8d4e30;
  padding: 20px 30px;
  margin-top: 40px;
  border-radius: 10px;
}

.apci_bookmark_banner .icon_box {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8d4e30;
  font-size: 24px;
  flex-shrink: 0;
}

.apci_bookmark_banner p {
  font-weight: 400;
  font-style: none;
  line-height: 130%;
  letter-spacing: 0%;
  color: #8d4e30;
  margin: 0;
}

/* APCI Share Modal Styling */
.apci_share_modal_content {
  background-color: #ffffff;
  border: none;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  padding: 24px 30px;
}

.apci_share_modal_content .modal-header {
  padding: 0 0 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.apci_share_modal_content .modal-title {
  font-family: "NeueHaas", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #1c1c1c;
  letter-spacing: -0.01em;
  margin: 0;
}

.apci_share_modal_content .btn-close {
  background-size: 10px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  padding: 8px;
  margin: 0;
}

.apci_share_modal_content .btn-close:hover {
  opacity: 1;
}

.apci_share_modal_content .modal-body {
  padding: 15px 0 0 0;
}

.apci_share_modal_content .form-control {
  font-family: "NeueHaas", sans-serif;
  height: 50px;
  padding: 0 16px;
  font-size: 15px;
  color: #1c1c1c;
  background-color: #fcfcfc;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease;
  width: 100%;
}

.apci_share_modal_content .form-control:focus {
  background-color: #ffffff;
  border-color: #1c1c1c;
  box-shadow: none;
  outline: none;
}

.apci_share_modal_content .form-control::placeholder {
  color: #999999;
}

.apci_share_modal_content_note {
  font-family: "NeueHaas", sans-serif;
  font-size: 14px;
  color: #8d4e30;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 12px 0 24px 0;
  line-height: 1.4;
}

.apci_share_modal_content_note i {
  font-size: 14px;
}

.apci_modal_copy_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #000000;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  padding: 12px 28px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    opacity 0.3s ease;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.apci_modal_copy_btn:hover {
  background-color: #333333;
}

.apci_modal_copy_btn:disabled,
.apci_modal_copy_btn[disabled] {
  background-color: #cccccc !important;
  color: #888888 !important;
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}

#shareStatusMessage {
  font-family: "NeueHaas", sans-serif;
  font-size: 14px;
  margin-top: 12px;
  color: #2e7d32;
  font-weight: 400;
}

/* apci calculator area */
.calculator_wrapper {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.calculator_header {
  display: flex;
  justify-content: space-between;
  background: #f5f3f1;
  padding: 34px 80px;
}

.calculator_title {
  font-size: 24px;
  font-weight: 400;
  color: #1c1c1c;
  align-content: center;
  line-height: 1;
}

.calculator_size {
  display: flex;
}

.calculator_size p {
  font-size: 18px;
  font-weight: 400;
  color: #1c1c1c;
}

.calculator_size p span {
  font-size: 18px;
  font-weight: 400;
  color: #1c1c1c;
  margin: 0;
}

.calculator_size span {
  font-size: 18px;
  font-weight: 400;
  color: #1c1c1c;
  margin: 0 10px;
}

.calculator_body {
  padding: 0 10px 10px 10px;
  background-color: #f5f3f1;
}

.calculator_form {
  padding: 65px;
  background-color: #ffffff;
  border-radius: 15px;
}

#calculatorForm input[type="password"],
#calculatorForm input[type="email"],
#calculatorForm input[type="text"],
#calculatorForm input[type="file"],
#calculatorForm textarea {
  border: none !important;
  border-bottom: 1px solid #dddddd !important;
  margin-bottom: 40px;
  padding-left: 0;
  color: #666;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-left: 5px;
  margin-right: 5px;
}

#calculatorForm select {
  border: none !important;
  border-bottom: 1px solid #dddddd !important;
  margin-bottom: 40px;
  padding-left: 0;
  width: 100%;
  color: #666666 !important;
  font-size: 16px !important;
}

#calculatorForm select:focus {
  border: none;
  box-shadow: none;
  outline: none;
}

#calculatorForm input::placeholder,
#calculatorForm textarea::placeholder {
  color: #666666;
  font-size: 16px;
}

#calculatorForm select option[disabled] {
  color: #666666 !important;
  font-size: 16px !important;
}

.calculator_form_btn button {
  color: #f5f3f1;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.15em;
  display: inline-flex;
  gap: 30px;
  align-items: center;
  padding: 13px 24px;
  border: 1px solid #3e3e3e;
  background-color: #1c1c1c;
  text-transform: uppercase;
}

.calculator_result_area {
  display: block;
  position: relative;
  margin-top: 60px;
}

.calculator_required_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f5f3f1;
  border-radius: 12px 12px 0 0;
  padding: 25px 100px;
  margin-bottom: 3px;
}

.calculator_covered_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f5f3f1;
  border-radius: 0 0 12px 12px;
  padding: 25px 100px;
}

.calculator_required_title,
.calculator_covered_title {
  flex: 1;
}

.calculator_required_tiles_count_area,
.calculator_covered_sqm_count_area {
  flex: 0 0 350px;
  display: flex;
  /* justify-content: center; */
  align-items: baseline;
  gap: 12px;
}

.calculator_required_boxes_count_area,
.calculator_covered_sqft_count_area {
  flex: 0 0 175px;
  display: flex;
  /* justify-content: center; */
  align-items: baseline;
  gap: 12px;
}

.calculator_required_tiles_count_area .tiles_count,
.calculator_required_boxes_count_area .boxes_count,
.calculator_covered_sqm_count_area .sqm_count,
.calculator_covered_sqft_count_area .sqft_count {
  font-weight: 400;
  font-style: normal;
  font-size: 64px;
  line-height: 75%;
  letter-spacing: 0%;
  color: #000000;
}

.calculator_required_title p,
.calculator_required_tiles_count_area p,
.calculator_required_boxes_count_area p,
.calculator_covered_title p,
.calculator_covered_sqm_count_area p,
.calculator_covered_sqft_count_area p {
  font-weight: 400;
  font-style: normal;
  line-height: 120%;
  letter-spacing: 0%;
  color: #1c1c1c;
}

/* packing details */

.packing_details_wrapper {
  background: #f5f3f1;
  padding: 0 10px 10px 10px;
}

.packing_details_main_wrapper {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.packing_details_bg {
  width: 100%;
  border-radius: 20px;
  overflow-x: auto;
}

.packing_details_wrapper table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.packing_details_wrapper thead {
  background-color: #f5f3f1;
}

.packing_details_wrapper th {
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #1c1c1c;
  text-transform: uppercase;
  text-align: center;
  padding: 30px;
  letter-spacing: 0.05em;
}

.packing_details_wrapper td {
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0%;
  background-color: #ffffff;
  color: #666666;
  text-align: center;
  padding: 24px 15px;
  vertical-align: middle;
  border-bottom: 1px solid #f5f3f1;
  border-right: 1px solid #f5f3f1;
}

/* Border setups for a clean grid card inside the beige wrapper */
.packing_details_wrapper tr td:first-child {
  border-left: 1px solid #f5f3f1;
}

.packing_details_wrapper tr:first-child td {
  border-top: 1px solid #f5f3f1;
}

/* Rounded corners for tbody container */
.packing_details_wrapper tr:first-child td:first-child {
  border-top-left-radius: 10px;
}

.packing_details_wrapper tr:first-child td:last-child {
  border-top-right-radius: 10px;
}

.packing_details_wrapper tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

.packing_details_wrapper tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

.apci_blog_left_form_wrapper {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.table_of_content_header {
  display: block;
  position: relative;
  background: #f5f3f1;
  padding: 24px 40px;
}

.table_of_content_header h4 {
  color: #1c1c1c;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 0;
  font-size: 24px;
}

.table_of_content_points_area {
  padding: 0 10px 10px 10px;
  background-color: #f5f3f1;
}

.apci_blogdetails_points_area {
  background-color: #fff;
  padding: 25px;
  border-radius: 15px;
}

.apci_blogdetails_points_area ul {
  padding-left: 0;
  margin: 0;
}

.apci_blogdetails_points_area ul li a {
  color: #666;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 0;
  font-size: 16px;
}

.apci_blogdetails_points_area ul li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
}

.apci_blogdetails_points_area ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.pl-80 {
  padding-left: 80px;
}

.blog_details_main_thumbnail_image_area {
  display: block;
  position: relative;
  margin-bottom: 40px;
  border-radius: 20px;
  overflow: hidden;
}

.blog_details_main_thumbnail_image_area img {
  max-width: 100%;
  width: 100%;
}

.blog_insider_details_area a {
  color: #D24C0A;
}

.apci_share_left_form_wrapper {
  margin-top: 20px;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.share_link_social_header {
  display: block;
  position: relative;
  background: #f5f3f1;
  padding: 24px 40px;
}

.share_link_social_header h4 {
  color: #1c1c1c;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 0;
  font-size: 24px;
}

.share-wrap {
  padding: 0 10px 10px 10px;
  background-color: #f5f3f1;
  max-width: 100%;
}

.apci_share_wrap_bg_area {
  background-color: #fff;
  padding: 25px;
  border-radius: 15px;
}

.apci_share_wrap_bg_area ul {
  padding-left: 0;
  margin: 0;
}


/* UL: flex row, no wrap */
.share-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  /* always in one line */
  width: 100%;
  gap: 5px;
}

.share-item {
  flex: 1 1 0;
  /* each takes equal width */
  gap: 5px;
}

.share-btn {
  display: grid;
  place-items: center;
  width: 100%;
  /* stretch to fill */
  aspect-ratio: 1.4/1;
  /* keeps box shape */
  background: #f5f3f1;
  color: var(--text);
  border: 1px solid #eee;
  border-radius: 8px;
  text-decoration: none;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .15s ease;
}

.share-btn i {
  font-size: clamp(18px, 4vw, 20px);
  line-height: 1;
}

.share-btn:hover {
  transform: translateY(-2px);
}

/* Brand hover colors */
.x:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.facebook:hover {
  background: #1877F2;
  color: #ffffff;
  border-color: #1877F2;
}

.linkedin:hover {
  background: #0A66C2;
  color: #ffffff;
  border-color: #0A66C2;
}

.whatsapp:hover {
  background: #25D366;
  color: #0b1b0f;
  border-color: #25D366;
}

.link:hover {
  background: #6c757d;
  color: #ffffff;
  border-color: #6c757d;
}

.blog_leftside_info_panel {
  position: sticky;
  top: 20px;
  align-self: flex-start;
}

/* Make packing details table fit on screens > 1024px without horizontal scroll */
@media screen and (min-width: 1025px) {
  .packing_details_wrapper th {
    padding: 8px 3px;
    font-size: 10px;
    letter-spacing: 0.01em;
    line-height: 1.1;
  }

  .packing_details_wrapper td {
    padding: 8px 3px;
    font-size: 11px;
  }
}

@media screen and (min-width: 1200px) {
  .packing_details_wrapper th {
    padding: 10px 5px;
    font-size: 11px;
    line-height: 1.2;
  }

  .packing_details_wrapper td {
    padding: 10px 5px;
    font-size: 12px;
  }
}

@media screen and (min-width: 1400px) {
  .packing_details_wrapper th {
    padding: 12px 8px;
    font-size: 13px;
    line-height: 1.2;
  }

  .packing_details_wrapper td {
    padding: 12px 8px;
    font-size: 13px;
  }
}

@media screen and (min-width: 1600px) {
  .packing_details_wrapper th {
    padding: 18px 10px;
    font-size: 15px;
    line-height: 1.2;
  }

  .packing_details_wrapper td {
    padding: 16px 10px;
    font-size: 14px;
  }
}

@media screen and (min-width: 1800px) {
  .packing_details_wrapper th {
    padding: 24px 15px;
    font-size: 14px;
    line-height: 100%;
  }

  .packing_details_wrapper td {
    padding: 20px 15px;
    font-size: 17px;
  }
}

/* ============================================================
   APCI Inquiry Modal — exact match to reference image
   ============================================================ */
.apci_inquiry_modal .modal-dialog {
  max-width: 700px;
}

.apci_inquiry_modal .modal-content {
  background: #f5f3f1;
  border-radius: 20px;
  padding: 30px 10px 10px 10px;
}

.apci_inquiry_modal .aim_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 30px 30px 30px;
}

.apci_inquiry_modal .aim_title {
  color: #1c1c1c;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 0;
  font-size: 24px;
}

.apci_inquiry_modal .aim_close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  color: #000;
  font-size: 22px;
  transition: color 0.2s;
}

.apci_inquiry_modal .aim_close:hover {
  color: #111;
}

.apci_inquiry_modal .aim_form_card {
  background: #fff;
  border-radius: 10px;
  padding: 30px 30px 28px 30px;
}

.apci_inquiry_modal .modal-header,
.apci_inquiry_modal .modal-body {
  padding: 0;
  border: none;
  background: transparent;
}

.apci_inquiry_form_area .form-group {
  margin-bottom: 22px;
}

.apci_inquiry_form_area .form-row {
  display: flex;
  gap: 28px;
}

.apci_inquiry_form_area .form-row .form-group {
  flex: 1;
}

.apci_inquiry_form_area input,
.apci_inquiry_form_area select,
.apci_inquiry_form_area textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #eee;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: #111;
  padding: 10px 0;
  border-radius: 0;
  transition: border-color 0.2s;
  font-family: inherit;
  box-shadow: none;
}

.apci_inquiry_form_area input:focus,
.apci_inquiry_form_area select:focus,
.apci_inquiry_form_area textarea:focus {
  border-bottom-color: #111;
  outline: none;
  box-shadow: none;
}

.apci_inquiry_form_area input::placeholder,
.apci_inquiry_form_area textarea::placeholder {
  color: #888;
  font-size: 14px;
}

.apci_inquiry_form_area select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  color: #888;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.apci_inquiry_form_area select.selected-value {
  color: #111;
}

.apci_inquiry_form_area textarea {
  resize: none;
  min-height: 100px;
}

.apci_inquiry_form_area input.input-error,
.apci_inquiry_form_area textarea.input-error {
  border-bottom: 1px dashed red !important;
}

.apci_inquiry_form_area input.input-error::placeholder,
.apci_inquiry_form_area textarea.input-error::placeholder {
  color: red;
  opacity: 1;
}

.apci_inquiry_form_area input.input-error::-moz-placeholder,
.apci_inquiry_form_area textarea.input-error::-moz-placeholder {
  color: red;
}

.apci_inquiry_form_area input.input-error:-ms-input-placeholder,
.apci_inquiry_form_area textarea.input-error:-ms-input-placeholder {
  color: red;
}

.apci_inquiry_form_area input.input-error::-ms-input-placeholder,
.apci_inquiry_form_area textarea.input-error::-ms-input-placeholder {
  color: red;
}

.apci_inquiry_form_area select.input-error {
  color: red !important;
  border-bottom: 1px dashed red !important;
}

.apci_inquiry_form_area .contact_form_content_btn .submitbtn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #111;
  color: #fff;
  border: none;
  padding: 16px 32px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  margin-top: 10px;
}

.apci_inquiry_form_area .contact_form_content_btn .submitbtn:hover {
  background: #333;
}

.apci_inquiry_form_area .contact_form_content_btn .submitbtn img {
  width: 18px;
}

.apci_inquiry_form_area .contact_form_content_btn .submitbtn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.apci_inquiry_alert {
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 0;
}

/* --------------------------------------------
E-Catalogue page design start
-----------------------------------------------*/
.apci_ecatlogue_area {
  display: block;
  position: relative;
}

.apci_ecatlogue_single_item_area {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.apci_ecatlogue_content_area {
  background: #f5f3f1;
  padding: 25px 30px;
  border-radius: 20px 20px 0px 0px;
}

.apci_ecatlogue_content_area h4 {
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0%;
  margin-bottom: 0;
  color: #1C1C1C;
}

.apci_ecatlogue_body_area {
  padding: 0 10px 10px 10px;
  background-color: #f5f3f1;
}

.apci_ecatlogue_image_area {
  width: 100%;
  overflow: hidden;
}

.apci_ecatlogue_download_btn_area {
  display: block;
  position: relative;
  margin-top: 20px;
}

.apci_ecatlogue_download_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: #ffffff;
  padding: 15px;
  text-transform: uppercase;
  width: 100%;
  border: 2px solid rgba(245, 243, 241, 1);
  border-radius: 8px;
}

.apci_ecatlogue_download_btn .apci_ecatlogue_download_btn_text {
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 20%;
  color: #1C1C1C;
}

.apci_ecatlogue_download_btn .apci_ecatlogue_download_btn_icon img {
  width: 14px;
  height: 14px;
}

.apci_ecatlogue_image_area img {
  width: 100%;
}


.phone-input-group {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  margin-bottom: 30px;
}

.phone-input-group select,
.phone-input-group .select2-container {
  flex: 0 0 110px !important;
  margin-bottom: 0 !important;
}

.phone-input-group input {
  flex: 1;
  margin-bottom: 0 !important;
}

/* Override Select2 default styling to match the site's form theme */
#inquiryForm .select2-container--default .select2-selection--single,
#modalInquiryForm .select2-container--default .select2-selection--single {
  /* background-color: transparent !important; */
  border: none !important;
  border-bottom: 1px dashed #cccccc !important;
  border-radius: 0 !important;
  height: auto !important;
  padding: 0 0 5px 0 !important;
  outline: none !important;
  box-shadow: none !important;
  margin-bottom: 30px;
}

.select2-container--default .select2-dropdown {
  background-color: #ffffff !important;
  border: 1px solid #cccccc !important;
  z-index: 9999 !important;
}

#inquiryForm .phone-input-group .select2-container--default .select2-selection--single,
#modalInquiryForm .phone-input-group .select2-container--default .select2-selection--single {
  margin-bottom: 0 !important;
}

#inquiryForm .select2-container--default .select2-selection--single .select2-selection__rendered,
#modalInquiryForm .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 5px !important;
  color: #666 !important;
  font-size: 16px !important;
  font-weight: 400;
  display: flex;
  align-items: center;
}

/* dropdown options styling */
.select2-container--default .select2-results__option {
  font-size: 16px !important;
  color: #666 !important;
}

.select2-container--default .select2-results__option--highlighted {
  background-color: #f0f0f0 !important;
  color: #333 !important;
}

#inquiryForm .select2-container--default .select2-selection--single .select2-selection__arrow,
#modalInquiryForm .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100% !important;
  right: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}