/* - - - - - [Start] G E N E R A L Setting Style - - - - -  */
/* #region */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  position: relative;
  font-family: 'Kanit', sans-serif;
  line-height: 1.5;
  background: #f9f9f9;
  color: #292929;
  z-index: 0;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/assets/images/86390.jpg')  center center;
  background-size: cover;
  z-index: -1;
  opacity: 0.04;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}
h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem 0;
  line-height: 1.3;
}
h3 {
  font-size: 1.75rem;
  font-weight: 500;
  margin: 1.25rem 0 0.75rem 0;
  line-height: 1.3;
}
h4 {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 1rem 0 0.5rem 0;
  line-height: 1.4;
}
h5 {
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0.75rem 0 0.5rem 0;
  line-height: 1.4;
}
p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 1rem 0;
  color: #333;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul, ol {
  list-style: none;
}
input, button, textarea, select {
  font: inherit;
}
button {
  border: none;
  background: none;
  cursor: pointer;
}
table {
  border-collapse: collapse;
  width: 100%;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.5s ease;
}
.cement-truck-animation img {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
}
.cement-truck-animation .pouring {
  width: 20px;
  height: 100px;
  animation: pour 2s infinite ease-in-out;
  margin: 0 auto;
  border-radius: 5px;
}
@keyframes pour {
  0% { height: 0; opacity: 0.2; }
  50% { height: 80px; opacity: 1; }
  100% { height: 0; opacity: 0.2; }
}
.cement-truck-animation p {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-top: 0px;
}


/* animation */

.my-custom-animation {
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.my-custom-animation.start-animation {
    animation: fadeInUp 1s ease-in-out forwards;
}


.fadeInLeft-animation {
    opacity: 0;
    transform: translateX(-20px); 
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInLeft-animation.start-animation {
    animation: fadeInLeft 1s ease-in-out forwards;
}


.fadeInRight-animation {
    opacity: 0;
    transform: translateX(20px); 
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInRight-animation.start-animation {
    animation: fadeInRight 1s ease-in-out forwards;
}


.zoomIn-animation {
    opacity: 0;
    transform: scale(0.8); 
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.zoomIn-animation.start-animation {
    animation: zoomIn 1s ease-in-out forwards;
}


.fadeInDown-animation {
    opacity: 0;
    transform: translateY(-20px);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInDown-animation.start-animation {
    animation: fadeInDown 1s ease-in-out forwards;
}


.fadeInUpBig-animation {
    opacity: 0;
    transform: translateY(100px);
}

@keyframes fadeInUpBig {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUpBig-animation.start-animation {
    animation: fadeInUpBig 1s ease-in-out forwards;
}


.fadeIn-animation {
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fadeIn-animation.start-animation {
    animation: fadeIn 1s ease-in-out forwards;
}

/* #endregion */
/* = = = = = [End] G E N E R A L Setting = = = = = */

/* ====== [Start] F I X E D B O X SECTION ============ */
/* #region */

.fixed-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px; 
}
.messenger-btn-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.messenger-btn {
    width: 50px;
    height: 50px;
    background-color: #007bff;
    color: white;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    font-size: 24px;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}
.messenger-btn:hover {
    transform: scale(1.1);
}
.facebook-id-popup {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 60px;
    background-color: #007bff;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    white-space: nowrap;
    transition: visibility 0.3s, opacity 0.3s ease;
    font-size: 14px;
    cursor: pointer;
}
.messenger-btn-wrapper:hover .facebook-id-popup {
    visibility: visible;
    opacity: 1;
}
.line-btn-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.line-btn {
    width: 50px;
    height: 50px;
    background-color: #06c755;
    color: white;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    font-size: 24px;
    transition: transform 0.3s ease;
}
.line-btn:hover {
    transform: scale(1.1);
}
.line-id-popup {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 60px; 
    background-color: #06c755;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    white-space: nowrap;
    transition: visibility 0.3s, opacity 0.3s ease;
    font-size: 14px;
}
.line-id-popup {
    cursor: pointer; 
}
.line-btn-wrapper:hover .line-id-popup {
    visibility: visible;
    opacity: 1;
}
.to-heaven-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #b40000, #ff4d4d);
    color: white;
    font-size: 24px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: none; /* เริ่มต้นซ่อนไว้ */
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.to-heaven-btn:hover {
    transform: translateY(-5px);
    opacity: 0.9;
}
/* #endregion */
/* = = = = = [End] F I X E D B O X SECTION = = = = = */

/* - - - - - [Start] D E S K T O P Show Style - - - - -  */
/* #region */
.desktop-showing {
  /* background-color: rgb(244, 244, 244); */
  display: flex;
  flex-direction: column;
}
/* #endregion */
/* = = = = = [End] D E S K T O P Show Style = = = = = */

/* - - - - - [Start] P R O M O T I O N   P O P U P - - - - -  */
/* #region */

.promotion-popup-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.promotion-popup-image-only {
    position: relative;
    width: 40%;
    max-width: 1200px;
    height: auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    animation: popup-enter 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}

@keyframes popup-enter {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.promotion-popup-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 2rem;
    line-height: 1;
    color: #333;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.2s ease;
}

.promotion-popup-close-btn:hover {
    background-color: #e74c3c;
    color: white;
}

.promotion-image-group {
    display: flex;
    flex-direction: row;
}
.promotion-image {
    display: block;
    /* width: 50%; */
    height: auto;
}

.promotion-image-link {
    display: block;
    line-height: 0; 
}

@media (min-width: 481px) and (max-width: 1024px) {
    .promotion-popup-image-only {
        position: relative;
        width: 80%;
        max-width: 1200px;
        height: auto;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        overflow: hidden;
        animation: popup-enter 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
    }
}

@media (max-width: 600px) {
    .promotion-popup-image-only {
        width: 95%;
        max-width: 600px;
    }
    .promotion-popup-close-btn {
        width: 30px;
        height: 30px;
        font-size: 1.5rem;
        top: 5px;
        right: 5px;
    }
    .promotion-image {
        width: 100%;
    }
    .promotion-image-group {
        flex-direction: column;
    }
}

/* #endregion */
/* = = = = = [End] P R O M O T I O N   P O P U P = = = = = */

/* - - - - - [Start] R E D L I N E section - - - - -  */
/* #region */
.section-red-line {
  background: linear-gradient(to left, #ff1313,#ff1313, #8f0000);
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px;
}
.header-section-red-line {
  background: linear-gradient(to left, #d70000,#8f0000);
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px;
}
/* #endregion */
/* = = = = = [End] R E D L I N E section = = = = = */

/* ====== [Start] A B O V E content ======== */
/* #region */
.above-content {
  background-color: rgb(244, 244, 244);
  color: #9f0000;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.lci-above-group1 {
  text-align: left;
  padding-left: 20px;
}
.logoLCI {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.img-logoLCI img {
  width: 40px;
}
.titlename-logoLCI h3 {
  font-size: 1.5rem;
}
.lci-above-group2 {
  display: flex;
  text-align: right;
  padding-right:20px ;
}
.detailLCI {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.telLCI {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
.socialLCI {
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
  padding-left: 15px;
}
.tel-item, .social-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.tel-item i, .social-item i {
  font-size: 0.85rem;
}
.social-item h5 {
  font-size: 0.85rem;
}
.LCIlocatation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 15px;
}
.lcilocate {
  display: flex;
}
.lcilocate h5 {
  font-size: 0.85rem;
  margin-bottom: 5px;
  line-height: 1.4;
}
.lcilocate a.gps-button {
  font-size: 1rem;
  padding: 6px 12px;
}
.lcilocate a:hover {
  color: #410000;
  font-size: 1.3rem;
  font-weight: 600;
}
/* #endregion */
/* = = = = = [End] A B O V E content = = = = = */

/* - - - - - [Start] N A V I G A T I O N- - - - - */
/* #region */
.header-fixed-position {
    width: 100%;
    position: fixed;
    top: 0; /* Ensure it's fixed to the top */
    left: 0; /* Ensure it starts from the left */
    z-index: 1000; /* Higher z-index to be on top of other content */
}

.NavOfPoonSingtoolayout {
    background: linear-gradient(to right, #d70000, #5a0000);
    font-family: 'Kanit', sans-serif;
    display: flex; /* Use flex on this container */
    align-items: center;
    justify-content: space-between; /* Space out nav-header-mobile-wrapper and nav-list */
    padding: 0 20px;
    height: 8vh;
    min-height: 50px; /* Add a min-height to ensure visibility on very small screens */
}

/* New: Main navigation container for flex properties */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* Ensure it takes full width of parent */
}

/* New: Wrapper for logo and hamburger on mobile */
.nav-header-mobile-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space between logo and hamburger */
    width: auto; /* Default for desktop */
}

.nav-lci-above-group1 {
    display: flex;
    align-items: center;
}

.nav-logoLCI {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-img-logoLCI img {
    width: 40px;
    height: auto;
}

.nav-titlename-logoLCI h3 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-list li {
    position: relative;
}

.nav-list a {
    display: block;
    padding: 14px 20px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.nav-list a:hover {
    background-color: #bc1a1a;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #730202;
    min-width: 160px;
    z-index: 1000;
}

.dropdown-menu li a {
    padding: 12px 16px;
    color: white;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background-color: #a01616;
}

/* Hamburger Menu (Hidden by default on Desktop) */
.hamburger-menu {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1100; /* Ensure hamburger is above other elements */
}

.hamburger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: #fff; /* White bars for red background */
    margin: 4px 0;
    transition: 0.4s;
}

/* --- Responsive Adjustments for Mobile --- */
@media (max-width: 768px) {
    .NavOfPoonSingtoolayout {
        height: auto; /* Height adapts to content when menu is open */
        flex-direction: column; /* Stack vertically */
        align-items: flex-start; /* Align logo and menu to the start */
        padding: 10px 20px;
    }

    .main-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-header-mobile-wrapper {
        width: 100%; /* Take full width on mobile */
        justify-content: space-between; /* Space out logo and hamburger */
        align-items: center;
        min-height: 50px; 
    }

    .hamburger-menu {
        display: flex; /* Show hamburger on mobile */
    }

    .nav-list {
        display: none; /* Hide nav list by default on mobile */
        flex-direction: column;
        width: 100%;
        text-align: center;
        background-color: #630101; /* Darker red for mobile menu background */
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 10px;
        padding-bottom: 10px; /* Add some bottom padding */
    }

    .nav-list.active {
        display: flex; /* Show nav list when active */
    }

    .nav-list li {
        margin: 10px 0; /* Space between list items */
        width: 100%; /* Full width for list items */
    }

    .nav-list a {
        font-size: 1.1rem;
        padding: 12px 0; /* Adjust padding for mobile links */
        display: block; /* Make links block level for better touch area */
        width: 100%; /* Make link take full width of li */
    }

    .nav-list a:hover {
        background-color: #a01616; /* Mobile hover color */
    }

    /* Hide dropdowns on mobile to simplify menu, or style them for mobile */
    .nav-list .dropdown-menu {
        position: static; /* Remove absolute positioning */
        background-color: transparent; /* No background for sub-menu */
        box-shadow: none;
        width: auto;
        padding: 0;
        margin-top: 5px;
        display: none; /* Keep hidden, will require JS to toggle for mobile dropdowns */
    }

    .nav-list .dropdown-menu li a {
        padding: 8px 16px; /* Adjust padding for dropdown items */
        font-size: 1rem;
        background-color: rgba(255, 255, 255, 0.1); /* Slight background for sub-items */
    }
    .nav-list .dropdown-menu li a:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}
/* #endregion */
/* = = = = = [End] N A V I G A T I O N = = = = = */

/* ====== [Start] H E A D E R  Content ====== */
/* #region */
.header-title-page {
  width: 100%;
  padding: 20px;
  justify-items: center;
}
.header-title-page-title {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #ff0000;
}
.header-title-page-title  h1 {
   font-size: 3.8rem; 
}
.header-title-page-title  p {
   font-size: 1.8rem;
   font-weight: 500;
   color: #3a3a3a; 
}






.ps-main-header {
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
    padding-top: 0;
    height: 80vh;
}

.ps-header-desktop {
    position: relative;
    color: #fff;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.ps-banner-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* แก้จาก 75vh เป็น 100% */
    z-index: 1;
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.ps-banner-imagepc {
    width: 100%;
    height: 100%;
    object-fit: cover;          /* เติมเต็มกล่องโดยไม่บีบภาพ */
    object-position: center;    /* โฟกัสกลางภาพ */
    filter: brightness(0.8);
    display: block;
    min-width: 1000px;          /* ป้องกันการบีบภาพในหน้าจอแคบมาก */
}





.ps-banner-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    z-index: 3;
    padding: 0 10%;
    box-sizing: border-box;
}

.ps-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px #000;
}
.ps-title2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px #000;
}
.ps-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.ps-btn-group {
    display: flex;
    gap: 1rem;
}

.ps-btn {
    background-color: #aa0101;
    color: #fff;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s ease;
}

.ps-btn:hover {
    background-color: #dcdcdc;
    color: #d70000;
}

.ps-btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.ps-btn-secondary:hover {
    background: linear-gradient(to left, #d70000, #8f0000);
    color: #fff;
}

.wave-desktop,
.wave-tablet,
.wave-mobile {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.wave-desktop svg,
.wave-tablet svg,
.wave-mobile svg {
    display: block;
    width: 100%;
    height: 120px;
}

@media (min-width: 1025px) {
    .ps-header-desktop {
        height: 100%;
    }

    .ps-header-title-area {
        background: linear-gradient(to right, rgba(215, 0, 0, 0.7), rgba(90, 0, 0, 0.7));
        position: absolute;
        top: 0;
        left: 0;
        width: 40%;
        height: 100%;
        z-index: 2;
        clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
        padding-right: 15%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
}


/* Hidden elements from previous code, consider removing if not used */
.ps-top-section,
.ps-top-banner,
.ps-header-tablet{
    display: none;
}
.ps-banner-overlay-product { 
    display: none;
}



/* #endregion */
/* = = = = = [End]  H E A D E R  Content = = = = = */

/* ===== [Start] A B O U T Overlay Layout ===== */
/* #region */
.home-about-section {
  /* background-color: #f9f9f9; */
  background-color: transparent;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}
.h-a-container {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.home-about-text-box {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 40px;
  width: 600px;
  height: auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  z-index: 2;
  position: relative;
  margin-right: -100px; 
}
.home-about-img {
  z-index: 1;
}
.home-about-img img {
  width: 650px;
  height: auto;
  display: block;
}
.home-about-text-box h2 {
  font-size: 28px;
  color: #d70000;
  margin-bottom: 15px;
}
.home-about-text-box p {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
}
.home-about-btn {
  display: inline-block;
  padding: 10px 22px;
  background: linear-gradient(to right, #d70000, #8f0000);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}
.home-about-btn:hover {
  background: linear-gradient(to left, #d70000, #8f0000);
  transform: scale(1.05);
}
.home-about-btn2 {
  display: inline-block;
  padding: 10px 22px;
  background-color: transparent;
  border: 1px solid red;
  color: red;  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}
.home-about-btn2:hover {
  background-color: transparent;
  border: 1px solid red;
  color: red;
  transform: scale(1.05);
}
.home-a-social {
  padding: 10px;
}
.home-a-socialLCI {
  display: flex;
  flex-direction: row;
  gap: 1.3rem;
  padding-left: 15px;
}
.home-a-tel-item, .home-a-social-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.home-a-tel-item i, .home-a-social-item i {
  font-size: 1.5rem;
}
.home-a-social-item h5 {
  font-size: 0.85rem;
}
.home-a-social-item h5 {
  display: none;
  transition: all 0.3s ease;
}

.home-a-social-item i:hover + h5 {
  display: inline-block;
}
/* #endregion */
/* = = = = = [End] A B O U T Overlay Layout = = = = = */

/* ===== [Start] P R O D U C T S preview ====== */
/* #region */

.home-product-showcase {
  width: 100%;
  background: #ffffff;
  padding: 80px 0;
}
.home-product-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.home-section-title {
  color: #c00000;
  font-size: 2.8em;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}
.home-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  width: 100%;
}
.home-product-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.home-product-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top; 
}
.home-product-info {
  padding: 16px;
  text-align: center;
}
.home-product-title {
  font-size: 1.2em;
  margin-bottom: 5px;
  color: #333;
}
.home-product-detail {
  color: #555;
  font-size: 0.95em;
  margin-bottom: 8px;
}
.home-product-location {
  font-size: 1rem;
  color: #888;
  margin-bottom: 10px;
}
.home-buy-btn {
  background: linear-gradient(to right, #d70000, #8f0000);
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
  width: 100%;
}
.home-buy-btn:hover {
  background-color: #c62828;
}




/* Home product popup detail */
body.no-scroll {
    overflow: hidden; 
}
.home-product-popup-detail {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.7);
    padding: 20px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.home-product-popup-detail.is-visible {
    opacity: 1;
    visibility: visible;
}
.hppd-box {
    background: #ffffff;
    border-radius: 16px;
    max-width: 1200px;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2); 
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column; 
}
.hppd-close-button {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #888;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}
.hppd-close-button:hover {
    color: #333;
}
.hppd-content {
    display: flex;
    flex-direction: column;
    gap: 3rem; 
    padding: 40px;
    flex-grow: 1;
}
.hppd-con-box {
    display: flex;
    flex-direction: row;
    
}
.hppd-image-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.hppd-main-image-container {
    padding-bottom: 75%; 
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
}
.hppd-image-section {
  display: flex;
  justify-items: center;
  padding: 25px;
  gap: 2rem;

}
.hppd-main-image {
    position: absolute;
    top: 0;
    left: 5px;
    width: auto;
    height: 100%;
    object-fit: cover; 
    border-radius: 10px;
}
.hppd-thumbnail-container {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}
.hppd-thumbnail-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}
.hppd-thumbnail-image:hover {
    border-color: #007bff; 
}
.hppd-details-section {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}
.product-description-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
}
.hppd-info-box, .hppd-feature-box, .hppd-detail-box, .hppd-standard-box {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}
.hppd-info-box, .hppd-feature-box {
    background-image: url(#diagonal-lines);
    background-size: 10px 10px; 
}
.box-title {
    font-size: 1.5rem;
    color: #333;
    margin-top: 0;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}
.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1rem;
}

.info-label {
    font-weight: 600;
    color: #555;
}

.info-value {
    color: #333;
}

.feature-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.5;
}
.feature-list li::before {
    content: '•'; 
    color: #007bff;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
}

.detail-text {
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.standard-icons {
    display: flex;
    gap: 15px;
}
.standard-icon {
    height: 50px;
    object-fit: contain;
}


/* --- Styles for Image Zoom Popup --- */
.image-zoom-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000; 
    visibility: hidden;
    opacity: 0; 
    transition: visibility 0s, opacity 0.3s ease; 
}
.image-zoom-popup.is-visible {
    visibility: visible;
    opacity: 1;
}
.image-zoom-content {
    position: relative;
    max-width: 90%; 
    max-height: 90%;
    background-color: #fff; 
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}
.zoomed-image {
    max-width: 100%;
    max-height: 80vh; 
    display: block;
    object-fit: contain;
}
.image-zoom-close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    color: #333;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
    z-index: 10001;
}
.image-zoom-close-button:hover {
    color: #ff0000;
}
body.no-scroll {
    overflow: hidden;
}




/* Responsive Design */
@media (max-width: 1024px) {
    .hppd-content {
        flex-direction: column;
        padding: 20px;
        gap: 2rem;
    }
}


/* #endregion */
/* = = = = = [End] P R O D U C T S preview  = = = = = */

/* ====== [Start] S T A N D A R D section ============ */
/* #region */

/* --- Standard Section Styles --- */
.home-standard-section {
    padding: 80px 0;
    /* background-color: #f9f9f9; */
    background-color: transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.home-standard-section .home-std-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.home-std-section-title {
    font-size: 2.8em;
    color: rgb(192, 0, 0);
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

.home-std-section-subtitle {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.home-std-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}


.home-std-capability-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.327);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; 
    position: relative;
    z-index: 1; 
}

.home-std-capability-card::before {
    content: '';
    position: absolute;
    top: -50px; 
    left: -50px;
    width: 200px;
    height: 200px;
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="redGradientCard" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23FF6B6B;stop-opacity:0.2" /><stop offset="100%" style="stop-color:%23FF0000;stop-opacity:0.2" /></linearGradient></defs><circle cx="25" cy="25" r="15" fill="url(%23redGradientCard)" /><circle cx="75" cy="75" r="15" fill="url(%23redGradientCard)" /></svg>') no-repeat;
    background-size: contain;
    opacity: 0.1; 
    z-index: -1; 
    transition: opacity 0.3s ease;
}


.home-std-capability-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.home-std-capability-card:hover::before {
    opacity: 0.2;
}

.home-std-card-icon {
    width: 130px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFF0F0;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.home-std-capability-card:hover .card-icon {
    background-color: #FFEDED; 
}

.home-std-card-icon svg {
    width: 50px;
    height: 50px;
}

.home-std-card-title {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.home-std-card-description {
    font-size: 1em;
    color: #777;
    line-height: 1.6;
}






/* popup standard */
.standard-popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
    padding: 20px; 
    box-sizing: border-box;
}
.standard-popup-modal.is-visible {
    visibility: visible;
    opacity: 1;
}
.standard-popup-content {
    background-color: #ffffff;
    border-radius: 20px; 
    padding: 30px; 
    width: 100%;
    max-width: 800px; 
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); 
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    text-align: left;
    max-height: 90vh;
    overflow-y: auto;
    box-sizing: border-box;
}
.standard-popup-modal.is-visible .standard-popup-content {
    transform: scale(1);
}
.standard-popup-close-btn {
    position: absolute;
    top: 20px;
    right: 20px; 
    background: none;
    border: none;
    font-size: 4em; 
    color: #999; 
    cursor: pointer;
    line-height: 1;
    padding: 5px;
    transition: color 0.2s ease, transform 0.2s ease;
}
.standard-popup-close-btn:hover {
    color: #e74c3c;
    transform: rotate(90deg) scale(1.1);
}
.standard-popup-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}
.standard-popup-header-img {
    width: 100px;
    height: 100px; 
    object-fit: contain;
    border-radius: 10px;
}

.standard-popup-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #333; 
    margin: 0;
    line-height: 1.2;
}

.standard-popup-body {
    font-size: 1.1em; 
    line-height: 1.8; 
    color: #555;
}

.standard-popup-body p {
    margin-bottom: 15px;
}

.standard-popup-body-details {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.standard-popup-body-details > p { 
    font-size: 1.2em;
    font-weight: 600;
    color: #e74c3c; 
    margin-bottom: 15px;
}

.standard-popup-body-details-groupitems {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 25px; 
}

.standard-popup-body-details-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
}

.standard-popup-body-details-item div:first-child p {
    margin-bottom: 10px;
}

.standard-popup-body-details-item ul {
    list-style: none; 
    padding: 0;
    margin: 0;
}

.standard-popup-body-details-item li {
    color: #e74c3c; 
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px; 
}

.standard-popup-body-details-item li::before {
    content: '\2022'; 
    color: #e74c3c; 
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}

.standard-popup-body-details-item div:last-child p {
    font-size: 0.9em;
    color: #666;
    line-height: 1.6;
}

.standard-popup-image {
    width: 100%;
    padding: 0; 
    margin-top: 20px;
    text-align: center;
}

.standard-popup-image img {
    margin-top: 70px;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


/* #endregion */
/* = = = = = [End] S T A N D A R D section = = = = = */

/* ====== [Start] L C I - T H News ============ */
/* #region */

.home-lcinews-section {
    position: relative;
    padding: 60px 0;
    background-color: rgb(255, 255, 255);
}
.home-ns-box.red {
    background:
        linear-gradient(to right, #d70000, #8f0000),
        url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='5' cy='5' r='2' fill='rgba(255,255,255,0.3)' /%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 20px 20px;
    padding: 60px 0;
}
.home-ns-box.white {
    background-color: rgb(244, 244, 244);
    padding: 60px 0;
}
.home-ns-container {
    width: auto;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    border-radius: 16px;
    z-index: 10;
}
.section-title {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    text-shadow: 2px 2px 4px #000;
    margin-top: 0;
    margin-bottom: 40px;
}
.news-cards {
    display: flex;
    gap: 35px;
    margin-top: 20px;
    /* padding: 10px 0; */
    padding: 10px 16px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
}
.news-cards:active {
    cursor: grabbing;
}
.news-cards::-webkit-scrollbar {
    display: none;
}
.news-card {
    flex: 0 0 auto;
    width: 280px;
    margin: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

    display: flex;
    flex-direction: column;

    scroll-snap-align: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.news-img-container {
    width: 100%;
    height: 140px;
    overflow: hidden;
}
.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.news-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
}
.news-date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 12px;
}
.news-link {
    align-self: flex-start;
    padding: 6px 12px;
    background: linear-gradient(to right, #d70000, #8f0000);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: transform 0.2s ease;
}
.news-link:hover {
    transform: scale(1.05);
}
.sort-btn {
    padding: 8px 16px;
    margin: 0 8px;
    background: linear-gradient(to right, #d70000, #8f0000);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
}
.sort-btn:hover {
    background: #b00000;
}

.home-lcinews-section-vdo {
    display: flex;
    padding: 60px 0;
    background-color: rgb(248, 248, 248);
}
.home-ns-container-vdo {
    max-width: 1500px;
    width: auto;
    margin: 0 auto;
    padding: 0 1.3rem;
    border-radius: 16px;
    z-index: 10;
}
.section-vdo-title {
    font-size: 2.8em;
    color: rgb(192, 0, 0);
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: rgba(0, 0, 0, 0.05) 1px 1px 2px;
}
.video-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 20px;
    flex-wrap: wrap;
}
.video-container video {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.video-item {
    display: flex;
    flex-direction: row;
    gap: 3rem;
}
.video-item-text {
    display: flex;
    flex-direction: column;
    width: 38%;
    padding: 35px;
    border-radius: 10px;
    gap: 1rem;
    background-image: 
        linear-gradient(to right, rgba(215,0,0,0.85), rgba(143,0,0,0.85)),
        url(/assets/images/15351.jpg);
    background-size: cover;
    background-position: center;
}
.vdo-icons {
    display: flex;
    justify-content: space-between;
}
.vdo-icons i {
    font-size: 2rem;
    color: rgb(247, 247, 247);
}
.video-item-text-box {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: space-between;
}
.video-item-text-box-title h1 {
    font-size: 2.8rem;
    font-weight: bold;
    color: rgb(247, 247, 247);
}
.news-vdo-text-right {
    text-align: right;
}
.news-vdo-text-left {
    text-align: left;
}
.video-item-text-box-des p {
    color: rgb(247, 247, 247);
    font-size: 1.5rem;
}
.video-item-text-box-actions {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}
.video-item-text-box-actions-btn a{
    background: linear-gradient(to right, #fffafa, #ff8787);
    color: rgb(114, 0, 0);
    padding: 15px;
    font-size: 1.2rem;
    border-radius: 5px;
    height: auto;
    text-align: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.video-item-text-box-actions-btn:hover {
    transform: scale(1.05);
    background-color: transparent;

}
.video-item-text-box-actions-btn2 a {
    background-color: transparent;
    color: rgb(247, 247, 247);
    padding: 15px;
    font-size: 1.2rem;
    border-radius: 5px;
    height: auto;
}
.video-item-text-box-actions-btn2:hover {
    transform: scale(1.05);
}
.video-item-text-box-actions-icon i {
    font-size: 3rem;
}

/* #endregion */
/* = = = = = [End] L C I - T H News = = = = = */

/* ====== [Start] W H Y & S T R E N G T H  section ============ */
/* #region */
.home-why-choose-us {
  position: relative;
  background-color: #ffffff;
  padding: 80px 20px;
  color: #333;
  overflow: hidden;
  z-index: 1;
}
.home-why-choose-us .home-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="1" fill="gray"/></svg>');
  opacity: 0.2;
  z-index: 0;
}
.home-why-choose-us .home-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}
.home-why-choose-us h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
}
.home-why-choose-us .home-highlight {
  color: #e60000;
  font-weight: bold;
}
.home-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.home-feature-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  padding: 2rem;
  flex: 1 1 300px;
  transition: transform 0.3s ease;
  text-align: center;
}
.home-feature-card:hover {
  transform: translateY(-10px);
}
.home-feature-card i {
  font-size: 2.5rem;
  color: #e60000;
  margin-bottom: 1rem;
}
.home-cta-button {
  margin-top: 3rem;
}
.home-red-btn {
  display: inline-block;
  background: linear-gradient(to right, #d70000, #8f0000);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}
.home-red-btn:hover {
  background-color: #c20000;
  transform: scale(1.05);
}

/* #endregion */
/* = = = = = [End] W H Y & S T R E N G T H  section  = = = = = */

/* ====== [Start] P R O M O T I O N VIEW ============ */
/* #region */


.ps-p-promo-banner {
  background-color: #ffffff;
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px;
}
.home-announcements-con {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
}
.home-a-slide {
  flex: 1 1 55%;
  max-width: 600px;
}
.swiper-container {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.swiper-slide {
  text-align: center;
  position: relative;
}
.ps-p-btn-promo {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: #e53935;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}
.ps-p-promo-banner img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.promo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 8px;
}
.ps-p-btn-promo {
  margin-top: 10px;
  background-color: #e40000;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  z-index: 2;
  position: relative;
}
.ps-p-btn-promo:hover {
  background-color: #e65500;
}
.swiper-pagination {
  margin-top: 20px !important;
  position: relative !important;
  z-index: 1;
}
.home-a-detail {
  flex: 1 1 40%;
  max-width: 450px;
  background: #f7f7f7;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.home-a-detail h2 {
  text-align: center;
  margin-bottom: 20px;
}
.home-a-detail form label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}
.home-a-detail input,
.home-a-detail textarea {
  width: 100%;
  padding: 8px;
  margin-top: 4px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.export-btn {
  margin-top: 20px;
  width: 100%;
  padding: 10px;
  background: linear-gradient(to right, #d70000, #8f0000);
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.export-btn:hover {
  background-color: #ffffff;
  border: 1px solid transparent; 
  border-image: linear-gradient(to right, #d70000, #8f0000);
  border-image-slice: 1;
}
/* export png */
table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed; 
  font-size: 14px;
}
th, td {
  border: 1px solid #000;
  padding: 8px 10px;
  line-height: 1.5;
  vertical-align: top; 
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: left;
}
.export-btn {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}
.export-btn:hover {
  background-color: #45a049;
}
th:nth-child(2), td:nth-child(2) {
  width: 40%;
}
.remove-btn {
    background-color: #ff4d4d;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}
.remove-btn:hover {
    background-color: #cc0000;
}
/* #endregion */
/* = = = = = [End] P R O M O T I O N VIEW = = = = = */

/* ====== [Start] F O O T E R SECTION ============ */
/* #region */
.footer {
  width: 100%;
  position: relative;
  background: linear-gradient(135deg, #8B0000, #d71e1e);
  color: white;
  overflow: hidden;
  padding-top: 60px;
}
.footer-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 0;
  opacity: 0.3;
}
.footer-overlay {
  position: relative;
  z-index: 1;
  padding: 2rem 1.5rem;
}
.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer-section {
  flex: 1;
  min-width: 220px;
  padding: 35px;
}
.footer-brand img.footer-logo-img {
  width: 80px;
  margin-bottom: 1rem;
}
.footer-brand h2 {
  font-size: 1.8rem;
  margin: 0 0 0.5rem;
}
.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.footer p, .footer li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.footer a:hover {
  color: #ffe6e6;
}
.footer-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}
.footer-btn {
  padding: 0.6rem 1.2rem;
  background: white;
  color: #a30000;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}
.footer-btn:hover {
  background: #ffe5e5;
  transform: scale(1.05);
}
.footer-btn.line {
  background: #06c755;
  color: white;
}
.footer-map iframe {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
.footer-bottom {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px;
  font-size: 0.9rem;
  opacity: 0.8;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}



.copy-popup {
    visibility: hidden; 
    min-width: 150px;
    background-color: #313131;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 12px;
    position: fixed;
    z-index: 1000;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.5s, visibility 0.5s;
}

.copy-popup.show {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 480px) {
    .footer-content {
        gap: 0;
    }
    .footer-buttons {
        flex-wrap: nowrap;
        gap: 0.5rem;
    }
    .footer-btn {
        padding: 0.5rem 0.9rem;
        font-weight: bold;
    }
    .footer-contact {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
    }
    .footer-bottom p {
        font-size: 0.8rem;
    }

}

@media (min-width: 481px) and (max-width: 1024px) { 
    
    .footer-content {
        gap: 0;
    }
    .footer-buttons {
        flex-wrap: nowrap;
        gap: 0.5rem;
    }
    .footer-btn {
        padding: 0.5rem 0.9rem;
        font-weight: bold;
    }
    .footer-contact {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
    }

    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
        padding: 25px;
    }
    .footer-content > div {
        flex: 1 1 calc(50% - 1rem);
        box-sizing: border-box;
    }
    .footer-section {
        justify-content: left;
        justify-items: left;
    }
    .footer-section a {
        font-size: 16px;
    }
    .footer-section p {
        font-size: 16px;
    }

}


/* #endregion */
/* = = = = = [End] F O O T E R SECTION = = = = = */

/* ====== [Start] M O B I L E  H E A D E R  Content ====== */
/* #region */

.m-ps-main-header {
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
    padding-top: 0;
    height: 70vh;
}
.ps-header-desktop {
    position: relative;
    color: #fff;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.swiper-container {
    height: 100%;
}

.ps-banner-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.ps-banner-imagepc {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: bottom;
    filter: brightness(0.8);
    display: block;
}

.ps-banner-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    z-index: 3;
    padding: 0 10%;
    box-sizing: border-box;
}

.ps-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px #000;
}

.ps-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.ps-btn-group {
    display: flex;
    gap: 1rem;
}

.ps-btn {
    background-color: #aa0101;
    color: #fff;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s ease;
}

.ps-btn:hover {
    background-color: #dcdcdc;
    color: #d70000;
}

.ps-btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.ps-btn-secondary:hover {
    background: linear-gradient(to left, #d70000, #8f0000);
    color: #fff;
}

.wave-desktop,
.wave-tablet,
.wave-mobile {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.wave-desktop svg,
.wave-tablet svg,
.wave-mobile svg {
    display: block;
    width: 100%;
    height: 120px;
}

/* #endregion */
/* = = = = = [End]  H E A D E R  Content = = = = = */

.m-ps-main-header,
.mobile-view,
.formobile,
.forMobile,
.m-home-about-section {
    display: none;
}

/* Responsive */
/* Mobile Styles */
@media (max-width: 480px) {
    .m-ps-main-header,
    .mobile-view,
    .formobile,
    .m-home-about-section,
    .ps-header-mobile,
    .headerformobile {
        display: block;
    }
    .ps-main-header {
        display: none;
    }
    .mobile-view {
        display: block;
        width: 100%;
    }
    .nav-lci-above-group1 {
        display: block;
    }
    .formobile {
        display: block;
    }
    .m-ps-main-header {
        display: block;
    }
    .above-content {
        display: none;
    }
    .ps-main-header,
    .home-about-section {
        display: none;
    }
    .headerformobile {
        display: block;
    }
    .ps-header-mobile {
        display: block;
        position: relative;
        color: #fff;
        overflow: hidden;
        width: 100%;
        height: 100%;
    }
    .to-heaven-btn {
        right: 12px;
        bottom: 12px;
    }
    .swiper-container {
        height: 100%;
    }
    .ps-banner-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        filter: brightness(0.7);
        display: block;
    }
    .ps-header-mobile .ps-banner-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0 5%;
        box-sizing: border-box;
        z-index: 3;
        color: white;
    }
    .ps-header-mobile .ps-title {
        font-size: 3rem;
        margin-bottom: 0.5rem;
        text-shadow: 2px 2px 4px #000;
    }
    .ps-header-mobile .ps-title2 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
        text-shadow: 2px 2px 4px #000;
    }
    .ps-header-mobile .ps-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
        color: white;
    }
    .ps-header-mobile .ps-btn-group {
        flex-direction: column;
        gap: 0.5rem;
        justify-content: center;
    }
    .wave-mobile svg {
        display: block;
        width: 100%;
        height: 80px;
    }
    .wave-mobile {
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
        z-index: 2;
    }
    .header-section-red-line {
        display: none;
    }
    .header-title-page-title h1 {
        font-size: 1.5rem;
    }
    .header-title-page-title p {
        font-size: 16px;
    }
    .home-about-section {
        display: none;
    }
    .forMobile {
        display: block;
    }
    .headerformobile {
        display: block;
    }
    .m-home-about-section {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        padding: 15px;
    }
    .m-about-detail {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-items: center;
        justify-content: center;
    }
    .m-about-detail h2 {
        color: rgb(192, 0, 0);
    }
    .m-about-detail p {
        text-align: center;
        padding: 5%;
    }
    .m-about-detail a {
        align-items: center;
        justify-items: center;
    }
    .home-product-showcase {
        padding: 20px 15px;
    }
    .home-product-container {
        padding: 0;
    }
    .home-section-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    .home-product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .home-product-card {
        width: 100%;
        max-width: unset;
        margin: 0;
        padding: 10px;
    }
    .home-product-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        justify-items: center;
    }
    .home-product-info {
        padding: 8px;
    }
    .home-product-title {
        font-size: 1.1rem;
    }
    .home-product-detail,
    .home-product-unit,
    .home-product-location {
        font-size: 0.8rem;
    }
    .home-buy-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    .home-product-popup-detail {
        padding: 15px;
    }
    .hppd-box {
        width: 95%;
        max-width: 90vw;
        margin: 20px auto;
    }
    .hppd-close-button {
        font-size: 2rem;
        top: 5px;
        right: 10px;
    }
    .hppd-content {
        flex-direction: column;
        gap: 15px;
    }
    .hppd-con-box {
        flex-direction: column;
    }
    .hppd-image-section {
        width: 100%;
        padding-right: 0;
        border-right: none;
        margin-bottom: 15px;
        padding: 15px;
    }
    .hppd-main-image-container {
        height: 250px;
    }
    .hppd-main-image {
        max-height: 250px;
        left: 0;
    }
    .hppd-thumbnail-container {
        justify-content: center;
        margin-top: 10px;
    }
    .hppd-thumbnail-container img {
        width: 60px;
        height: 60px;
    }
    .hppd-info-box {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
        padding: 15px;
        box-sizing: border-box;
    }
    .info-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .info-label {
        font-size: 0.85rem;
    }
    .info-value {
        font-size: 0.9rem;
    }
    .hppd-details-section {
        width: 100%;
        padding-left: 0;
    }
    .product-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 10px;
    }
    .product-description-text,
    .detail-text,
    .feature-list li {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .box-title {
        font-size: 1.2rem;
        margin-top: 15px;
        margin-bottom: 8px;
    }
    .standard-icons img {
        width: 40px;
        height: 40px;
        margin-right: 8px;
    }
    body.no-scroll {
        overflow: hidden;
    }
    .home-product-popup-detail,
    .image-zoom-popup {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(0, 0, 0, 0.7);
        padding: 10px;
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.0s ease 0.3s;
    }
    .home-product-popup-detail.is-visible,
    .image-zoom-popup.is-visible {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.3s ease, visibility 0s ease 0s;
    }
    .image-zoom-content {
        width: 95%;
        max-width: 90vw;
        max-height: 90vh;
        background-color: #fff;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .zoomed-image {
        max-width: 100%;
        max-height: 85vh;
        display: block;
        object-fit: contain;
    }
    .image-zoom-close-button {
        font-size: 2rem;
        top: 5px;
        right: 10px;
    }
    .pro-s-product-showcase {
        padding: 20px 3%;
    }
    .product-all-con {
        flex-direction: column;
        gap: 1rem;
    }
    .pro-s-adv-filters-box {
        display: none;
    }
    .ps-product-container {
        width: 100%;
    }
    .pro-s-filter-bar {
        flex-direction: column;
        align-items: stretch;
        margin-left: 0;
        margin-right: 0;
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 0 5%;
        box-sizing: border-box;
    }
    .pro-s-filter-bar input,
    .pro-s-filter-bar select,
    .pro-s-filter-bar button {
        width: 100%;
        min-width: unset;
        font-size: 14px;
    }
    .pro-s-filter-bar button {
        margin-top: 10px;
        width: 100%;
    }
    .pro-s-filter-bar select {
        padding: 10px 15px;
        background-position: right 8px center;
    }
    .psfb-title {
        display: block;
        text-align: center;
        margin-bottom: 15px;
        font-size: 1.5rem;
        color: #d60000;
        width: 100%;
    }
    .pro-s-product-type-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
    }
    .pro-s-pd-type {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        flex-shrink: 0;
    }
    .p-c-product-grid {
        justify-content: center;
        gap: 15px;
        padding: 0 5%;
        grid-template-columns: 1fr 1fr;
    }
    .p-c-product-card {
        width: 100%;
        max-width: unset;
        height: auto;
    }
    .p-c-product-card img {
        height: 150px;
    }
    .p-c-product-title p {
        font-size: 16px;
    }
    .p-c-product-detail p {
        font-size: 12px;
    }
    .p-c-product-price,
    #priceVisibilityClass {
        font-size: 30px;
    }
    .p-c-product-price span {
        font-size: 18px;
    }
    .cart-section-container {
        width: 100%;
    }
    .p-cart-title {
        padding: 15px;
        font-size: 1.2rem;
    }
    .products-carts-container,
    .p-cart-result {
        padding: 15px;
    }
    .cart-img img {
        width: 50px;
    }
    .cart-name {
        font-size: 1rem;
    }
    .cart-price {
        font-size: 0.85rem;
    }
    .qty-control {
        flex-basis: 100%;
        justify-content: flex-start;
        margin-top: 10px;
    }
    .cart-item-horizontal {
        flex-direction: column;
        align-items: flex-start;
    }
    .cart-remove {
        align-self: flex-end;
        margin-top: -30px;
    }
    .qty-control button,
    .cart-remove button {
        padding: 4px 10px;
        font-size: 14px;
    }
    .p-cart-result p {
        font-size: 1rem;
    }
    .p-cart-result p strong {
        font-size: 1.1rem;
    }
    .popup-product-detail {
        padding: 10px;
    }
    .popup-box-show {
        flex-direction: column;
        max-width: 95%;
        padding: 15px;
        max-height: 95vh;
        gap: 1rem;
    }
    .popup-left,
    .popup-right {
        min-width: auto;
        width: 100%;
        padding: 15px;
    }
    .popup-close {
        top: 10px;
        right: 10px;
    }
    .popup-close-btn {
        font-size: 2.5rem;
    }
    #mainPopupImg {
        max-height: 250px;
    }
    .popup-thumbnails img {
        width: 60px;
        height: 60px;
    }
    .plbs-con {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    .plbs-box {
        flex: 1 1 80px;
        max-width: 100px;
        font-size: 0.85rem;
    }
    .plbs-box img {
        width: 60px;
        height: 60px;
    }
    .popup-action-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .popup-action-buttons button {
        min-width: unset;
        width: 100%;
        font-size: 0.95rem;
        padding: 10px;
    }
    .image-zoom-content {
        max-width: 95%;
        padding: 10px;
    }
    .zoomed-image {
        max-height: 70vh;
    }
    .image-zoom-close-button {
        font-size: 24px;
    }
    .home-std-section-title {
        font-size: 2.2em;
    }
    .home-std-section-subtitle {
        font-size: 1em;
        margin-bottom: 40px;
    }
    .home-std-home-standard-section {
        padding: 60px 0;
    }
    .home-std-capabilities-grid {
        grid-template-columns: 1fr;
    }
    .home-std-capability-card {
        padding: 25px;
    }
    .home-std-card-icon {
        width: 70px;
        height: 70px;
    }
    .home-std-card-icon svg {
        width: 45px;
        height: 45px;
    }
    .standard-popup-modal {
        align-items: flex-start;
        padding-top: 20px;
    }
    .standard-popup-content {
        padding: 15px;
        max-width: 100%;
    }
    .standard-popup-close-btn {
        font-size: 3em;
        top: 10px;
        right: 10px;
    }
    .standard-popup-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .standard-popup-header-img {
        width: 80px;
        height: 80px;
    }
    .standard-popup-title {
        font-size: 1.8em;
    }
    .standard-popup-body {
        font-size: 1em;
    }
    .standard-popup-body-details-groupitems {
        grid-template-columns: 1fr;
    }
    .standard-popup-image {
        margin-top: 70px;
    }
    .home-why-choose-us h2 {
        font-size: 1.6rem;
    }
    .home-why-choose-us i {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .section-vdo-title {
        font-size: 2.2em;
        color: rgb(192, 0, 0);
        margin-bottom: 15px;
        font-weight: 700;
        text-shadow: rgba(0, 0, 0, 0.05) 1px 1px 2px;
    }
    .video-container {
        padding: 0;
    }
    .video-item {
        display: flex;
        flex-direction: column;
    }
    .video-item-text {
        display: none;
    }
}

@media (min-width: 481px) and (max-width: 1024px) {
    .above-content {
        display: none;
    }
    .lci-above-group1 {
        padding-left: 0;
        margin-bottom: 10px;
    }
    .lci-above-group2 {
        display: none;
    }
    .detailLCI {
        flex-direction: column;
        gap: 0.5rem;
    }
    .telLCI,
    .socialLCI {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        padding-left: 0;
        gap: 10px;
    }
    .LCIlocatation {
        padding-left: 0;
    }
    .lcilocate {
        flex-direction: column;
        gap: 5px;
    }
    .lcilocate h5 {
        margin-bottom: 0;
    }
    .lcilocate a.gps-button {
        margin-left: 0;
    }
    .nav-lci-above-group1 {
        display: block;
    }
    .pshta-tablet-view {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(0, 0, 0, 0.5);
    }
    .ps-main-header {
        width: 100%;
        position: relative;
        overflow: hidden;
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
        padding-top: 0;
        height: 70vh;
    }
    .ps-header-title-area {
        background: linear-gradient(to right, rgba(215, 0, 0, 0.7), rgba(90, 0, 0, 0.7));
        position: absolute;
        top: 0;
        left: 0;
        width: 40%;
        height: 100%;
        z-index: 2;
        clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
        padding-right: 55%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
    .nav-list {
        gap: 15px;
    }
    .nav-list a {
        font-size: 13px;
    }
    .dropdown-menu {
        min-width: auto;
    }
    .wave-tablet {
        display: block;
        z-index: 2;
    }
    .swiper-container {
        height: 100%;
    }
    .ps-header-tablet {
        display: block;
        position: relative;
        color: #fff;
        overflow: hidden;
        width: 100%;
        height: 100%;
    }
    .ps-header-tablet .ps-banner-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0 5%;
        box-sizing: border-box;
        z-index: 3;
        color: white;
    }
    .ps-header-tablet .ps-title {
        font-size: 2.5rem;
    }
    .ps-header-tablet .ps-subtitle {
        font-size: 1.1rem;
    }
    .ps-header-tablet .ps-btn-group {
        justify-content: center;
    }
    .pshta-tablet-view .ps-banner-overlay {
        padding-left: 5%;
        padding-right: 5%;
        text-align: center;
    }
    .h-a-container {
        justify-content: center;
    }
    .home-about-text-box {
        margin: 0 auto;
    }
    .news-cards {
        gap: 8px;
        padding-left: 0;
        justify-content: center;
    }
    .home-contact-con {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .home-c-detail,
    .home-c-block {
        max-width: 80% !important;
        width: 100%;
        margin: 0 auto;
        margin-top: 20px;
    }
    .home-standard-section .home-std-container {
        padding: 0 10px;
        max-width: 100%;
    }
    .home-std-capabilities-grid {
        grid-template-columns: 1fr;
    }
    .home-std-capability-card {
        width: 100%;
    }
    .contact-social-cards {
        justify-content: center;
    }
    .contact-social-card {
        flex: 1 1 45%;
        margin: 10px;
    }

    .section-vdo-title {
        font-size: 2.8em;
        color: rgb(192, 0, 0);
        margin-bottom: 15px;
        font-weight: 700;
        text-shadow: rgba(0, 0, 0, 0.05) 1px 1px 2px;
    }
    .video-container {
        padding: 0;
    }
    .video-item {
        display: flex;
        flex-direction: column;
    }
    .video-item-text {
        display: none;
    }

}

@media (min-width: 1025px) {
    .ps-header-desktop {
        height: 100%;
    }

    .ps-header-title-area {
        background: linear-gradient(to right, rgba(215, 0, 0, 0.7), rgba(90, 0, 0, 0.7));
        position: absolute;
        top: 0;
        left: 0;
        width: 40%;
        height: 100%;
        z-index: 2;
        clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
        padding-right: 15%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
}
















