*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

/* Background */
.top-header {
    background: #0C2436;
    padding: 18px 0;
    color: #d4af37; /* gold */
    font-family: Arial, sans-serif;
}

/* Flex container */
.top-header .container {
    width: 75%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Left section */
.left-info,
.right-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9b9788;
    font-size: 13px;
}

/* Social icons */
.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    background: white;
    color: #0C2436;
    border-radius: 50%;
    font-size: 14px;
    margin-left: 10px;
    transition: 0.3s;
}



@media (max-width: 768px) {
    .top-header  {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        display: none;
    }
    
    .left-info,
    .right-info {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
}








.navbar-scroll {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: transform 0.35s ease-in-out;
}

/* When hidden (scroll down) */
.navbar-scroll.hide {
  transform: translateY(-100%);
}

/* When shown (scroll up) */
.navbar-scroll.show {
  transform: translateY(0);
}



.navbar-section {
  width: 100%;
  background: #ffffff;
  padding: 30px 40px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  position: relative;
  z-index: 100;
  position: fixed;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 55px;
}

/* ---------- DESKTOP NAV LINKS ---------- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links a,
.nav-links button {
  font-size: 16px;
  font-weight: 600;
  color: #222121;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links button:hover {
  color: #ce9e39;
}


.nav-links .active {
  color: #ce9e39;
}

.quote-btn {
  background: #d4af37 !important;     /* your required color */
  padding: 12px 28px;
  border-radius: 8px;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  transition: transform 0.4s ease;
  text-decoration: none;
  border: none;
}


.quote-btn::after {
  display: none !important;
}


.quote-btn:hover .arrow-1 {
  transform: translateX(4px);
}

.quote-btn:hover{
  transform: scale(1.05);  
}


/* ---------- HAMBURGER ---------- */
.hamburger {
  width: 24px;
  height: 19px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  background: #000;
  width: 100%;
  transition: 0.3s;
}

/* Hamburger into X */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
    display: none;
}


/* ---------- MOBILE VERSION ONLY ---------- */
@media(max-width: 900px) {

  /* Hide desktop nav */
  .nav-links {
    display: none;
  }

  /* Show hamburger */
  .hamburger {
    display: flex;

  }

  /* Adjust header spacing */
  .navbar-section {
    padding: 25px 40px;
  }

  /* ---------- MOBILE MENU (BOTTOM SLIDE) ---------- */
  .mobile-menu {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    min-height: 73vh;                          /* space at bottom */
    background: #ffffff;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: bottom 0.45s ease;
    z-index: 999999;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    overflow-y: auto;
    font-family: 'Poppins', sans-serif;
  font-weight: 600;
  }

  /* Mobile links */
  .mobile-menu a {
    font-size: 13px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
  }

  .mobile-menu a.active {
    color: #d4af37;
  }

  /* Slide up active */
  .mobile-menu.active {
    bottom: 0;
  }

  /* Request Quote button */
  .quote-btn {
    background: #d4af37;
    padding: 12px 25px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white !important;
    font-weight: 700;
    width: 70%;
  }

  .arrow-circle {
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #d4af37;
    font-weight: bold;
  }
  .logo img{
    height: 40px;
  }

  /* Overlay */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 999;
  }

  .overlay.active {
    opacity: 1;
    pointer-events: all;
  }
}





/* --- NAV LINK BASE STYLE (ONLY THESE HAVE UNDERLINE) --- */
.nav-links a:not(.quote-btn),
.nav-links button {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/* Text color on hover */
.nav-links a:not(.quote-btn):hover,
.nav-links button:hover {
  color: #d8ae41;
}

/* --- UNDERLINE EFFECT FOR MENU ITEMS ONLY --- */
.nav-links a:not(.quote-btn)::after,
.nav-links button::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: #d8ae41;
  transition: width 0.28s ease;
  border-radius: 2px;
}

/* Hover underline */
.nav-links a:not(.quote-btn):hover::after,
.nav-links button:hover::after {
  width: 100%;
}

/* Active link underline */
.nav-links .active:not(.quote-btn)::after {
  width: 100%;
}

.nav-links .active:not(.quote-btn) {
  color: #d8ae41;
  
}











.desktop-hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.slider-track {
    display: flex;
    width: 400%;
    height: 100%;
    transition: transform 1s ease-in-out;
}

.slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------------- CONTENT ---------------- */

.content {
    position: absolute;
    top: 18%;
    left: 8%;
    width: 40%;
    color: #0A2030;
}

.content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.content h1 {
    font-size: 70px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 28px;
}

.content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Video Button like screenshot */
.video-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.video-btn {
    width: 95px;
    height: 95px;
    background: #E3B43F;
    border-radius: 50%;
    color: white;
    font-size: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.video-btn::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(227,180,63,0.25);
    border-radius: 50%;
    z-index: -1;
}

.video-wrapper span {
    font-size: 18px;
    font-weight: 600;
}






.cms-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 22px;
    border-radius: 6px;
    background: #ffffff;
    color: #e1b64c;
    font-family: Roboto, sans-serif;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    transition: all .3s ease-in-out;
}

.cms-arrow-circle {
    width: 35px;
    height: 35px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cms-arrow-circle i {
    color: black;
}
.cms-arrow-circle:hover{
background-color: #ffffff;
}

.cms-arrow {
    font-size: 15px;
    display: inline-block;
}

/* On hover: button color change like Manvik */
.cms-btn:hover {
    background: #e1b64c;
    color: #ffffff;
    border-color: #fff;
}

/* LEFT → RIGHT ANIMATION */
.cms-btn:hover .cms-arrow,
.cms-btn:hover .cms-arrow-circle {
    animation: manvikMove .45s ease-out forwards;
}






@keyframes manvikMove {
    0% {
        transform: translateX(0);
    }
    30% {
        transform: translateX(-30px); /* move left slightly */
    }
    100% {
        transform: translateX(2px); /* final right motion */
    }
}


/* ---------------- ARROWS ---------------- */

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 60px;
    color: #E3B43F;
    cursor: pointer;
    z-index: 10;
}

.left { left: 40px; }
.right { right: 40px; }










/* Hide on desktop/tablet */
.mobSlideWrap {
    display: none;
}

@media (max-width: 768px) {
  .desktop-hero-slider{
    display: none;
  }
    .mobSlideWrap {
        display: block;
        width: 100%;
        overflow: hidden;
        position: relative;
        margin-top: 90px;
    }

    .mobSlideTrack {
        display: flex;
        width: 100%;
        transition: transform 0.6s ease-in-out;
    }

    .mobSlideItem {
        min-width: 100%;
        height: 260px;
    }

    .mobSlideItem img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
}







/* MOBILE ONLY */
@media (min-width: 768px){
    .vxs-hero-area { display: none; }
}


.vxs-slide {
    width: 100%;
    min-width: 100%;
    flex-shrink: 0 !important; /* <— stops shrinking */
}

.vxs-text {
    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
}


.vxs-slide {
    box-sizing: border-box;
}



.vxs-hero-area {
    padding: 20px;
    font-family: Arial, sans-serif;
}

/* Slider wrapper */
.vxs-slider-box {
    width: 100%;
    overflow: hidden;
}

.vxs-slider-line {
    display: flex;
    width: 100%;
    transition: transform .7s ease-in-out;
}

/* Single slide */
.vxs-slide {
    width: 100%;
    min-width: 100%;
    padding: 10px 5px;
    box-sizing: border-box;
}

/* Colors same as screenshot */
.vxs-sub {
    font-size: 16px;
    font-weight: 700;
    color: #0B2B3A;
    text-align: left;
    opacity: 0;
    transform: translateX(150px);
}

.vxs-title {
    font-size: 41px;
    font-weight: 600;
    line-height: 1.05;
    margin: 10px 0;
    color: #0B2B3A;
    opacity: 0;
    transform: translateX(100px);
}

.vxs-text {
    font-size: 18px;
    margin-bottom: 20px;
    color: #0B2B3A;
    opacity: 0;
    transform: translateX(70px);
    line-height: 1.8;
    margin-top: 20px;
    font-family: Arial, sans-serif;
}

/* Button */
.vxs-btn {
    display: inline-flex;
    align-items: center;
    background: #E6C15B;
    padding: 12px 18px;
    border-radius: 12px;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    opacity: 0;
    transform: translateX(80px);
}

.vxs-btn-icon img {
    width: 20px;
    margin-right: 8px;
}

/* Animation */
@keyframes vxsSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.vxs-slide.active .vxs-sub {
    animation: vxsSlideIn .5s ease forwards;
}

.vxs-slide.active .vxs-title {
    animation: vxsSlideIn .5s ease forwards;
    animation-delay: .25s;
}

.vxs-slide.active .vxs-text {
    animation: vxsSlideIn .5s ease forwards;
    animation-delay: .45s;
}

.vxs-slide.active .vxs-btn {
    animation: vxsSlideIn .5s ease forwards;
    animation-delay: .65s;
}










.xgr-products-area {
    
    padding: 40px 200px;
    background: #fff;
    box-sizing: border-box;
}

/* GRID SYSTEM */
.xgr-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
}

/* CARD BASE */
.xgr-card {
    background: #ffffff;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    transition: .3s ease;
}

.xgr-icon-box img {
    width: 70px;
    opacity: .9;
}

/* TITLE */
.xgr-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #0B2B3A;
    line-height: 1.25;
    margin-bottom: 10px;
    margin-top: 10px;
}

/* DESCRIPTION */
.xgr-desc {
     font-family: 'Inter', Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #9B9B9B;
    line-height: 1.90;
    margin-bottom: 25px;
}

/* BUTTON */
.xgr-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E6C15B;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: #000;
    font-weight: 700;
    transition: .3s ease;
}

/* BOTTOM LINE ANIMATION */
.xgr-bottom-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: #E6C15B;
    transform: translateX(-50%);
    transition: width .4s ease;
}

/* HOVER EFFECT */
.xgr-card:hover .xgr-btn {
    background: #d8b04a;
}

.xgr-card:hover .xgr-bottom-line {
    width: 100%;
}


.xgr-card {
    position: relative;
    bottom: 100px;
}

/* vertical divider */
.xgr-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: -1px;
    width: 1px;
    height: 100%;
    background: #ededed;
}

/* hide line on mobile */
@media (max-width: 768px) {
    .xgr-card::after {
        display: none;
    }

    .xgr-products-area{
      padding: 20px;
    }
    .xgr-card{
      padding-top: 10px;
      padding-bottom: 30px;
      top: 2px;
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .xgr-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .xgr-products-grid {
        grid-template-columns: 1fr;
    }

    .xgr-card {
        text-align: left;
    }
}








/* MAIN WRAPPER */
.pgx-full-section {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding-left: 150px;
    padding-right: 150px;
    font-family: 'Inter', Arial, sans-serif;
}

/* LEFT SIDE */
.pgx-left-side {
    flex: 1;
}

.pgx-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.pgx-main-img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

/* FLOATING YELLOW BOX */
.pgx-info-box {
    position: absolute;
    bottom: 10px;
    left: 200px;
    width: 280px;
    background: #E6C15B;
    padding: 20px;
    border-radius: 12px;
        font-family: "Inter", Arial, sans-serif;

}

.pgx-info-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pgx-info-text {
    color: #fff;
    opacity: 0.9;
    font-size: 14px;
    line-height: 1.5;
}

/* RIGHT SIDE */
.pgx-right-side {
    flex: 1;
    padding-left: 150px;
    padding-right: 50px;
}

.pgx-tag {
    color: #CDA249;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pgx-main-title {
    font-size: 34px;
    font-weight: 600;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 20px;

}

.pgx-main-desc {
    font-size: 15px;
    color: #9B9B9B;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 100;
}

.pgx-founder {
    font-size: 20px;
    font-weight: 700;
    color: #0B2B3A;
}

.pgx-founder-role {
    font-size: 14px;
    color: #CDA249;
}




/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .pgx-full-section {
        flex-direction: column;
        padding: 0px;
    }
    .pgx-right-side{
      padding: 10px;
    }

    .pgx-info-box {
        width: 10%;
        left: 5%;
        bottom: 15px;
    }
}

@media (max-width: 576px) {
    .pgx-main-title {
        font-size: 26px;
    }

    .pgx-info-box {
        width: 90%;
        padding: 15px;
    }
}










/* Main Wrapper */
.zx-info-wrap {
  width: 100%;
  padding: 80px 20px;
  background-image: url("blue-background.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #ffffff;
}

/* Content Container */
.zx-info-container {
  max-width: 1250px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.zx-info-container a{
  text-decoration: none;
}
/* Left Side */
.zx-left-block {
  width: 48%;
}

.zx-sub-heading {
  color: #f2c447;
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: 600;
}

.zx-main-heading {
  font-size: 36px;
  line-height: 1.35;
  font-weight: 700;
}

/* Right Side */
.zx-right-block {
  width: 48%;
}

.zx-description {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 30px;
}

.zx-explore-btn {
  background: transparent;
  border: 1.5px solid #f2c447;
  color: #f2c447;
  padding: 12px 26px;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.zx-explore-btn span {
  font-size: 18px;
}

/* Hover effect */
.zx-explore-btn:hover {
  background: rgba(242, 196, 71, 0.1);
}

/* ---------------------------- */
/* RESPONSIVE DESIGN */
/* ---------------------------- */
@media (max-width: 992px) {
  .zx-info-container {
    flex-direction: column;
    text-align: left;
  }
.zx-info-wrap {
  padding: 20px;
}


  .zx-left-block,
  .zx-right-block {
    width: 100%;
  }

  .zx-main-heading {
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  .zx-main-heading {
    font-size: 26px;
  }

  .zx-description {
    font-size: 14px;
  }

  .zx-explore-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}








.gx-wrap-box {
  padding: 60px 20px;
  background-image: url("blue-background.png");
  background-size: cover;
  background-position: center;
  
}

.gx-slider-shell {
  width: 100%;
  overflow: hidden;
}

.gx-track-line {
  display: flex;
  transition: 0.5s ease;
}

/* DESKTOP (unchanged layout) */
@media (min-width: 769px) {
  .gx-slide-row {
    min-width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }

  .gx-card-unit {
    width: 25%;
  }

  .gx-dots-mobile { display: none; }
}

/* MOBILE (1 card per slide) */
@media (max-width: 768px) {
  .gx-slide-row {
    min-width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .gx-wrap-box{
    padding: 20px;
  }

  .gx-card-unit {
    width: 100%;
    max-width: 380px;
  }

  .gx-dots-desktop { display: none; }
}

/* CARD DESIGN */
.gx-card-unit {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

/* .gx-card-unit:hover {
  transform: translateY(-6px);
} */
.gx-topbar {
  width: 240px;
  height: 3px;
  background: transparent;          /* base hidden */
  display: block;
  margin: 0 auto 15px auto;
  position: relative;
  bottom: 23px;
  overflow: hidden;
}

/* animated line */
.gx-topbar::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 100%;
  height: 100%;
  background: #f2c447;
  border-radius: 8px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}

.gx-card-unit:hover .gx-topbar::before {
  transform: translateX(-50%) scaleX(1);
}

.gx-card-unit:hover .gx-topbar::before {
  box-shadow: 0 0 10px rgba(242, 196, 71, 0.8);
}



.gx-icon-img {
  width: 100%;
  margin-bottom: 15px;
}

/* DOTS COMMON STYLE */
.gx-dots-desktop,
.gx-dots-mobile {
  text-align: center;
  margin-top: 20px;
}

.gx-dot-ball,
.gx-dot-m {
  width: 10px;
  height: 10px;
  background: #777;
  border-radius: 50%;
  display: inline-block;
  margin: 0 4px;
  cursor: pointer;
}



.gx-dot-ball.active,
.gx-dot-m.active {
  background: #f2c447;
  ;
}






/* CARD */
.gx-card-unit {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 60px 32px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  text-align: left;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* card hover lift */
.gx-card-unit:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.18);
}




.gx-icon-img {
  width: 70px;
  height: auto;
  margin-bottom: 22px;
}

.gx-card-unit h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 14px;
  font-family: "Inter", "Roboto", sans-serif;
}

.gx-card-unit p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #9a9a9a;
  font-family: "Inter", "Roboto", sans-serif;
  margin-bottom: 26px;
}





@media (max-width: 768px) {

  /* flatten rows into cards */
  .gx-track-line {
    display: flex;
  }

  .gx-slide-row {
    display: contents; /* 🔥 KEY FIX0 */
  }

  .gx-card-unit {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 auto;
  padding: 36px 20px 32px;
  }
}



.gx-card-unit img {
  display: block;
}


/* ========================= */
/* BUTTON BASE (hidden text) */
/* ========================= */

.zoom-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}

/* Arrow circle */
.zoom-icon {
  width: 36px;
  height: 36px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease;
}

.zoom-icon img {
  width: 14px;
}

/* Text hidden by default */
.zoom-text {
  opacity: 0;
  transform: scale(0.6);
  transform-origin: left center;
  transition: all 0.35s ease;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #E3B43F;
  white-space: nowrap;
}



/* Arrow animation when CARD hovered */
.gx-card-unit:hover .zoom-icon {
  background: #E3B43F;
  animation: arrowMove 0.45s ease-in-out;
}

/* Text zoom-in when CARD hovered */
.gx-card-unit:hover .zoom-text {
  opacity: 1;
  transform: scale(1);
}











.cs-satisfaction {
  width: 100%;
  padding: 40px 20px;
  background-image: url("blue-background.png"); /* replace */
  background-size: cover;
  background-position: center;
}

.cs-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #ffffff;
}

/* Stars */
.cs-stars {
  font-size: 20px;
  color: #f2c447;
  letter-spacing: 2px;
  white-space: nowrap;
}

/* Text */
.cs-text {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 16px;
}

.cs-highlight {
  color: #f2c447;
  font-weight: 700;
}

.cs-muted {
  color: #cfd8dc;
  font-weight: 400;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */
@media (max-width: 768px) {
  .cs-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .cs-satisfaction{
    padding: 20px;
  }

  .cs-stars {
    font-size: 18px;
  }

  .cs-text {
    font-size: 15px;
  }
}












.ppgi-section {
  background: #ffffff;
  padding: 70px 20px;
}

.ppgi-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* LEFT CONTENT */
.ppgi-content {
  background: #ffffff;
  padding: 50px 45px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  position: relative;
  flex: 1;
}

/* Yellow vertical line */
.ppgi-line {
  position: absolute;
  left: 0;
  top: 50px;
  width: 4px;
  height: 60px;
  background: #f2c447;
}

/* Description */
.ppgi-desc {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #8f8f8f;
  margin-bottom: 28px;
}

/* Bullet list */
.ppgi-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ppgi-list li {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 15.5px;
  color: #8f8f8f;
  margin-bottom: 14px;
  padding-left: 28px;
  position: relative;
}

/* Check icon */
.ppgi-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #f2c447;
  font-weight: 700;
}

/* RIGHT IMAGE */
.ppgi-image {
  flex: 1;
}

.ppgi-image img {
  width: 100%;
  border-radius: 20px;
}

/* ====================== */
/* RESPONSIVE */
/* ====================== */
@media (max-width: 768px) {
  .ppgi-container {
    flex-direction: column;
  }
.ppgi-section {
  padding: 20px;
}

  .ppgi-content {
    padding: 40px 25px;
  }

  .ppgi-line {
    top: 30px;
  }
}


@media (max-width: 768px) {
  .ppgi-container {
    flex-direction: column;
  }

  /* IMAGE FIRST */
  .ppgi-image {
    order: 1;
  }

  /* CONTENT AFTER */
  .ppgi-content {
    order: 2;
  }
}











.ppgi-hero {
  background: #f9f9f9;
  padding: 80px 20px;
}

.ppgi-hero-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT */
.ppgi-subtitle {
  color: #e3b43f;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  font-family: "Inter", "Roboto", sans-serif;
}

.ppgi-title {
  font-size: 35px;
  font-weight: 700;
  color: #000;
  line-height: 1.25;
  font-family: "Inter", "Roboto", sans-serif;
}

/* RIGHT */
.ppgi-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #000;
  font-family: "Inter", "Roboto", sans-serif;
  max-width: 520px;
  margin-bottom: 30px;
}

/* BUTTONS */
.ppgi-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.ppgi-btn-primary {
  background: #e3b43f;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Inter", "Roboto", sans-serif;
}

.ppgi-btn-icon {
  width: 28px;
  height: 28px;
  background: #fff;
  color: #e3b43f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Secondary */
.ppgi-btn-secondary {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Inter", "Roboto", sans-serif;
}

.ppgi-btn-icon-outline {
  width: 28px;
  height: 28px;
  border: 2px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */
@media (max-width: 900px) {
  .ppgi-hero-inner {
    flex-direction: column;
    gap: 40px;
  }
  .ppgi-hero{
    padding: 20px;
  }

  .ppgi-title {
    font-size: 34px;
  }

  .ppgi-desc {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .ppgi-title {
    font-size: 28px;
  }

  .ppgi-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}















.mx-slider-zone {
  padding: 60px 20px;
  background: #f4f6f7;
  overflow: hidden;
}

.mx-flow-track {
  display: flex;
  transition: transform 0.4s ease;
}

.mx-info-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  margin: 0 12px;
  flex: 0 0 25%;
}

.mx-info-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.mx-info-body {
  padding: 22px;
}

.mx-info-body h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.mx-info-body p {
  font-size: 14.5px;
  color: #8b8b8b;
  line-height: 1.7;
}

.mx-read-btn {
  display: inline-flex;
  margin-top: 14px;
  padding: 8px 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  color: #000;
}

/* CONTROLS */
.mx-control-bar {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.mx-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #000;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
}

.mx-dot-wrap {
  display: flex;
  gap: 8px;
}

.mx-dot {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
}

.mx-dot.active {
  background: #e3b43f;
}

/* MOBILE */
@media (max-width: 768px) {
  .mx-slider-zone {
    overflow: hidden;
    padding: 20px;
  }
  

  .mx-flow-track {
    display: flex;
    width: 96%;          /* 5 slides */
  }

  .mx-info-card {
    flex: 0 0 96%;
    margin: 8px;            /* 🔥 REMOVE margins */
  }
}


@media (min-width: 769px) {
  .mx-dot:nth-child(n+3) {
    display: none; /* hide dot 3,4,5 on desktop */
  }
}
@media (min-width: 769px) {
  .mx-info-card {
    flex: 0 0 25%; /* 4 cards */
  }
}









.dr-frame-section {
  padding: 60px 20px;
  background: #f4f6f7;
}

.dr-frame-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.dr-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.35s ease;
  padding: 25px;
}

.dr-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

/* BODY */
.dr-card-body {
  padding: 26px;
}

.dr-tag {
  font-size: 13px;
  color: #e3b43f;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}

.dr-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
  color: #000;
}

.dr-card p {
  font-size: 14.5px;
  color: #8b8b8b;
  line-height: 1.7;
}

/* ⭐ CENTER CARD HOVER (YELLOW) */
.dr-highlight:hover {
  background: #e3b43f;
}

.dr-highlight:hover h3,
.dr-highlight:hover p,
.dr-highlight:hover .dr-tag {
  color: #ffffff;
}

/* HOVER LIFT */
.dr-card:hover {
  transform: translateY(-8px);
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .dr-frame-grid {
    grid-template-columns: 1fr;
  }
  .dr-frame-section{
    padding: 20px;
  }

  .dr-card img {
    height: 200px;
  }
}









.yn-exp-section {
  background: #e3b43f; /* yellow */
  padding: 80px 20px;
}

.yn-exp-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

/* LEFT */
.yn-exp-left h2 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 50px;
}

.yn-stats {
  display: flex;
  gap: 50px;
}

.yn-stat-box h3 {
  font-size: 54px;
  color: #fff;
  margin-bottom: 10px;
}

.yn-stat-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
}

.yn-stat-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: #fff;
  opacity: 0.95;
}

.yn-links {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.yn-links a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
}

/* RIGHT MAP */
.yn-exp-right iframe {
  width: 100%;
  height: 420px;
  border: none;
  border-radius: 16px;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .yn-exp-wrap {
    grid-template-columns: 1fr;
  }
  .yn-exp-section{
    padding: 20px 20px;
  }

  .yn-exp-left h2 {
    font-size: 30px;
  }

  .yn-stats {
    flex-direction: column;
    gap: 40px;
  }

  .yn-exp-right iframe {
    height: 300px;
  }
}












.ds-cta-section {
background: #ffffff;
  padding: 60px 20px;
  position: relative;
}

.ds-cta-wrap {
  max-width: 1200px;
  margin: auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 50px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

/* BOX */
.ds-cta-box {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

/* ICON */
.ds-cta-icon {
  width: 56px;
  height: 56px;
  border: 2px solid #e3b43f;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #e3b43f;
  flex-shrink: 0;
}

/* CONTENT */
.ds-cta-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.ds-cta-content p {
  font-size: 14.5px;
  color: #8b8b8b;
  line-height: 1.7;
  margin-bottom: 14px;
}

.ds-cta-link {
  font-size: 14px;
  font-weight: 600;
  color: #e3b43f;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* DIVIDER */
.ds-divider {
  width: 1px;
  height: 120px;
  background: #e6e6e6;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .ds-cta-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 24px;
  }
  .ds-cta-section{
    padding: 20px 20px;
  }

  .ds-divider {
    display: none;
  }
}












.ts-section {
  padding: 80px 20px;
  background: #ffffff;
}

.ts-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.ts-header {
  text-align: center;
  margin-bottom: 60px;
}

.ts-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #00263a;
  margin-bottom: 12px;
}

.ts-header p {
  font-size: 15px;
  color: #7a7a7a;
}

/* GRID */
.ts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

/* CARD */
.ts-card {
  position: relative;
}

/* RATING */
.ts-rating {
  color: #e3b43f;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
}

.ts-rating span {
  margin-left: 10px;
  font-size: 16px;
}

/* BODY */
.ts-body {
  display: flex;
  gap: 18px;
}

.ts-quote {
  width: 52px;
  height: 52px;
  border: 2px solid #e3b43f;
  border-radius: 50%;
  color: #7ac943;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.ts-body p {
  font-size: 17px;
  line-height: 1.9;
  color: #00263a;
}

/* USER */
.ts-user {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.ts-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 3px solid #e3b43f;
  background: #e9ecef;
}

.ts-user h4 {
  font-size: 16px;
  margin-bottom: 4px;
  color: #000;
}

.ts-user span {
  font-size: 14px;
  color: #6b6b6b;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .ts-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .ts-section{
    padding: 20px 20px;
  }

  .ts-header h2 {
    font-size: 28px;
  }

  .ts-body p {
    font-size: 16px;
  }
}















.mk-footer {
  background: linear-gradient(180deg, #0b2539, #081f30);
  color: #cfd8df;
  padding-top: 70px;
}

.mk-footer-col{
  font-size: 10px;
}

.mk-footer-col li{
  color: #b7c3cc;
  font-size: 14px;
  text-decoration: none;
  font-weight: 100;
}

.mk-footer-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
}

/* HEADINGS */
.mk-footer h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 18px;
}

/* TEXT */
.mk-footer p,
.mk-footer address {
  font-size: 14.5px;
  line-height: 1.8;
  color: #b7c3cc;
  font-style: normal;
  font-weight: 100;
}

/* LINKS */
.mk-footer a {
  color: #b7c3cc;
  font-size: 14.5px;
  text-decoration: none;
  font-weight: 100;
}
.mk-footer a:hover{
  color: #ffffff;
}

.mk-footer ul {
  list-style: none;
  padding: 0;
}

.mk-footer ul li {
  margin-bottom: 10px;
}

/* PHONE */
.mk-phone {
  display: inline-block;
  margin: 16px 0;
  color: #e3b43f;
  font-weight: 700;
  font-size: 18px;
}

/* CTA BUTTON */
.mk-catalog-btn {
  display: inline-block;
  background: #e3b43f;
  color: #000;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 700;
  margin-top: 10px;
}

/* SOCIAL */
.mk-social {
  margin-top: 26px;
  display: flex;
  gap: 14px;
}

.mk-social a {
  width: 42px;
  height: 42px;
  border: 1px solid #415c6f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* BOTTOM BAR */
.mk-footer-bottom {
  background: #071a29;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13.5px;
}

.mk-footer-bottom span a {
  color: #e3b43f;
}

/* 📱 RESPONSIVE */
@media (max-width: 992px) {
  .mk-footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .mk-footer-inner {
    grid-template-columns: 1fr;
  }

  .mk-footer-bottom {
    text-align: center;
    justify-content: center;
  }
}













/* FIXED BUTTON WRAPPER */
.fx-contact-buttons {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* COMMON BUTTON STYLE */
.fx-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* ICON SIZE */
.fx-btn span {
  display: inline-block;
}

/* CALL BUTTON */
.fx-call {
  background: #1e88e5;
}

/* WHATSAPP BUTTON */
.fx-whatsapp {
  background: #25d366;
}

/* HOVER EFFECT */
.fx-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* 📱 MOBILE OPTIMIZATION */
@media (max-width: 576px) {
  .fx-btn {
    padding: 14px;
    border-radius: 50%;
  }

  .fx-btn span {
    display: none; /* show only icon on mobile */
  }
}














  .about-section {
    padding: 60px 15px;
    background: #fafafa;
    font-family: Arial, sans-serif;
  }
  .about-section .container {
    max-width: 1200px;
    margin: auto;
  }
  .about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
  }
  .about-text {
    flex: 1 1 500px;
  }
  .about-text h2 {
    font-size: 2.6rem;
    margin-bottom: 15px;
    color: #222;
  }
  .about-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
  }
  .about-text ul {
    padding-left: 20px;
  }
  .about-text ul li {
    margin-bottom: 10px;
    color: #444;
    font-weight: 500;
  }
  .about-image {
    flex: 1 1 400px;
    text-align: center;
  }
  .about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }

  @media (max-width: 768px) {
    .about-content {
      flex-direction: column;
      text-align: left;
    }
    .about-section{
      padding: 20px 20px;
    }
    .about-text h2 {
      font-size: 2.2rem;
    }
  }









  .contact-simple {
  padding: 80px 15px;
  background: #f8f8f8;
  font-family: Arial, sans-serif;
}

.contact-box {
  max-width: 850px;
  margin: auto;
  background: #ffffff;
  padding: 45px;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.contact-box h2 {
  font-size: 2.6rem;
  color: #222;
  margin-bottom: 15px;
}

.contact-desc {
  color: #555;
  line-height: 1.7;
  margin-bottom: 35px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-row .icon {
  font-size: 1.8rem;
}

.contact-row h4 {
  margin: 0 0 5px;
  color: #000;
  font-size: 1.1rem;
}

.contact-row a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.contact-row p {
  margin: 0;
  color: #555;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 600px) {
  .contact-box {
    padding: 30px 20px;
  }

  .contact-box h2 {
    font-size: 2.2rem;
  }

  .contact-row {
    gap: 12px;
  }
}











.terms-wrapper {
  padding: 80px 15px;
}

.terms-container {
  max-width: 1100px;
  margin: auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.terms-container h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  color: #222;
}

.terms-container h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #000;
}

.terms-container p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}

.terms-container a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.terms-container a:hover {
  text-decoration: underline;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .terms-container {
    padding: 30px 20px;
  }

  .terms-container h1 {
    font-size: 2.2rem;
  }

  .terms-container h3 {
    font-size: 1.1rem;
  }
  .terms-wrapper{
    padding: 20px 15px;
  }
}