/* Combined and Cleaned CSS */
@import './fonts/fonts.css';

/* ===== VARIABLES ===== */
:root {
  --primary-pink: #DA0D82;
  --max-container-width: 1400px;
  --green: #014A49;
  --secondary-color: #E4D9BD;
  --delay-1: 1400ms;
  --delay-2: 2000ms;
}

/* ===== RESET & BASE STYLES ===== */
* {
  padding: 0px;
  margin: 0px;
}

html{
  all:unset;
}

body {
  max-width: 100vw !important;
  width: 100vw !important;
  overflow-x: hidden !important;
  gap: 0 !important;
  position: relative !important;
  font-family: 'Gotham Book' !important;
}

input{
all:unset;
appearance: auto;
  -webkit-appearance: auto;
  -moz-appearance: auto;
}

a {
  all: unset;
  display: inline;
  cursor: pointer;
  text-decoration: none;
}

a:hover,
a:focus,
a:active,
a:visited {
  color:white;
  text-decoration: none;
}

.Primary_Font {
  font-family: 'Co Headline';
}

.Secondary_Font {
  font-family: 'Gotham Book';
}

.Text_Primary {
  color: #DA0D82 !important;
}

/* ===== ICONS ===== */
i {
  background-size: contain;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  display: block;
}

i[data-name="menu"] {
  background-image: url("../icons/menu.svg");
}

i[data-name="plan"] {
  background-image: url("../icons/plan.svg");
}

i[data-name="plus"] {
  background-image: url("../icons/plus.svg");
}

i[data-name="road"] {
  background-image: url("../icons/road.svg");
}

i[data-name="train"] {
  background-image: url("../icons/train.svg");
}

i[data-name="tree"] {
  background-image: url("../icons/tree.svg");
}

i[data-name="building"] {
  background-image: url("../icons/building.svg");
}

i[data-name="right-arrow"] {
  background-image: url("../icons/right-arrow.svg");
}

i[data-name="whatsapp"] {
  background-image: url("../icons/whatsapp.svg");
}

i[data-name="phone"] {
  background-image: url("../icons/phone.svg");
}

i[data-name="web"] {
  background-image: url("../icons/web.svg");
}

i[data-name="facebook"] {
  background-image: url("../icons/facebook.svg");
}

i[data-name="instagram"] {
  background-image: url("../icons/instagram.svg");
}

i[data-name="tik-tok"] {
  background-image: url("../icons/tik-tok.svg");
}

.icon {
  height: 24px;
  width: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  object-fit: contain;
}

/* ===== BUTTONS ===== */
.Btn {
  all: unset;
  font-family: 'Co Headline';
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 20px 8px 20px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  text-align: center;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
}

.Primary_Btn {
  background-color: #DA0D82;
  color: #fff;
}

.Primary_Btn:hover {
  background-color: #b50b6e;
  box-shadow: 0 1px 10px rgba(218, 13, 130, 0.45);
  transform: translateY(-2px);
}

.Primary_Btn:active {
  background-color: #8e0957;
  transform: translateY(0);
  box-shadow: 0 3px 6px rgba(218, 13, 130, 0.4);
}

.Link_Btn {
  background-color: #DA0D82 !important;
  color: #FFFFFF !important;
  border-radius: 32px !important;
  width: 383px;
  font-weight: 300;
  font-size: 30px;
  text-decoration: none;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center;
  height: unset;
  transition-duration: 400ms;
}

.Link_Btn_icon {
  background-color: white;
  color: rgba(30, 30, 30, 0.5);
  border-radius: 50%;
  height: 45px;
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition-duration: 400ms;
}

.Link_Btn:hover {
  background-color: #FFFFFF !important;
  color: #1E1E1E !important;
}

.Link_Btn:hover .Link_Btn_icon {
  background-color: #DA0D82;
  color: #FFFFFF;
  border-radius: 50%;
  height: 45px;
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.Unit_Link_Btn {
  display: none !important;
}

.Unit_Link_Btn.visible {
  display: flex !important;
}

.mirror-button {
  display: inline-block;
  width: fit-content;
  background-color: #fff;
  color: #000;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  align-items: center;
  padding: 8px 20px 8px 20px;
  min-width: 80px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.mirror-button.active,
.mirror-button:hover {
  background-color: #DA0D82;
  color: #fff;
}

.unit_details.visible .mirrorbutton {
  pointer-events: visible !important;
}

/* ===== HEADER ===== */
.header-menu-container {
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}

.header-menu-container.open {
  visibility: visible;
  opacity: 1;
  max-height: 500px;
}

.Header {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  padding: 24px;
  z-index: 999999;
  background: transparent;
}

.Header_Wraper {
  width: 100%;
  max-width: var(--max-container-width);
  margin: auto;
  display: flex;
  justify-content: space-between;
  background: transparent;
}

.Header_Left {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  z-index: 999999;
}

.Header_Left .Btn {
  font-size: 12px;
}

.offcanvas {
  z-index: 99999999;
  background: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
}

.Logo {
  height: 60px;
  display: flex;
  justify-content: center;
  flex-grow: 1;
}

.Logo img {
  height: 100%;
  object-fit: contain;
}

.logo-container {
  opacity: 1;
  transition: opacity 0.8s ease-in-out;
  position: fixed;
  display: flex;
  justify-content: center;
  top: 120px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999999;
}

.logo-container img {
  width: 100%;
  max-width: 280px;
  height: auto;
  animation: zoomIn 1.5s ease-in-out;
}

.logo-container.hide-logo {
  opacity: 0;
  pointer-events: none;
}

.logo-container.header-mode {
  top: 10px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 500;
}

.logo-container.header-mode img {
  width: 150px;
}

.Header_Right {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  gap: 4px;
  color: white;
  font-weight: 500;
  font-size: 14px;
  height: 53px;
  letter-spacing: 2px;
}

.header-menu {
  text-decoration: none;
  font-weight: lighter;
  font-size: 26px;
  line-height: 100%;
  color: #ffffff;
  padding-bottom: 15px;
  transition-duration: 300ms;
}

.header-menu:hover {
  color: rgba(247, 148, 29, 1);
}

/* ===== SPLASH OVERLAY ===== */
#splash-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--green);
  z-index: 1000;
  opacity: 1;
  transition: opacity 1.5s ease-in-out;
}

#splash-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* ===== ANIMATIONS ===== */
.slide-anim {
  opacity: 0;
}

.anim-delay-500 {
  animation-delay: 500ms;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.slide-down {
  animation: slideDown 1s ease-out forwards;
}

@keyframes slideUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.slide-up {
  animation: slideUp 1s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fade-out {
  animation: fadeOut 1s ease-out forwards;
}

@keyframes zoomIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.zoom-in {
  animation: zoomIn 0.8s ease-out forwards;
}

@keyframes zoomOut {
  from {
    transform: scale(1);
    opacity: 1;
  }

  to {
    transform: scale(0.5);
    opacity: 0;
  }
}

.zoom-out {
  animation: zoomOut 0.8s ease-out forwards;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in-left {
  animation: slideInLeft 1s ease-out forwards;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in-right {
  animation: slideInRight 1s ease-out forwards;
}

@keyframes Scroll_Modal_Anim {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes circleGlow {
  0% {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5),
      0 0 10px rgba(255, 255, 255, 0.4);
  }

  50% {
    box-shadow: 0 0 20px #fff,
      0 0 40px #fff;
  }

  100% {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5),
      0 0 10px rgba(255, 255, 255, 0.4);
  }
}

/* ===== HOME SECTION ONE ===== */
.Home_Section_One {
  background: var(--green);
  background-color: var(--green);
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

.Home_Section_One .expand-section {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  max-height: 100vh;
}

.Home_Section_One .expand-section .main_image {
  border-radius: 50% 50% 0px 0px;
  overflow: hidden;
  width: 38%;
  height: 65%;
  /* animation: slideUp 1.5s ease-out forwards; */
  animation-delay: var(--delay-1);
  position: relative;
}

#Linkar_Graphic_2 {
  top: 25%;
}

.Home_Section_One .expand-section .main_image img {
  object-position: top right;
  position: absolute;
  top: 0%;
  right: -15%;
  object-fit: cover;
  width: 80vw;
  min-width: 80vw;
}

.Home_Section_One .expand-section .main_image img.m_img {
  top: -100%;
  right: 0%;
  transform: scale(2);
  width: 160vw;
}

.Home_Section_One .expand-section.expanded .main_image {
  border-radius: 0px;
  width: 100%;
  max-width: unset;
  aspect-ratio: unset;
  min-height: 65%;
  height: 100%;
  overflow: auto;
}

.Home_Section_One .expand-section .home-overlay-image img {
  min-height: 100vh;
  object-position: top right;
  object-fit: cover;
}

.Home_Section_One .expand-section .home-overlay-image {
  opacity: 0;
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all 1.5s ease-in-out;
}

.Home_Section_One .expand-section .home-overlay-image.visible {
  opacity: 1;
}

.Home_Section_One .initial_section {
  width: 100%;
  overflow: hidden;
  height: 100%;
  max-height: 100vh;
  position: absolute;
}

.Home_Section_One .initial_section img {
  position: absolute;
  object-position: top center;
  bottom: 0;
  height: 65%;
  object-fit: contain;
  animation-delay: var(--delay-1);
  transform: translateX(-100%), scale(0);
}

.Home_Section_One .initial_section .left_img {
  height: 55%;
  right: 60%;
}

.Home_Section_One .initial_section .right_img {
  position: absolute;
  bottom: 0;
  left: 55%;
  object-fit: contain;
  transform: translateX(100%), scale(0);
  opacity: 0;
}

.Home_Section_One .content {
  position: absolute;
  top: calc(100vh * 35/100);
  left: 0;
  transform: translate(0%, -50%);
  width: 100%;
  transition: all 1s ease-in-out;
  z-index: 1;
}

.Home_Section_One .content.top {
  top: 240px;
}

.content-wrapper {
  width: 100%;
  max-width: var(--max-container-width);
  margin: auto;
  animation-delay: var(--delay-1) !important;
  padding: 0 24px;
  opacity: 0;
  color: white;
  transition: all 1.5s ease-in-out;
}

.Home_Section_One .content h1 {
  font-family: 'Co Headline';
  font-weight: 600;
  font-size: 50px;
  line-height: 60px;
  letter-spacing: 0%;
  margin-bottom: 16px;
}

.Home_Section_One .content p {
  font-family: 'Co Headline';
  font-weight: 400;
  font-size: 28px;
  line-height: 32px;
  letter-spacing: 0%;
}

/* ===== SECTION TWO ===== */
.Home_Section_Two.content {
  padding: 48px;
  padding-top: 100px;
  min-height: fit-content;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--secondary-color);
}

.Home_Section_Two.content h2 {
  font-family: 'Co Headline';
  font-weight: 400;
  font-style: Regular;
  font-size: 30px;
  line-height: 37px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;
  color: var(--primary-pink);
  font-weight: 700;
}

.Home_Section_Two.content p {
  font-family: 'Gotham Book';
  font-weight: 400;
  font-style: Regular;
  line-height: 19px;
  font-size: 14px;
  letter-spacing: 0%;
  text-align: center;
  max-width: 500px;
}

.Home_Section_Two.Bg_50 {
  background: var(--secondary-color);
  height: 50vh;
  width: 100vw;
  position: absolute;
  top: 250vh;
  left: 0;
  margin-top: -1px;
  padding-bottom: 1px;
}

.Section_Two_Extra_Scroll {
  height: 200vh;
}

.Section_Three_Extra_Scroll {
  height: 300vh;
}

.Section_Eight_Extra_Scroll{
  height: 400vh;
}

#Sticky_Image {
  position: absolute;
  top: 300vh;
  left: 0px;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 10;
}

#Sticky_Image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== SECTION THREE ===== */
.Home_Section_Three {
  height: 100vh;
  position: absolute;
  top: 500vh;
  width: 100%;
  overflow: hidden;
  background-color: white;
}

.Home_Section_Three img {
  all:unset;
  position: absolute;
  width: auto;
  height: 195vh;
  object-fit: contain;
  object-position: top;
  left: 0;
  transform: translate(0%, 0%);
}

.location-image-paragraph {
  z-index: 10;
  position: absolute;
  top: 120px;
  left: 70px;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.location-image-paragraph p {
  color: white;
  font-family: 'Co Headline';
  font-weight: 400;
  font-size: 14px;
  width: 400px;
  line-height: 19px;
}

.Home_Section_Three .button-grid {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px 60px;
  max-width: 900px;
  position: absolute;
  top: 120px;
  z-index: 10;
  transition: opacity 1s ease-in-out;
  opacity: 0;
}

.Home_Section_Three .button-grid h2 {
  color: white;
  font-family: 'Co Headline';
  font-weight: 400;
  font-size: 30px;
}

.Home_Section_Three .info-btn {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: white;
  border-radius: 50px;
  margin-right: 14px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.Home_Section_Three .info-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.Home_Section_Three .icon {
  background-color: #f5e8c7;
  border-radius: 50%;
  padding: 8px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.Home_Section_Three .icon i {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.Home_Section_Three .text {
  display: flex;
  flex-direction: column;
}

.Home_Section_Three .distance {
  font-size: 22px;
  font-weight: 600;
}

.Home_Section_Three .desc {
  font-size: 14px;
  color: #d6d8e0;
}

/* ===== USP SECTIONS ===== */
.terokai-link-text {
  height: unset;
  display: flex;
}

.paragraph-1 {
  color: white;
  font-family: 'Gotham Book';
  font-weight: 400;
  font-style: Regular;
  font-size: 24px;
  line-height: 37px;
  letter-spacing: 0%;
}

.paragraph-usp-lrt-scroll {
  color: white;
  font-family: 'Gotham Book';
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0%;
  width: 68%;
}

.heading-1 {
  color: #FFFFFF !important;
  font-size: 60px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
}

.Terokai_Gaya_Hidup_Link,
.Terokai_Kemudahan_Link,
.Terokai_Privasi_Link,
.Terokai-Laluan-Link,
.Terokai_Rangkaian_Link {
  background-color: #DA0D82 !important;
  color: #FFFFFF !important;
  border-radius: 32px !important;
  width: 383px;
  font-weight: 300;
  font-size: 20px;
  text-decoration: none;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center;
  height: unset;
  transition-duration: 400ms;
}

.terokai-link-icon {
  background-color: rgba(255, 255, 255, 0.8);
  color: rgba(30, 30, 30, 0.5);
  border-radius: 50%;
  height: 45px;
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition-duration: 400ms;
}

.Terokai_Gaya_Hidup_Link:hover,
.Terokai_Kemudahan_Link:hover,
.Terokai_Privasi_Link:hover,
.Terokai-Laluan-Link:hover,
.Terokai_Rangkaian_Link:hover {
  background-color: #FFFFFF !important;
  color: #1E1E1E !important;
}

.Terokai_Gaya_Hidup_Link:hover .terokai-link-icon,
.Terokai_Kemudahan_Link:hover .terokai-link-icon,
.Terokai_Privasi_Link:hover .terokai-link-icon,
.Terokai-Laluan-Link:hover .terokai-link-icon,
.Terokai_Rangkaian_Link:hover .terokai-link-icon {
  background-color: #DA0D82;
  color: #FFFFFF;
  border-radius: 50%;
  height: 45px;
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* USP Background Images */
.bg-image-usp-commercial {
  background-image: linear-gradient(to right,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.6) 20%,
      rgba(0, 0, 0, 0.4) 35%,
      rgba(0, 0, 0, 0.2) 45%,
      rgba(0, 0, 0, 0.1) 50%),
    url("../images/usp-commercial-main-section.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
}

.bg-image-usp-facilities {
  background-image: linear-gradient(to right,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.6) 20%,
      rgba(0, 0, 0, 0.4) 35%,
      rgba(0, 0, 0, 0.2) 45%,
      rgba(0, 0, 0, 0.1) 50%),
    url("../images/usp-facilities-main-section.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
}

.bg-image-usp-highway {
  background-image: linear-gradient(to right,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.6) 20%,
      rgba(0, 0, 0, 0.4) 35%,
      rgba(0, 0, 0, 0.2) 45%,
      rgba(0, 0, 0, 0.1) 50%),
    url("../images/usp-2.jpg?v2");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
}

.bg-image-usp-lrt {
  background-image: linear-gradient(to right,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.6) 20%,
      rgba(0, 0, 0, 0.4) 35%,
      rgba(0, 0, 0, 0.2) 45%,
      rgba(0, 0, 0, 0.1) 50%),
    url("../images/mens-lrt.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
}

.bg-image-usp-privacy {
  background-image: linear-gradient(to right,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.6) 20%,
      rgba(0, 0, 0, 0.4) 35%,
      rgba(0, 0, 0, 0.2) 45%,
      rgba(0, 0, 0, 0.1) 50%),
    url("../images/usp-privacy.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
}

/* USP Expand Sections */
.bg-image-usp-commercial-expand {
  background-image: url("../images/usp-commercial-expand.webp");
  padding-top: 110px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 942px;
  width: 100%;
}

.bg-image-usp-facilities-expand {
  background-image: url("../images/usp-facilities-expand-image-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 930px;
  width: 100%;
}

.bg-image-usp-highway-expand {
  background-image: url("../images/Location_LRT.jpg");
  padding-top: 110px;
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
  height: 942px;
  width: 100%;
}

.bg-image-usp-lrt-expand {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
}

.bg-image-usp-lrt-expand img {
  width: 100%;
  object-fit: contain;
  height: auto;
}

.bg-image-usp-lrt-expand .content {
  padding-top: 110px;
}

.bg-image-usp-privacy-expand-img-1 {
  background-image: url("../images/linkar_52_type_d1.webp");
  padding-top: 110px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 942px;
  width: 100%;
  margin-bottom: -20px;
}

.expand-footer-bg-color {
  background-color: #014A49;
}

.bg-blur {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(70px) !important;
  border-radius: 30px;
}

.bg-blur-2 {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-radius: 30px;
}

/* ===== SECTION FOUR ===== */
.Home_Section_Four {
  overflow: hidden;
  width: 100vw;
  position: relative;
}

.Home_Section_Four img {
  width: 100vw;
  object-fit: contain;
}

.Home_Section_Four .content {
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  padding: 24px;
  z-index: 10;
}

.Home_Section_Four .content h2 {
  color: white;
  font-family: 'Co Headline';
  font-weight: 600;
  font-size: 50px;
  line-height: 60px;
  letter-spacing: 0%;
}

.Home_Section_Four .content p {
  color: white;
  font-family: 'Gotham Book';
  font-weight: 400;
  font-style: Regular;
}

/* ===== SECTION FIVE ===== */
.Home_Section_Five {
  background-color: var(--secondary-color);
}

.Home_Section_Five .container {
  max-width: 900px;
}

.Home_Section_Five .Unit_Main_Image {
  width: 100%;
  max-width: 600px;
  position: relative;
  aspect-ratio: 1/0.65;
}

.Home_Section_Five .Unit_Main_Image .Unit_Title {
  position: absolute;
  top: 50px;
  left: -100px;
  color: var(--primary-pink);
  font-family: 'Co Headline';
  font-weight: 600;
  font-size: 60px;
  letter-spacing: 0%;
  display: inline;
  z-index: 10;
  transition: opacity 1s ease-in-out;
  opacity: 0;
}

.Home_Section_Five .Unit_Main_Image .Unit_Title.visible {
  opacity: 1;
}

.Home_Section_Five .Unit_Main_Image img {
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  object-fit: cover;
  object-position: center;
  height: 100%;
  transition: opacity 1s ease-in-out;
  opacity: 0;
}

.Home_Section_Five .Unit_Main_Image img.visible {
  opacity: 1;
}

.Home_Section_Five .unit_details h2 {
  color: white;
  font-family: 'Co Headline';
  font-weight: 400;
  font-size: 24px;
  color: var(--green);
}

.Home_Section_Five .unit_details h2 strong {
  font-size: 28px;
}

.Home_Section_Five .Unit_Description {
  font-family: 'Gotham Book';
  font-weight: 400;
  font-style: Regular;
  max-width: 600px;
  transition: opacity 1s ease-in-out;
  opacity: 0;
}

.Home_Section_Five .unit_details {
  transition: opacity 1s ease-in-out;
  opacity: 0;
}

.Home_Section_Five .unit_details.visible {
  opacity: 1;
}

.Home_Section_Five .Unit_Description.visible {
  opacity: 1;
}

.Home_Section_Five .Unit_Description_Box {
  position: relative;
  height: 160px;
  width: 100%;
}

.Unit_Details_Box {
  min-height: 240px;
}

.Unit_Map_Image,
.Unit_Map2_Image {
  position: relative;
  width: 100%;
  aspect-ratio: 1/0.5;
}

.Unit_Map_Image {
  aspect-ratio: 1/1.5;
}

.Unit_Map_Image img,
.Unit_Map2_Image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 1s ease-in-out;
  opacity: 0;
}

.Unit_Map_Image img.visible,
.Unit_Map2_Image img.visible {
  opacity: 1;
}

.Tabs,
.Unit_Bars {
  position: absolute;
  width: 100%;
  bottom: 50px;
  left: 0;
  transition: opacity 1s ease-in-out;
  opacity: 0;
  height: fit-content;
}

.Tabs.visible,
.Unit_Bars.visible {
  opacity: 1;
}

.Tabs {
  transition: none;
}

.tabs-container,
.unit-bar-container {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  scrollbar-width: none;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

.tabs-container::-webkit-scrollbar,
.unit-bar-container::-webkit-scrollbar {
  display: none;
}

.tabs,
.unit-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: nowrap;
}

.tab,
.unit {
  background: transparent;
  color: black;
  font-family: 'Co Headline';
  font-weight: bold;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tab:hover,
.unit:hover {
  background: white;
}

.tab.active,
.unit.active {
  background: white;
}

/* ===== SECTION SIX ===== */
.Home_Section_Six {
  background-color: var(--secondary-color);
  height: 200vh;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  top: 700vh;
  overflow: hidden;
  z-index: 10;
}

.Home_Section_Six .Main_Image {
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  transform: translate(-50%, 0%);
  z-index: 10;
}

.Home_Section_Six img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.Home_Section_Six img.visible {
  opacity: 1;
}

.Home_Section_Six .Top_Right_Image {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -15%;
  height: 50vh;
  width: 40vw;
  z-index: 9;
}

.Bottom_Text_Box,
.Top_Text_Box {
  position: absolute;
  top: 100px;
  bottom: 0;
  right: 100%;
  height: 120px;
  width: 30vw;
  z-index: 11;
  background: var(--green);
  color: white;
  padding: 25px;
  display: flex;
  align-items: center;
  font-size: 28px;
  line-height: 34px;
  font-family: 'Gotham Book';
}

.Bottom_Text_Box {
  top: calc(115vh + 200px);
  min-height: 300px;
  width: 39vw;
}

.Bottom_Text_Box p,
.Top_Text_Box p {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;
  font-size: 20px;
}

.Bottom_Text_Box p.visible,
.Top_Text_Box p.visible {
  opacity: 1;
}

.Home_Section_Six .Bottom_Right_Image {
  position: absolute;
  top: calc(65vh + 200px);
  right: -5%;
  height: 60vh;
  width: 50vw;
  z-index: 9;
}

.Home_Section_Six .Bottom_Left_Image {
  position: absolute;
  top: calc(60vh + 200px);
  left: -5vw;
  height: 50vh;
  width: 40vw;
  z-index: 9;
}

.Home_Section_Six .Tabs {
  position: absolute;
  height: fit-content;
  left: 0;
  width: 100%;
  top: calc(100vh - 100px);
}

/* ===== SECTION SEVEN ===== */
.bg-image-section-seven {
  background-image: url("../images/awardbg.jpg");
  background-color: #060c1a;
  padding-top: 110px;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 500;
}

.section-seven-conatent {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 30px;
  width: 100%;
}

/* ===== FOOTER ===== */
.footer-section {
  background-color: #004d46;
  color: #ffffff;
}

.footer-logo {
  height: 65px;
  object-fit: contain;
}

.footer-section .input-expand-border {
  width: 0%;
  height: 2px;
  background: white;
  transition: all 1s ease-in-out;
}

.footer-section .input-expand-border.expand {
  width: 100%;
}

.footer-section h2 {
  color: white;
  font-family: 'Co Headline';
  font-weight: 600;
  font-size: 34px;
}

.footer-bottom-title {
  color: white;
  font-family: 'Co Headline';
  font-weight: 400;
  font-size: 28px;
}

.footer-section p,
.footer-bottom-desc {
  font-family: 'Gotham Book';
  font-weight: 100;
  line-height: 1.5;
  font-size: 12px;
  letter-spacing: 0%;
  color: white;
}

.footer-section input,
.footer-section select {
  border-radius: 0px !important;
  border: none !important;
}

.footer-section select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #333;
  color: #fff;
  padding: 10px 40px 10px 12px;
  border: 1px solid #555;
  border-radius: 6px;
  background-image: url("../icons/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}

.footer-section option {
  color: black;
}

.footer-section input::placeholder,
.footer-section select::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.footer-section .form-select:focus,
.footer-section .form-control:focus {
  box-shadow: none;
  border-color: var(--primary-pink);
}

input.form-check-input {
  background-color: transparent;
  border: 1px solid white !important;
  border-radius: 4px !important;
  accent-color: var(--primary-pink) !important;
}

.btn-pink {
  background-color: var(--primary-pink);
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
}

.btn-pink:hover {
  background-color: var(--primary-pink);
  color: #fff;
}

/* ===== SCROLL MODALS ===== */
.Loan_Calculator_Scroll_Modal,
.Usp_Privacy_Scroll_Modal,
.Usp_Facilities_Scroll_Modal,
.Usp_Commercial_Scroll_Modal,
.Usp-HighwayScroll_Modal,
.Usp_Lrt_Scroll_Modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transition: top 0.8s ease-in-out;
  z-index: 99999;
  overflow-y: scroll;
  display: none;
  animation: Scroll_Modal_Anim 1s ease-in-out;
}

.scroll-section {
  width: 100%;
  transition: top 0.8s ease-in-out;
  z-index: 100;
  border-radius: 48px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.loan-calculator-scroll-section {
  width: 100%;
  transition: top 0.8s ease-in-out;
  z-index: 100;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.Loan_Calculator_Scroll_Modal.active,
.Usp_Privacy_Scroll_Modal.active,
.Usp_Facilities_Scroll_Modal.active,
.Usp_Commercial_Scroll_Modal.active,
.Usp-HighwayScroll_Modal.active,
.Usp_Lrt_Scroll_Modal.active {
  display: block;
}

/* ===== LOAN CALCULATOR ===== */
.bg-image-loan-calculator {
  background-image: url("../images/calculator-bg.png");
  padding-top: 110px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 1428px;
  width: 100%;
}

.calculator-label {
  font-family: 'Gotham Book';
  font-weight: 400;
  font-size: 28px;
  color: white;
}

.calculator {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  width: 100%;
}

.calculator h2 {
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 600;
}

.input-group {
  margin-bottom: 25px;
}

input[type="range"] {
  width: 100%;
  accent-color: #DA0D82;
}

.calculator-arrow-btn {
  background-color: transparent;
  border: none;
  color: #ffffff;
}

.calculator-input {
  background-color: transparent;
  border: 0;
  font-size: 26px;
  color: white;
  font-family: 'Gotham Book';
  font-size: 28px;
  text-align: end;
  letter-spacing: 1px;
}

.calculator-input:focus {
  border: 0px;
  box-shadow: none;
  outline: 0;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

/* ===== GALLERY ===== */
.Gallery .top-content {
  background: #014a49;
  color: white;
  padding: 25px;
  width: 30vw;
  margin-left: 10vw;
  z-index: 1;
  position: relative;
}

.Gallery .bottom-content {
  background: #014a49;
  color: white;
  padding: 25px;
  margin: 20px
}

.Scroll_Section_Footer {
  background-color: rgba(255, 255, 255, 0.2);
  width: 383px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  font-weight: 300;
}

.scroll-section {
  background: #014a49;
}

.scroll-section .main_img img {
  width: 100%;
  object-fit: contain;
  height: auto;
}

.glide {
  overflow: visible !important;
}

.glide__track {
  overflow: visible !important;
}

.glide__slide {
  background: transparent;
  margin-right: 30px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.imgcc:after {
  content: "*Image for illustration purposes only.";
  position: absolute;
  bottom: 10px;
  left: 10px;
  white-space: nowrap;
}

.imgremark {
  font-size: 10px;
  position: absolute;
  bottom: 20px;
  right: 30px;
  z-index: 999;
  text-align: right;
}

.white {
  color: #fff;
}

/* ===== STICKY BUTTON ===== */
.stickybuttonregister {
  text-decoration: none;
  color: #fff;
  background-color: #DA0D82;
  padding: 20px 8px;
  border-radius: 20px 0 0 20px;
  display: block;
  writing-mode: vertical-rl;
  text-align: center;
}

/* ===== UTILITY CLASSES ===== */
.noshowmobile {
  display: block;
}

.noshowdesktop {
  display: none;
}

.footer-menu-usp-commercial-expand {
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 70px;
    padding: 10px;
    width: 315px;
}

.bg-footer-menu {
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 70px;
    padding: 10px;
    width: 100%;
}

.bg-footer-menu-img {
    background-color: rgba(228, 217, 189, 1);
}

/* ===== SECTION EIGHT ===== */

.Home_Section_Eight {
  height: 100vh;
  position: absolute;
  top: 500vh;
  width: 100%;
  overflow: hidden;
  background-color: white;
}

.Home_Section_Eight .Main_Img {
  all:unset;
  position: absolute;
  width: auto;
  object-fit: contain;
  object-position: top;
  left: 0;
  transform: translate(0%, 0%);
  min-width: 100%;
  min-height: 135vh;
  height: unset;
}

/* ===== RESPONSIVE STYLES ===== */

/* Mini Laptop */
@media (max-width: 1074px) {
  .Header_Left .Btn {
    font-size: 10px;
  }

  .Header_Right {
    height: 50px;
  }
}

/* Mini Laptop */
@media (max-width: 991px) {
  .Header_Left .Btn {
    font-size: 10px;
    padding: 6px 10px;
  }
}



/* Additional responsive adjustments */
@media (max-width: 1100px) {
  .Home_Section_One .content {
    top: calc(100vh * 40/100);
  }

  .Home_Section_One .content h1 {
    font-size: 46px;
    line-height: 56px;
  }

  .Home_Section_One .content p {
    font-weight: 400;
    font-size: 24px;
  }
}

/* Additional responsive adjustments for specific breakpoints */
@media (max-width: 1542px) {
  .Bottom_Text_Box {
    width: 43vw;
    font-size: 24px;
  }

  .Top_Text_Box {
    font-size: 24px;
  }
}

@media (max-width: 1232px) {
  .Top_Text_Box {
    height: 150px;
  }
}

@media (max-width: 1207px) {
  .Bottom_Text_Box {
    width: 45vw;
  }
}

@media (max-width: 1155px) {
  .Bottom_Text_Box {
    width: 48vw;
  }
}

@media (max-width: 1081px) {
  .Bottom_Text_Box {
    height: 450px;
  }
}

@media (max-width: 917px) {
  .Top_Text_Box {
    height: 200px;
  }
}

@media (max-width: 805px) {
  .Bottom_Text_Box {
    height: 100%;
  }
}

@media (max-width: 765px) {
  .Top_Text_Box {
    height: 230px;
  }
}

@media (max-width: 1024px) {
  .Home_Section_One .content {
    top: calc(100vh * 45/100);
  }

  .Home_Section_One .content h1 {
    font-size: 40px;
    line-height: 50px;
  }

  .Home_Section_One .content p {
    font-weight: 400;
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  .terokai-link-text {
    height: unset;
  }

  .paragraph-1 {
    font-size: 22px;
    line-height: 37px;
    letter-spacing: 0%;
    padding: 10px 0px !important;
  }

  .paragraph-usp-lrt-scroll {
    width: 100%;
  }

  .heading-1 {
    font-size: 50px !important;
    line-height: 50px !important;
  }

  .bg-image-usp-commercial,
  .bg-image-usp-facilities,
  .bg-image-usp-highway,
  .bg-image-usp-lrt,
  .bg-image-usp-privacy {
    height: 100vh;
  }

  .Terokai_Gaya_Hidup_Link,
  .Terokai_Kemudahan_Link,
  .Terokai_Privasi_Link,
  .Terokai-Laluan-Link,
  .Terokai_Rangkaian_Link {
    width: 300px;
    font-size: 24px;
  }

  .bg-image-usp-commercial-expand,
  .bg-image-usp-facilities-expand,
  .bg-image-usp-highway-expand,
  .bg-image-usp-privacy-expand-img-1 {
    padding-top: 60px;
  }

  .position-absolute-usp-commercial-paragraph,
  .position-absolute-usp-facilities-paragraph,
  .position-absolute-usp-highway-paragraph,
  .position-absolute-usp-privacy-paragraph-1,
  .position-absulate-usp-privacy-expand-section-2-paragraph {
    width: 90%;
    bottom: -4%;
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-menu-usp-commercial-expand {
    width: 100%;
  }
}

/* Tablet & Mobile */
@media (max-width: 768px) {
  #Linkar_Graphic_2 {
    top: 40%;
  }

  .Header_Right {
    height: 30px;
  }

  .Close_Btn,
  .Header_Left .Btn {
    font-size: 8px;
    padding: 4px 8px;
    border-radius: 6px;
  }

  .Header_Left .icon {
    height: 20px;
    width: 20px;
  }

  .Header {
    padding: 12px;
    background-image: linear-gradient(to bottom, rgb(0 0 0 / 70%), rgba(0, 0, 0, 0));
  }

  .Header_Left {
    padding: 8px;
  }

  .Header_Left .header-menu {
    font-size: 24px;
    line-height: 100%;
  }

  .Home_Section_One .expand-section .main_image {
    width: 75%;
    height: 50%;
  }

  .logo-container {
    top: 70px;
  }

  .Home_Section_One .content {
    top: 200px;
  }

  .Home_Section_One .content.top {
    top: 180px;
  }

  .Home_Section_One .content.top p,
  .Home_Section_One .content.top h1 {
    color: white !important;
  }

  .Home_Section_One .content h1 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 400;
  }

  .Home_Section_One .content p {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
  }

  .Home_Section_Two.content h2 {
    font-size: 22px;
    line-height: 25px;
    text-align: center;
    text-transform: uppercase;
  }

  .Home_Section_Two.content {
    padding: 20px;
  }

  .Home_Section_Two.content p {
    font-size: 14px;
    line-height: 14px;
  }

  .Section_Two_Extra_Scroll {
    height: 175vh;
  }

  .bg-image-usp-lrt {
    background-image: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.25) 45%,
        rgba(0, 0, 0, 0.1) 75%),
      url("../m_images/linkar52_50m_to_lrt_2.webp");
    background-position: top;
  }

  .bg-image-usp-highway {
    background-image: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.25) 45%,
        rgba(0, 0, 0, 0.1) 75%),
      url("../m_images/linkar_highway_connection_cover_1.webp");
    background-position: bottom;
  }

  .bg-image-usp-privacy {
    background-image: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.25) 45%,
        rgba(0, 0, 0, 0.1) 75%),
      url("../m_images/usp-privacy.jpg");
    background-position: bottom;
  }

  .bg-image-usp-facilities {
    background-image: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.25) 45%,
        rgba(0, 0, 0, 0.1) 75%),
      url("../m_images/linkar_resort_facilities_cover_1.webp");
    background-position: bottom;
  }

  .bg-image-usp-commercial {
    background-image: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.25) 45%,
        rgba(0, 0, 0, 0.1) 75%),
      url("../m_images/linkar_commercial_shops_cover_1.webp");
    background-position: bottom;
  }

  .USP_Main .heading-1 {
    font-size: 32px !important;
    line-height: 38px !important;
  }

  .USP_Main .paragraph-1 {
    font-size: 22px;
    line-height: 25px;
  }

  .Link_Btn,
  .USP_Main .Terokai_Gaya_Hidup_Link,
  .USP_Main .Terokai_Kemudahan_Link,
  .USP_Main .Terokai_Privasi_Link,
  .USP_Main .Terokai-Laluan-Link,
  .USP_Main .Terokai_Rangkaian_Link {
    font-size: 15px;
    line-height: 0%;
    height: unset;
    margin-top: 16px;
    width: 265px;
    max-width: 100%;
  }

  .Link_Btn .Link_Btn_icon,
  .USP_Main .terokai-link-icon {
    height: 35px;
    width: 35px;
  }

  .Link_Btn {
    width: fit-content;
    min-width: 240px;
    max-width: 100%;
  }

  .Link_Btn .Link_Btn_icon {
    padding: 12px !important;
  }

  .footer-logo {
    height: 50px;
  }

  .footer-section h2 {
    font-size: 22px;
    line-height: 28px;
    text-align: left;
    width: 100%;
  }

  .footer-section h2.M_sm {
    font-size: 16px !important;
    line-height: 22px;
    text-align: left;
    width: 100%;
  }

  .footer-section input {
    font-size: 16px;
    line-height: 22px;
  }

  .footer-section h3 {
    font-size: 18px !important;
    line-height: 24px;
    text-align: left;
    width: 100%;
  }

  .footer-section p {
    font-size: 14px;
    line-height: 22px;
    text-align: left;
    width: 100%;
    font-weight: 400 !important;
  }

  .footer-section .form-check label.small {
    font-size: 10px;
    line-height: 12px;
    text-align: left;
    font-weight: 400 !important;
  }

  .footer-section p.M_SM {
    font-size: 10px;
    line-height: 1.5;
    text-align: justify;
  }

  .Section_Eight_Extra_Scroll p.M_SM {
    font-size: 12px !important;
    line-height: 14px;
    color: #014A49;
    text-shadow: 0 0 5px #FFF, 0 0 75px #ffffff;
  }

  .Section_Eight_Extra_Scroll .imgremark img {
    height: 40px !important;
    object-fit: contain;
  }

  .Section_Eight_Extra_Scroll .content {
    top: 25px !important;
  }

  .Home_Section_Eight .PKNS{
    bottom: 25px !important;
  }

  .section-seven-conatent h3 {
    font-size: 14px !important;
    line-height: 20px !important;
    font-weight: 400 !important;
  }

  .Home_Section_Seven .glide__slide h2 {
    font-size: 14px !important;
    line-height: 20px !important;
  }

  .Home_Section_Seven .glide__slide p {
    font-size: 12px !important;
    line-height: 16px !important;
  }

  .Home_Section_Seven .glide__slide p.M_SM,
  .section-seven-conatent p {
    font-size: 12px !important;
    line-height: 16px !important;
    font-weight: 400 !important;
  }

  .Home_Section_Seven img {
    width: unset !important;
    max-width: 100% !important;
    object-fit: contain !important;
  }

  .bg-image-section-seven {
    padding-top: 10px !important;
    background-image: none;
  }

  .Gallery .top-content {
    padding: 8px;
    width: 50vw;
  }

  .Gallery .bottom-content {
    padding: 8px;
    margin: 20px
  }

  .Gallery .bottom-content p,
  .Gallery .top-content p {
    font-size: 12px !important;
    line-height: 16px !important;
    font-weight: 400 !important;
    text-align: justify;
  }

  .splide__arrow {
    width: 20px !important;
    height: 20px !important;
    margin: 0 -20px !important;
    padding: 4px;
  }

  .Home_Section_Five .Unit_Main_Image .Unit_Title {
    top: -35px;
    left: 25%;
    font-size: 40px;
  }

  .Home_Section_Five .Unit_Description_Box {
    height: 130px;
  }

  .Home_Section_Five .Unit_Description_Box p {
    font-size: 12px !important;
    line-height: 16px !important;
  }

  .Unit_Details_Box .unit_details h2 {
    font-size: 18px !important;
  }

  .Unit_Details_Box .unit_details strong {
    font-size: 22px !important;
  }

  .unit-bar {
    gap: 2px;
  }

  .unit-bar .unit {
    padding: 6px 12px;
    font-size: 10px;
  }

  .tabs,
  .unit-bar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .tabs-container,
  .unit-bar-container {
    overflow-x: visible;
  }

  .Home_Section_Four .content {
    top: 0px;
  }

  .Home_Section_Four h2 {
    font-size: 22px !important;
    line-height: 25px !important;
  }

  .Home_Section_Four p {
    font-size: 12px !important;
    line-height: 14px !important;
  }

  .Home_Section_Three h2 {
    font-size: 22px !important;
    line-height: 25px;
  }

  .Usp-HighwayScroll_Modal .info-btn .distance,
  .Home_Section_Three .info-btn .distance {
    font-size: 12px !important;
    line-height: 14px !important;
  }

  .Usp-HighwayScroll_Modal .info-btn .desc,
  .Home_Section_Three .info-btn .desc {
    font-size: 12px !important;
    line-height: 12px !important;
  }

  .Usp-HighwayScroll_Modal .info-btn .icon,
  .Home_Section_Three .info-btn .icon {
    height: 20px !important;
    width: 20px !important;
    padding: 4px;
  }

  .Home_Section_Three .button-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5% 2.5%;
  }

  .bg-image-loan-calculator {
    background-image: url("../m_images/linkar_52_overall_view1_2.webp");
    padding: 70px 24px;
    height: fit-content !important;
  }

  #monthlyPayment,
  .Loan_Calculator_Scroll_Modal h3 {
    font-size: 18px !important;
    line-height: 24px;
  }

  .Usp_Privacy_Scroll_Modal .Sec_3 h6,
  .Usp_Facilities_Scroll_Modal p,
  .Usp_Commercial_Scroll_Modal p,
  .Usp-HighwayScroll_Modal p,
  .Loan_Calculator_Scroll_Modal h3.M_SM,
  .Loan_Calculator_Scroll_Modal .calculator span,
  .Loan_Calculator_Scroll_Modal .calculator input,
  .Loan_Calculator_Scroll_Modal .calculator label,
  .Loan_Calculator_Scroll_Modal p {
    font-size: 14px !important;
    line-height: 18px !important;
    font-weight: 400 !important;
  }

  .Loan_Calculator_Scroll_Modal .calculator .calculator-input {
    width: 100px !important;
  }

  .Loan_Calculator_Scroll_Modal .calculator .calculator-arrow-btn {
    height: 20px;
  }

  .Loan_Calculator_Scroll_Modal .calculator .calculator-arrow-btn svg {
    height: 12px;
    width: 12px;
  }

  #loanYearsValue {
    width: 20px !important;
  }

  .Usp_Facilities_Scroll_Modal p.M_SM,
  .Usp_Commercial_Scroll_Modal p.M_SM,
  .Usp_Privacy_Scroll_Modal .Sec_3 p,
  .Usp_Privacy_Scroll_Modal p,
  .Usp_Privacy_Scroll_Modal .content-box p,
  .Usp-HighwayScroll_Modal .content-box p,
  .Usp_Lrt_Scroll_Modal p,
  .Loan_Calculator_Scroll_Modal p.M_SM {
    font-size: 12px !important;
    line-height: 16px !important;
    font-weight: 400 !important;
  }

  .bg-image-usp-lrt-expand .content {
    padding-top: 70px;
  }

  .scroll-section {
    border-radius: 16px;
  }

  .Scroll_Section_Footer {
    width: 160px;
  }

  .Scroll_Section_Footer h1 {
    font-size: 12px !important;
  }

  .Close_Btn {
    top: 30px !important;
  }

  .Usp_Privacy_Scroll_Modal .content-box {
    margin-top: -25px !important;
    max-width: 75% !important;
    margin-left: 25%;
  }

  .Usp-HighwayScroll_Modal .content-box {
    margin-top: -25px !important;
    max-width: 85% !important;
  }

  .Usp_Privacy_Scroll_Modal .Grid {
    margin-top: -35px !important;
  }

  .Usp_Privacy_Scroll_Modal .Grid_Img_1 {
    width: 85% !important;
  }

  .Usp_Privacy_Scroll_Modal .Grid .imgremark {
    font-size: 7px !important;
    bottom: 25px !important;
    right: 25px !important
  }

  .Usp_Privacy_Scroll_Modal .Grid_Img_2 {
    margin-top: -24% !important;
  }

  .Usp_Privacy_Scroll_Modal .Grid_Img_1 .content {
    left: 2% !important;
    top: 90% !important;
    z-index: 999 !important;
    width: 75%;
  }

  .Usp_Privacy_Scroll_Modal .Sec_3 .bg-blur {
    height: 180px !important;
    min-height: fit-content !important;
    padding: 20px;
  }

  .Usp_Privacy_Scroll_Modal .Sec_3 .bg-blur img {
    width: 35%;
    object-fit: contain;
    height: unset;
  }

  .Usp_Privacy_Scroll_Modal .Sec_3 {
    background-position: left;
  }

  .Usp_Facilities_Scroll_Modal .content-box,
  .Usp_Commercial_Scroll_Modal .content-box {
    width: 85%;
  }

  .Usp_Commercial_Scroll_Modal .footer-menu-usp-commercial-expand {
    margin-left: 10px !important;
    min-width: 200px;
  }

  .Usp_Facilities_Scroll_Modal .Img_3 img,
  .Usp_Facilities_Scroll_Modal .Img_1 img {
    width: 85% !important;
  }

  .Usp_Facilities_Scroll_Modal .Img_2 {
    width: 60% !important;
  }

  .Usp_Facilities_Scroll_Modal .Img_2 img {
    width: 100% !important;
  }

  .Usp_Facilities_Scroll_Modal .Img_3 {
    margin-top: 24px !important;
  }

  .Usp_Facilities_Scroll_Modal .content-box.two {
    margin-top: -5px !important;
  }
}

@media (max-width: 600px) {
  .imgremark {
    font-size: 7px;
    bottom: 10px;
    right: 10px;
  }
}

/* Large Phone */
@media (max-width: 475px) {
  .Usp_Privacy_Scroll_Modal .content-box {
    max-width: 85% !important;
    margin-left: 15%;
  }

  .Header_Right {
    height: 28px;
  }

  .Header_Left {
    background: none;
    box-shadow: none;
    backdrop-filter: none;
  }

  .Header_Left .header-menu {
    color: #000;
    padding-left: 15px;
  }

  .header-menu-container {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
  }

  .Header_Left .Btn {
    font-size: 22px;
    font-weight: 400;
    border-radius: 20px;
    padding: 10px 15px;
  }

  .Close_Btn {
    font-size: 12px;
    font-weight: 400;
  }

  .Header_Left .icon {
    height: 30px;
    width: 30px;
  }

  .bg-image-loan-calculator {
    padding: 70px 0px;
  }

  .location-image-paragraph p {
    width: 100%;
  }

  .noshowmobile {
    display: none;
  }

  .noshowdesktop {
    display: block;
  }

  .section-seven-conatent {
    padding: 15px;
  }

  .position-absolute-usp-highway-paragraph-change-style,
  .position-absolute-usp-commercial-paragraph-change-style,
  .position-absolute-usp-privacy-paragraph-change-style {
    font-size: 20px !important;
  }

  .position-absolute-usp-facilities-paragraph,
  .position-absolute-usp-commercial-paragraph,
  .position-absolute-usp-highway-paragraph,
  .position-absolute-usp-privacy-paragraph-1,
  .position-absulate-usp-privacy-expand-section-2-paragraph {
    width: 95%;
    bottom: -4%;
    left: 50%;
    transform: translateX(-50%);
  }

  .Terokai_Gaya_Hidup_Link:hover,
  .Terokai_Kemudahan_Link:hover,
  .Terokai_Privasi_Link:hover,
  .Terokai-Laluan-Link:hover,
  .Terokai_Rangkaian_Link:hover {
    background-color: #DA0D82 !important;
    color: #FFFFFF !important;
  }

  .Terokai_Gaya_Hidup_Link:hover .terokai-link-icon,
  .Terokai_Kemudahan_Link:hover .terokai-link-icon,
  .Terokai_Privasi_Link:hover .terokai-link-icon,
  .Terokai-Laluan-Link:hover .terokai-link-icon,
  .Terokai_Rangkaian_Link:hover .terokai-link-icon {
    background-color: rgba(255, 255, 255, 0.8) !important;
    color: rgba(30, 30, 30, 0.5) !important;
  }
}

.Home_Section_Eight,
.Home_Section_Four {
  background-color: white;
}

a:where(:not([class*=wpex-decoration-])):hover {
    text-decoration-line: none !important;
}

@media (max-height: 600px){
  .Section_Eight_Extra_Scroll .py-2.py-md-5{
    padding: 20px 0px !important;
  }

  .Section_Eight_Extra_Scroll .content .M_SM{
    font-size: 15px !important;
  }
}