/* Header transitions */



/* Step 1: Load the font */
@font-face {
  font-family: 'Oldschool Grotesk';
  src: url('/fonts/OldschoolGrotesk.woff2') format('woff2'),
    url('/fonts/OldschoolGrotesk.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  /* prevents invisible text while loading */
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Step 2: Apply it globally */
body {
  font-family: 'Oldschool Grotesk', ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue',
    Arial, 'Noto Sans', sans-serif,
    'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}


:root {
  --fa-teal: #08847A;
  --fa-purple: #7c3aed;
  --fa-blue: #1d4ed8;
  --fa-green: #16a34a;
  --fa-yellow: #eab308;
  --fa-orange: #ea580c;
  --fa-red: #dc2626;
  --trail-min: 140;
  --trail-max: 240;
  --trail-life: 3000ms;
  --trail-opacity: 1;
  --trail-scale-end: .98;
  --trail-radius: 12px;
  --background-color-light: #ffffff;
  --text-color-light: #000000;
  --background-color-dark: #333333;
  --text-color-dark: #ffffff;
    --qc-green:#0e8a50;
    --qc-dark:#111418;
    --qc-muted:#5a5f69;
    --qc-bg:#f7f7f8;
    --qc-shadow:0 8px 24px rgba(0,0,0,.08);
    --qc-radius:18px;
}


body {
  background-color: var(--background-color-light);
  color: var(--text-color-light);
  transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark-mode {
  background-color: var(--background-color-dark);
  color: var(--text-color-dark);
}


/* Hemburger Menu Dark */


body.dark-mode #toggleIcon {
  color: var(--text-color-dark);

}




#mainHeader .container-lg {
  width: 100%;
  max-width: 100%;
  transition: all 0.4s ease-in-out;
  margin-top: 10px;
}

#mainHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  /* keeps header above all content */
  background: #fff;
  /* ensure it's visible */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

#mainHeader.scrolled {
  padding: 2rem 0;
}

#mainHeader.scrolled .container-lg {
  background-color: rgba(243, 244, 246, 0.6);
  border-radius: 9999px;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 74%;
  margin: 0 auto;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

/* Mega menu */
.mega-menu {
  width: 770px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  margin-top: 12px;
}

/* Mega Menu Dark */

body.dark-mode .mega-menu {
  background-color: var(--background-color-dark);
  color: var(--text-color-dark);
}


body.dark-mode .dark {

  color: gray !important;
}



/* Hover dropdown */

.hover-dropdown:hover .dropdown-menu {
  display: block !important;
  opacity: 1;
  visibility: visible;
}

@media (max-width: 820px) {
  .hero {
    background-size: contain !important;
    height: 470px !important;
    background-repeat: no-repeat !important;
  }
}

@media (max-width: 425px) {
  .hero {
    background-size: contain !important;
    height: 218px !important;
    background-repeat: no-repeat !important
  }
}


@media (max-width: 377px) {
  .hero {
    background-size: contain !important;
    height: 218px !important;
    background-repeat: no-repeat !important;
    width: 378px !important;
  }
}

.image_header_btn {
  position: absolute;
  bottom: 60px;
  left: 240px;
}


@media(min-width:1441px) {
  .image_header_btn {
    position: absolute;
    bottom: 60px;
    left: 327px;
  }
}

@media(max-width:1337px) {
  .image_header_btn {
    position: absolute;
    bottom: 60px;
    left: 199px;
  }
}

@media(max-width:1314px) {
  .image_header_btn {
    position: absolute;
    bottom: 60px;
    left: 199px;
  }
}


@media(max-width:1300px) {
  .image_header_btn {
    position: absolute;
    bottom: 60px;
    left: 145px;
  }
}

@media(max-width:1264px) {
  .image_header_btn {
    position: absolute;
    bottom: 60px;
    left: 113px;
  }

}


@media(max-width:1025px) {
  .image_header_btn {
    position: absolute;
    bottom: 81px;
    left: 27px;
  }


}

@media(max-width:769px) {
  .image_header_btn {
    position: absolute;
    bottom: -6px;
    left: 221px;
  }

}

@media(max-width:430px) {
  .image_header_btn {
    position: absolute;
    bottom: -32px;
    left: 65px;
  }

}


@media(max-width:370px) {
  .image_header_btn {
    position: absolute;
    bottom: -23px;
    left: 41px;
  }

}

.mega-menu::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 200px;
  width: 200px;
  height: 20px;
  border-radius: 2px;
  z-index: 1;
}

/* Hover effect on service items */

.hover-bg:hover {
  background-color: #f8f9fa;
}

/* Mobile menu off-canvas */
#mobileMenu {
  position: fixed;
  top: 0;
  left: -100%;
  /* Hidden by default */
  height: 100vh;
  /* Full screen height */
  width: 70%;
  /* Half or 70% width */
  max-width: 320px;
  /* Optional limit */
  background: #fff;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  z-index: 1050;
  transition: left 0.4s ease-in-out;
  border-radius: 0;
  /* remove rounded corners */
  padding: 1rem;
}

/* When active */
#mobileMenu.active {
  left: 0;
}

/* Optional backdrop */
.mobile-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1040;
  display: none;
}

.mobile-backdrop.show {
  display: block;
}



/* Who we help */




/* Dark Mode color why pcg */


body.dark-mode .pcg-hero-static {
  background-color: black;
  color: #ffffff;
  /* Light text */
  padding: 20px 24px 28px 24px;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  position: relative;

}



.pcg-hero-inner-static {

  margin-top: 10px;
}

.pcg-hero-static h1 {
  margin: 0 0 6px 0;
  font-size: clamp(26px, 3.2vw, 34px);
  line-height: 1.15;
  color: #ff8a00;
  font-weight: 900;
  letter-spacing: .2px;
}

.pcg-hero-static p {
  margin: 0;
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.35;
  color: #eaf3f3;
  font-weight: 700;
}

/* Grid of points */
.pcg-grid-static {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
  padding: 22px 22px 26px;
}

@media (max-width: 720px) {
  .pcg-grid-static {
    grid-template-columns: 1fr;
  }
}

.pcg-item-static {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px 12px;
  border-radius: 14px;
  background: #fbfcfd;
  border: 1px solid rgba(15, 63, 58, .08);
}



/* Dark Mode */

body.dark-mode .pcg-item-static {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px 12px;
  border-radius: 14px;
  background: gray;
  border: 1px solid rgba(15, 63, 58, .08);
}


body.dark-mode .pcg-item-static h3 {

  margin: 0;
  font-weight: 750;
  color: white;
  font-size: clamp(14px, 1.9vw, 17px);
  line-height: 1.35;
}


.pcg-icon-badge-static {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: radial-gradient(120% 120% at 0% 0%, #109ea0, #0c7c78);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .22), 0 4px 10px rgba(0, 0, 0, .12);
}

.pcg-icon-badge-static svg {
  width: 40px;
  height: 40px;
  display: block;
}

.pcg-icon-badge-static svg [stroke] {
  stroke: #f6c440;
}

.pcg-icon-badge-static svg [fill] {
  fill: #f6c440;
}

.pcg-item-static h3 {
  margin: 0;
  font-weight: 750;
  color: #3a4a4a;
  font-size: clamp(14px, 1.9vw, 17px);
  line-height: 1.35;
}


/* Overlay images and pop images */

.overlay_images {
  position: absolute;
}

.overlay_images img {
  width: 350px;
  border-radius: 12px;
  animation: bubblePop 3s ease-in-out infinite;
}

@keyframes bubblePop {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}


/* Text Scroll */


/* Footer Css */




.project-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 450px;
}

.project-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* 🔹 Responsive design */
@media (max-width: 768px) {
  .project-showcase-wrapper {
    grid-template-columns: 1fr;
    /* stack vertically */
    gap: 20px;
    padding: 20px;
  }

  .project-card-left,
  .project-image-wrapper {
    height: 300px;
    /* shorter images on mobile */
  }

  .project-overlay-text {
    font-size: 36px;
    /* smaller overlay text */
  }

  .project-card-right {
    margin-top: 0;
    /* remove offset on mobile */
  }

  #project-header-big {
    font-size: 22px;
  }
}




/* Clipath Image */

.clip_container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  /* pushes it to the right */
  margin-right: 0;
  padding: 0;
}

/* SVG scales responsively */
.container svg {
  display: block;
  width: 100%;
  aspect-ratio: 1200 / 500;
  /* keeps correct height */
  height: auto;
}

/* Video inside clip */
.video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: pink;
  /* fallback color while loading */
}

/* Small screens: remove extra space / scrollbars */
@media (max-width: 576px) {

  html,
  body {
    overflow-x: hidden;
  }

  .container {
    max-width: 100%;
  }

  .container svg {
    width: 100vw;
    /* hug viewport width */
  }
}






/* new css style */

.whohelp_list {
  font-weight: 500;
  font-size: 22px;
}


/* Cursor trail images */


/* .trail-area {
  position: relative;
  width: 100%;
  height: 110vh !important;
  margin: 0vh auto;
  overflow: hidden;
  background: black;
  outline: 1px solid rgba(255, 255, 255, .06);
  padding: 20px;
}

.trail-area h1 {
  position: absolute;
  inset: auto 0 24px 0;
  text-align: center;
  font-weight: 800;
  opacity: .9;
  pointer-events: none;
  font-size: 5vw;
}

.piece {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  opacity: var(--trail-opacity);
  border-radius: var(--trail-radius);
  object-fit: cover;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, .6));
  will-change: transform, opacity;
}

.piece.animate {
  animation: fade-move var(--trail-life) ease-out forwards;
}

@keyframes fade-move {
  0% {
    opacity: var(--trail-opacity);
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--dx, 0px)), calc(-50% + var(--dy, 0px))) scale(var(--trail-scale-end));
  }
}

@media (max-width:600px) {
  :root {
    --trail-min: 20vw;
    --trail-max: 36vw;
    --trail-life: 3000ms;
  }
} */

/* Images Gallery CSS */


.gallery-section {
  width: 100%;
  max-width: 1400px;
  text-align: center;
  margin: 60px auto;
}

.gallery-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #004aad;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.gallery-subtitle {
  font-size: 1rem;
  color: #555;
  max-width: 750px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.divider {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #004aad, #ff7a00);
  border-radius: 2px;
  margin: 10px auto 30px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  height: 400px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  background: #fff;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, opacity 0.5s ease;
}

.gallery-item img.second {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale(1.1);
}

.gallery-item:hover img.first {
  opacity: 0;
  transform: scale(1.1);
}

.gallery-item:hover img.second {
  opacity: 1;
  transform: scale(1);
}

.gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: 0.8s;
}

.gallery-item:hover::after {
  left: 130%;
}

@media (max-width: 992px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 300px;
  }
}




/* Wrapper container */

.card-wrapper {
  max-width: 100%;
  /* margin: 0 auto;
      padding: 24px; */
}

/* Grid layout */
.card-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

@media (min-width: 700px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Individual card */
.card-item {
  width: 100%;



}

.card-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: #1f2937;
}



/* Top section */
.card-top {
  width: 100%;
  position: relative;
  margin-bottom: 1.25rem;
}

.card-top-inner {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 12px;
  margin-bottom: .75rem;
  padding-left: 1px;
}

/* Corner hover block */
.card-corner {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 20;
  background: #fff;
  display: flex;
  align-items: center;
  border-top-right-radius: 16px;
  padding: 10px;
  transform: translate(-100%, 100%);
  transition: transform 0.4s cubic-bezier(.2, .8, .2, 1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
}

.card-link:hover .card-corner {
  transform: translate(0, 0);
}

.card-corner svg {
  width: 40px;
  height: 40px;
  position: absolute;
  fill: currentColor;
  color: #fff;
  pointer-events: none;
}

.card-corner .corner-top {
  top: 1px;
  left: 0;
  transform: translateY(-100%) rotate(180deg);
}

.card-corner .corner-bottom {
  right: 1px;
  bottom: -1px;
  transform: translateX(100%) rotate(180deg);
}

/* Avatar */
.card-avatar {
  position: relative;
  overflow: hidden;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f9fafb;
}

.card-avatar .square {
  position: relative;
  width: 100%;
  padding-top: 100%;
}

.card-avatar img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Main media */
.card-media {
  width: 100%;
  position: relative;
  z-index: 10;
  border-radius: 20px;
  overflow: hidden;
  /* background: #f9fafb; */
  box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
}

.card-media-zoom {
  width: 100%;
  transform: scale(1.10);
  transition: transform 0.4s cubic-bezier(.2, .8, .2, 1);
}

.card-link:hover .card-media-zoom {
  transform: translateY(-10px) scale(1.10);
}

.card-media-ratio {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}

.card-media-ratio img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-media-ratio span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: black;
  font-size: 30px;

}

/* Meta / Title / Desc */
.card-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .25rem;
}

.card-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4b5563;
}

.card-meta-text {
  font-weight: 300;
  font-size: .95rem;
  color: #6b7280;
}

.card-title {
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 1rem 0;
  font-size: 1.125rem;
  color: #1f2937;
}

.card-desc {
  font-weight: 300;
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

}

@media (min-width: 1024px) {
  .card-top-inner {
    border-bottom-left-radius: 16px;
  }

  .card-corner {
    border-top-right-radius: 20px;
    padding: 12px;
  }

  .card-corner svg {
    width: 48px;
    height: 48px;
  }

  .card-avatar {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }

  .card-title {
    font-size: 1.25rem;
  }
}

@media(max-width:768px) {
  .card-link .card-media-zoom {
    transform: translateY(-10px) scale(1.10);
  }

  .card-link .card-corner {
    transform: translate(0, 0);
  }
}



/* there is video controls remove css */

/* ✅ Hide the seek/progress bar in Chrome, Edge, Safari */

video::-webkit-media-controls-timeline {
  display: none !important;
}

/* ✅ Hide seek forward/backward buttons if visible */
video::-webkit-media-controls-seek-back-button,
video::-webkit-media-controls-seek-forward-button {
  display: none !important;
}

/* ✅ Hide the seek bar in Firefox */
video::-moz-media-controls-seekbar {
  display: none !important;
}


/* ✅ Hide seek/progress bar */
video::-webkit-media-controls-timeline {
  display: none !important;
}

video::-webkit-media-controls-seek-back-button,
video::-webkit-media-controls-seek-forward-button {
  display: none !important;
}

video::-moz-media-controls-seekbar {
  display: none !important;
}

/* ✅ Hide mute button */
video::-webkit-media-controls-mute-button {
  display: none !important;
}

/* ✅ Hide fullscreen button */
video::-webkit-media-controls-fullscreen-button {
  display: none !important;
}

video::-webkit-media-controls-overflow-button {
  display: none !important;

}


@media (max-width: 426px) {
  .banner_text_top {

    position: absolute !important;
    z-index: 200 !important;
    top: 122px !important;
    left: 8px !important;
    word-break: break-all !important;
  }

  .banner-text_span {
    font-size: 14px !important;
    display: block !important;
    line-height: 1.1 !important;
  }

  .banner_text-auto_pera {
    font-size: 9px !important;

    line-height: 0.2 !important;


  }


  .text-Pera_we_fix {
    margin-top: 38px !important;
    font-size: 10px !important;


  }

  .text_pera_drive {
    font-size: 11px !important;
    margin: 5px 0 0 !important;
    line-height: 0.2 !important;
    margin-top: 14px !important;

  }
}



/* Banner Css */

/* === PROMO BANNER – hard overrides (keep at the end) === */
.promo-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 14px;
  isolation: isolate;
  /* keeps stacking context clean */
}

/* Your page already styles .video — override it only inside this banner */
.promo-section>.video {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 1 !important;
  background: transparent !important;
  /* cancel the pink fallback from global CSS */
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 40, 0.6);
  z-index: 2;
}

/* Text block on top, left-aligned and constrained */
.promo-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  /* restore the width cap */
  text-align: left !important;
  /* beats any inherited center align */
  padding: 0 clamp(16px, 6vw, 80px);
}

.promo-heading {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.2px;
  margin-bottom: 18px;
  color: #fff;
}

.promo-description {
  font-size: clamp(30px, 1.4vw, 20px);
  color: rgba(255, 255, 255, .95);
  margin-bottom: 30px;
}

.promo-btn {
  display: inline-block;
  background: #3B82F6;
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: .2px;
  transition: .25s ease;
  box-shadow: 0 6px 18px rgba(59, 130, 246, .35);
}

.promo-btn:hover {
  transform: translateY(-1px);
  filter: saturate(1.1);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .promo-content {
    padding: 0 24px;
  }

  .promo-heading {
    font-size: clamp(28px, 8vw, 46px);
  }
}

@media (max-width: 480px) {
  .promo-section {
    align-items: flex-end;
    padding-bottom: 60px;
  }

  .promo-heading {
    font-size: 32px;
  }

  .promo-description {
    font-size: 15px;
    margin-bottom: 20px;
  }
}



/* Style RIght hand fix Social icons */

.trend-social-wrap {
  position: fixed;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 9999;
}

/* Button Style */
.trend-social-btn {
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.6);
  /* dark background for visibility */
  color: #fff;
  /* white icons */
  font-size: 17px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(.4, .2, .3, 1);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  overflow: visible;
}

.trend-social-btn:hover {
  transform: translateX(-5px) scale(1.05);
}

/* Brand Hover Colors */
.trend-instagram:hover {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  color: #fff;
}

.trend-facebook:hover {
  background: #1877F2;
  color: #fff;
}

.trend-x:hover {
  background: #000;
  color: #fff;
}

.trend-snapchat:hover {
  background: #0A66C2;
  color: #000;
}

/* Tooltip */
.trend-tooltip {
  position: absolute;
  right: 45px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.75);
  /* fixed dark background */
  color: #fff;
  /* always white text */
  font-size: 11px;
  font-weight: 600;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, .3);
  transition: opacity .3s ease, transform .3s cubic-bezier(.4, .2, .3, 1);
  z-index: 2;
}

.trend-social-wrap a {
  text-decoration: none !important;
  color: inherit !important;
}


.trend-social-btn:hover .trend-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Tooltip Arrow */
.trend-tooltip::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 7px;
  height: 7px;
  background: rgba(0, 0, 0, 0.75);
  /* match tooltip background */
  border-radius: 2px;
}

/* Ripple Effect */
.trend-ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: trendRipple .5s linear;
  background: rgba(255, 255, 255, 0.5);
  mix-blend-mode: screen;
  pointer-events: none;
}

@keyframes trendRipple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width:600px) {
  .trend-social-btn {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .trend-tooltip {
    font-size: 10px;
    right: 42px;
  }
}


/* About Us Css */


/* =========================================================
   PCG – Unique, Namespaced Styles (no attribute selectors)
   Prefix: .pcg-
   ========================================================= */

:root {
  --pcg-primary: #0a8178;
  --pcg-primary-dark: #1f3a57;
  --pcg-accent: #f4b400;
  --pcg-text: #1a1a1a;
  --pcg-text-muted: #5b6b7b;
  --pcg-card: #ffffff;
  --pcg-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  --pcg-radius: 16px;
}

/* -------- Sections -------- */
.pcg-section {}

@media (min-width:992px) {
  .pcg-section {
    padding: 35px 0;
  }
}

/* -------- Hero -------- */
.pcg-hero .page-title-container {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.pcg-hero .page-title-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, .35));
}

.pcg-hero .centered-container {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pcg-hero .banner_text {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  text-shadow: 0 6px 18px rgba(0, 0, 0, .35);
}

/* -------- Headings -------- */
.pcg-heading h1,
.pcg-heading h2,
.pcg-heading h3 {
  color: var(--pcg-primary-dark);
  font-weight: 700;
  margin-bottom: .5rem;
}

.pcg-heading p {
  color: var(--pcg-text-muted);
}

/* -------- Text highlights -------- */
.pcg-ink {
  color: var(--pcg-primary);
  font-weight: 700;
}

.pcg-accent {
  color: var(--pcg-accent);
  font-weight: 700;
}

/* -------- Buttons -------- */
.pcg-btn {
  background: linear-gradient(to right, var(--pcg-primary), var(--pcg-primary-dark));
  color: #fff !important;
  border: none;
  padding: .85rem 1.25rem;
  border-radius: 999px;
  box-shadow: var(--pcg-shadow);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.pcg-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
  opacity: .95;
}

/* -------- Feature text blocks -------- */
.pcg-feature p {
  margin: 0;
  color: var(--pcg-text);
}

.pcg-icon {
  border-radius: 14px;
  background: linear-gradient(to right, rgba(10, 129, 120, .06), rgba(31, 58, 87, .06));
  padding: 14px;
  display: inline-block;
}

/* -------- Cards (Major Values) -------- */
.pcg-card {
  border-radius: var(--pcg-radius);
  background: var(--pcg-card);
  box-shadow: var(--pcg-shadow);
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}

.pcg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, .12);
}

.pcg-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1rem;
}

.pcg-list li {
  position: relative;
  padding-left: 28px;
  margin: .35rem 0;
  color: var(--pcg-text);
}

.pcg-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(to right, var(--pcg-primary), var(--pcg-primary-dark));
  box-shadow: 0 0 0 4px rgba(10, 129, 120, .12);
}

/* -------- Mission & Vision boxes -------- */
.pcg-box {
  border-radius: var(--pcg-radius);
  box-shadow: var(--pcg-shadow);
  border: 1px solid rgba(31, 58, 87, .08);
  background: #fff;
}

/* -------- Fixed background section overlay (use on the same section as bg) -------- */
.pcg-fixed {
  position: relative;
}

.pcg-fixed::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .25);
}

.pcg-fixed>.container {
  position: relative;
  z-index: 1;
}

/* -------- Subheading pill -------- */
.pcg-subheading {
  display: inline-block;
  font-weight: 800;
  color: var(--pcg-primary-dark);
  background: linear-gradient(to right, rgba(10, 129, 120, .08), rgba(31, 58, 87, .08));
  border-radius: 999px;
  padding: .35rem .85rem;
  font-size: .95rem;
  letter-spacing: .3px;
}

/* -------- Animations (no attribute selectors) -------- */
.pcg-anim-left,
.pcg-anim-right,
.pcg-anim-up,
.pcg-anim-zoom,
.pcg-anim-swing {
  will-change: transform, opacity;
  opacity: 0;
  transform: translateY(14px);
  animation-fill-mode: both;
  animation-duration: .8s;
  animation-timing-function: cubic-bezier(.2, .7, .3, 1);
  animation-play-state: running;
}

@keyframes pcg-slide-left {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pcg-slide-right {
  from {
    opacity: 0;
    transform: translateX(28px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pcg-slide-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pcg-zoom {
  from {
    opacity: 0;
    transform: scale(.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pcg-swing {
  0% {
    opacity: 0;
    transform: rotateX(-25deg) translateY(10px);
    transform-origin: top;
  }

  60% {
    opacity: 1;
    transform: rotateX(6deg) translateY(0);
  }

  100% {
    transform: none;
  }
}

.pcg-anim-left {
  animation-name: pcg-slide-left;
}

.pcg-anim-right {
  animation-name: pcg-slide-right;
}

.pcg-anim-up {
  animation-name: pcg-slide-up;
}

.pcg-anim-zoom {
  animation-name: pcg-zoom;
}

.pcg-anim-swing {
  animation-name: pcg-swing;
  animation-duration: .9s;
}

.pcg-delay-1 {
  animation-delay: .15s;
}

.pcg-delay-2 {
  animation-delay: .3s;
}

.pcg-delay-3 {
  animation-delay: .45s;
}

.pcg-delay-4 {
  animation-delay: .6s;
}

.pcg-delay-5 {
  animation-delay: .75s;
}

@media (prefers-reduced-motion: reduce) {

  .pcg-anim-left,
  .pcg-anim-right,
  .pcg-anim-up,
  .pcg-anim-zoom,
  .pcg-anim-swing {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* -------- Utilities (scoped) -------- */
.pcg-center-btn .pcg-btn {
  min-width: 200px;
}

.pcg-tight p {
  margin-bottom: .75rem;
}

/* -------- Responsive heading sizes (scoped) -------- */
@media (max-width:575.98px) {
  .pcg-heading h1 {
    font-size: 1.65rem;
  }

  .pcg-heading h2 {
    font-size: 1.35rem;
  }

  .pcg-heading h3 {
    font-size: 1.25rem;
  }
}



/* ABout us 3 key */

.values-section {
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

.values-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e2a5a;
  margin-bottom: 50px;
  position: relative;
}

.values-section h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #ff7c3d;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  justify-content: center;
  align-items: stretch;
}

.value-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px 25px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.value-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e2a5a, #4f75ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 36px;
}

.value-card h4 {
  color: #1e2a5a;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.value-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  text-align: left;
}

.value-card strong {
  color: #000;
}

/* Subtle background hover effect */
.value-card::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -60%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(79, 117, 255, 0.1) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.4s ease;
  z-index: 0;
}

.value-card:hover::before {
  transform: scale(1);
}

.value-content {
  position: relative;
  z-index: 1;
}











/* New Footer  */


.gf-footer-wrapper {
  max-width: 100%;
  
  
 
  color: #0c0c0c;
}



.gf-footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 16px 0 26px;
}

.gf-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gf-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 22px;
}

.gf-logo svg {
  width: 40px;
  height: 48px
}

.gf-brand p {
  margin: 0;
  line-height: 1.45;
  max-width: 320px
}

.gf-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 22px;
  border: 2px solid #0c0c0c;
  background: transparent;
  color: #0c0c0c;
  font-weight: 600;
  text-decoration: none;
  width: max-content;
}

.gf-btn:hover {
  background: #0c0c0c;
  color: #fff;
  transition: .2s
}

.gf-newsletter {
  margin-top: 8px
}

.gf-newsletter label {
  display: block;
  font-weight: 700;
  margin-bottom: 10px
}

.gf-input-row {
  position: relative;
  max-width: 260px
}

.gf-input-row input {
  width: 100%;
  padding: 10px 36px 10px 8px;
  border: none;
  outline: none;
  background: transparent;
  border-bottom: 3px solid #0c0c0c;
  font: inherit;
  color: #0c0c0c;
}

.gf-input-row button {
  position: absolute;
  right: -4px;
  top: 0;
  bottom: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gf-input-row button svg {
  width: 22px;
  height: 22px
}

.gf-col h4 {
  margin: 0 0 14px;
  font-size: 14px;
  letter-spacing: .02em;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.gf-badge {
  position: absolute;
  inset: -4px -8px auto auto;
  background: #214c52;
  height: 24px;
  z-index: -1;
  border-radius: 3px;
  width: 78px;
}

.gf-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px
}

.gf-list a {
  color: #0c0c0c;
  text-decoration: none;
  font-weight: 600
}

.gf-list a:hover {
  text-decoration: underline
}

.gf-connect .gf-list a {
  font-weight: 600
}

.gf-connect .gf-list li {
  line-height: 1.35
}

.gf-copyright {
  text-align: center;
  padding: 8px 0 18px;
  font-weight: 600;
  font-size: 13px
}

@media(max-width:900px) {
  .gf-footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .gf-brand {
    grid-column: 1/-1
  }
}

@media(max-width:560px) {
  .gf-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .gf-footer-wrapper {
    padding: 22px 16px 8px
  }

  .gf-logo {
    font-size: 20px
  }
}


/* Green Fortune ABout the company heading */

.gf4-about-container {
  max-width: 95%;
  margin: 50px auto 30px;
  padding: 0 18px;
  color: #111;
}



.gf4-about-text {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 13px;
}

.gf4-about-text b {
  font-weight: 800;
}

.gf4-about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1.6px solid #111;
  border-radius: 3px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  background: transparent;
  transition: .2s;
}

.gf4-about-btn:hover {
  background: #111;
  color: #fff;
}

.gf4-about-btn svg {
  width: 16px;
  height: 16px;
}


/* About Heading  */

.section-title {
      display: inline-block;
      position: relative;
      font-size: 30px;
      font-weight: bold;
      color: #000;
      
      
    }

    .section-title::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -5px;
      width: 100%;
      height: 2px;
      background-color: #1b5e20; /* green underline */
    }

    .section-title::before {
      content: "";
      position: absolute;
      right: 0;
      bottom: -5px;
      width: 2px;
      height: 8px;
      background-color: #1b5e20; /* small vertical green bar */
    }


    /* Mining with Responsblity End Section */

    .gf-section {
      max-width: 95%;
      margin: 32px auto;
      padding: 0 16px;
      font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
      color: #222;
    }

    /* Heading */
    .gf-heading {
      text-align: left;
      font-size: clamp(22px, 2.6vw, 30px);
      font-weight: 800;
      line-height: 1.25;
      margin: 0 0 18px 0;
    }
    .gf-heading .gf-accent {
      color: #0d8a4b;
      background: rgba(13,138,75,0.12);
      padding: 0 6px 2px;
      border-radius: 6px;
    }

    /* Image rows as responsive grid */
    .gf-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      margin: 1px 0 5px;
      margin-top: 13px;
    }

    /* Mobile: stack to 1 column */
    @media (max-width: 640px) {
      .gf-row {
        grid-template-columns: 1fr;
        gap: 14px;
      }
    }

    /* Image styling */
    .gf-img {
      overflow: hidden;
     
    }
    .gf-img img {
      width: 100%;
      height: auto;          /* keeps natural aspect ratio */
      display: block;        /* removes inline gap */
    }

    /* Content block */
    .gf-content {
      max-width: 100%;
      /* margin: 0 auto 8px; */
      font-size: clamp(15px, 1.6vw, 17px);
      line-height: 1.75;
      text-align: justify;
    }



    /* Sustainable Mining Crafted */

    .smcp-wrap{
    max-width: 95%;
    margin: 36px auto 48px;
    padding: 0 18px;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--smcp-dark);
  }

  /* Title with underline accent */
  .smcp-title{
    position: relative;
    text-align: center;
    font-weight: 800;
    letter-spacing: .2px;
    margin: 0 0 22px;
    line-height: 1.25;
    font-size: clamp(22px, 3.2vw, 32px);
  }
  .smcp-title::after{
    content:"";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -14px;
    width: 180px;              /* thin line */
    height: 3px;
    background: var(--smcp-green);
  }
  .smcp-title::before{
    /* thicker short block at right end */
    content:"";
    position:absolute;
    left: calc(50% + 60px);
    bottom: -18px;
    width: 6px;
    height: 18px;
    background: var(--smcp-green);
    border-radius: 2px;
  }

  /* 2-col layout */
  .smcp-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px 28px;
    margin-top: 28px;
    align-items: start;
  }

  /* Left column (two images stacked) */
  .smcp-left{
    display: grid;
    gap: 22px;
  }

  /* Right column (image then text) */
  .smcp-right{
    display: grid;
    gap: 22px;
    grid-auto-rows: min-content;
  }

  /* Image styles */
  .smcp-img{
    border-radius: var(--radius);
    overflow: hidden;
    background:#f5f6f8;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
  }
  .smcp-img img{
    width:100%;
    height:auto;
    display:block;
  }

  /* Text card with left accent rule */
  .smcp-text{
    display: grid;
    grid-template-columns: 6px 1fr;
    gap: 25px;
    margin-top: 70px;
    align-items: start;
  }
  .smcp-rule{
    width: 100%;
    height: 100%;
    background: linear-gradient(#1f2937 0 0, #1f2937 100%); /* dark thin rule like screenshot */
    border-radius: 2px;
  }
  .smcp-copy{
    line-height: 1.75;
    font-size: 26px;
    color: var(--smcp-dark);
  }

  /* Button */
  .smcp-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:16px;
    font-size:14px;
    padding:10px 14px;
    border:1px solid var(--smcp-dark);
    border-radius:6px;
    background:#fff;
    color:var(--smcp-dark);
    text-decoration:none;
    box-shadow: 0 1px 0 rgba(0,0,0,.04);
  }
  .smcp-btn .smcp-arrow{
    display:inline-block;
    transform: translateY(1px);
  }
  .smcp-btn:hover{ border-color: var(--smcp-green); color: var(--smcp-green); }

  /* Responsive */
  @media (max-width: 780px){
    .smcp-grid{ grid-template-columns: 1fr; }
    .smcp-title::before{
      left: calc(50% + 40px);
    }
  }


  /* From Query to craft Css */

   .qc-wrap{
    max-width: 95%;
    margin: 36px auto 56px;
    padding: 0 18px;
  }

  /* Title with dual underline accent like the reference */
  .qc-title{
    text-align:center;
    font-weight:800;
    letter-spacing:.2px;
    margin: 0 0 28px;
    line-height:1.25;
    font-size: clamp(22px, 3.2vw, 32px);
  }
  .qc-title em{ color:var(--qc-green); font-style: normal; }
  .qc-title::after{
    content:"";
    position:absolute;
    width:180px; height:3px;
    left:50%; transform:translateX(-50%);
    background:var(--qc-green);
    margin-top: 44px;
  }
  .qc-title-holder{ position:relative; padding-bottom:28px; }
  .qc-title-holder::after{
    /* short vertical tick to the right side of the underline */
    content:"";
    position:absolute;
    left: calc(50% + 68px);
    bottom: 2px;
    width:6px; height:18px; background:var(--qc-green); border-radius:2px;
  }

  /* 2x2 grid layout */
  .qc-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "img1 txt1"
      "txt2 img2";
    gap: 30px 40px;
    align-items:start;
  }

  /* Image cards */
  .qc-img{
      
    overflow:hidden;
  }
  .qc-img img{
    display:block; width:80%; 
    height:auto;
  }

  /* Assign grid areas */
  .qc-img--left     { grid-area: img1; }
  .qc-text--right   { grid-area: txt1; }
  .qc-text--left    { grid-area: txt2; }
  .qc-img--right    { grid-area: img2; }

  /* Text blocks */
  .qc-text h3{
    margin:0 0 10px;
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight:800;
  }
  .qc-underline{
    width:120px; height:3px; background:var(--qc-green);
    border-radius:2px; margin:6px 0 14px;
  }
  .qc-text p{
    margin:0;
    line-height:1.75;
    font-size:21px;
    color:var(--qc-dark);
  }

  /* Spacing tweaks to mimic reference */
  .qc-text--right { padding-right: 12px; }
  .qc-text--left  { padding-left: 8px; }

  /* Responsive */
  @media (max-width: 820px){
    .qc-grid{
      grid-template-columns: 1fr;
      grid-template-areas:
        "img1"
        "txt1"
        "txt2"
        "img2";
      gap:22px;
    }
    .qc-title-holder::after{ display:none; } /* hide side tick on small screens */
  }


  /* Turning Into luxury */

  
    .tdil-wrapper {
      max-width: 95%;
      margin: 60px auto;
      padding: 0 16px;
    }

    .tdil-heading {
      text-align: center;
      font-size: 30px;
      font-weight: 700;
      margin-bottom: 40px;
      position: relative;
      display: inline-block;
      left: 50%;
      transform: translateX(-50%);
    }

    .tdil-heading::after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 180px;
      height: 3px;
      background-color: var(--tdil-green);
    }

    .tdil-heading::before {
      content: "";
      position: absolute;
      bottom: -16px;
      left: calc(50% + 70px);
      width: 6px;
      height: 18px;
      background-color: var(--tdil-green);
      border-radius: 2px;
    }

    /* Gallery Row */
    .tdil-gallery {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      align-items: end;
      position: relative;
    }

    .tdil-card {
      border-radius: var(--tdil-radius);
      overflow: hidden;
      box-shadow: var(--tdil-shadow);
      background: #f4f4f4;
      aspect-ratio: 3 / 4;
      transition: transform 0.3s ease;
    }

    .tdil-card:hover {
      transform: translateY(-6px);
    }

    .tdil-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Different vertical positioning for staggered layout */
    .tdil-card:nth-child(1) { transform: translateY(30px); }
    .tdil-card:nth-child(2) { transform: translateY(0); }
    .tdil-card:nth-child(3) { transform: translateY(50px); }
    .tdil-card:nth-child(4) { transform: translateY(20px); }

    /* Responsive Layout */
    @media (max-width: 900px) {
      .tdil-gallery {
        grid-template-columns: repeat(2, 1fr);
      }
      .tdil-card:nth-child(1),
      .tdil-card:nth-child(2),
      .tdil-card:nth-child(3),
      .tdil-card:nth-child(4) {
        transform: translateY(0);
      }
    }

    @media (max-width: 600px) {
      .tdil-gallery {
        grid-template-columns: 1fr;
      }
      .tdil-heading::before {
        display: none;
      }
    }


    /* Slider Products */

    .osc-wrap {
    max-width: 95%;
    margin: 36px auto 56px;
    padding: 0 18px;
  }

  /* Title */
  .osc-title {
    position: relative;
    text-align: center;
    font-weight: 800;
    font-size: clamp(22px, 3.2vw, 34px);
    margin-bottom: 28px;
  }
  .osc-title::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
    width: 200px;
    height: 3px;
    background: var(--osc-green);
    border-radius: 2px;
  }
  .osc-title::before {
    content: "";
    position: absolute;
    left: calc(50% + 85px);
    bottom: -18px;
    width: 7px;
    height: 20px;
    background: var(--osc-green);
    border-radius: 2px;
  }

  /* Two-column layout */
  .osc-grid {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
  }

  @media (max-width: 900px) {
    .osc-grid {
      grid-template-columns: 1fr;
    }
  }

  /* Left text column */
  .osc-left h3 {
    color: var(--osc-green);
    font-weight: 800;
    font-size: clamp(20px, 2.6vw, 28px);
    margin-bottom: 10px;
  }
  .osc-left p {
    line-height: 1.7;
    font-size: 20px;
    margin-bottom: 16px;
  }
  .osc-nav {
    display: flex;
    gap: 12px;
  }
  .osc-btn {
    width: 40px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
  }
  .osc-btn:hover {
    color: var(--osc-green);
    border-color: var(--osc-green);
  }

  /* Right Swiper column */
  .osc-right {
    min-width: 0;
    overflow: hidden;
  }
  .swiper {
    width: 100%;
  }

  .swiper-slide {
    background: #f8f8f8;
    border-radius: var(--osc-radius);
    overflow: hidden;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
  }

  .osc-caption {
    font-weight: 700;
    font-size: 16px;
    margin: 10px 0;
  }

  .osc-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* aspect-ratio: 3/4; */
  }

  @media (max-width: 600px) {
    .osc-title::before {
      display: none;
    }
  }


  /* Banner Slider Images Css */

   .stoneSlider_wrapper {
        width: 100%;
        height: 100vh;
         overflow-x: hidden;
      }

      .stoneSlider_slide {
        position: relative;
        background-size: cover;
        background-position: center;
      }

      .stoneSlider_overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.45);
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 0 10%;
      }

      .stoneSlider_overlay h4 {
        font-size: 1.5rem;
        font-weight: 400;
        margin-bottom: 15px;
      }

      .stoneSlider_overlay h1 {
        font-size: 5rem;
        font-weight: 600;
        margin-bottom: 20px;
      }

      .stoneSlider_overlay p {
        font-size: 1.2rem;
        font-weight: 500;
        margin-bottom: 40px;
        max-width: 600px;
      }

      .stoneSlider_buttons {
        display: flex;
        gap: 30px;
        align-items: center;
        justify-content: space-between;
      }

      .stoneSlider_btn {
        border: 2px solid #fff;
        color: #fff;
        padding: 12px 28px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.1rem;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
      }

      .stoneSlider_btn span {
        display: inline-block;
        transition: transform 0.3s ease;
      }

      .stoneSlider_btn:hover span {
        transform: translateX(5px);
      }

      .stoneSlider_btn:hover {
        background: #fff;
        color: #000;
      }

      .stoneSlider_pagination .swiper-pagination-bullet {
        background: #fff;
        opacity: 0.8;
      }

      .stoneSlider_pagination .swiper-pagination-bullet-active {
        background: #fff;
        transform: scale(1.2);
      }

      @media (max-width: 768px) {
        .stoneSlider_overlay h1 {
          font-size: 3rem;
        }

        .stoneSlider_overlay p {
          font-size: 1rem;
        }

        .stoneSlider_btn {
          font-size: 1rem;
          padding: 10px 22px;
        }
      }