/* Header transitions */



/* body,html {
  margin: 0;
  font-family: 'Saans';
  font-feature-settings: "calt" 1, "liga" 1;
  font-variation-settings: "wght" 900, "ital" 0, "MONO" 0;

} */


/* 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 */
}

/* 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;
}


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 */

.whohelp-wrap {
  max-width: 100%;
  margin: 48px auto;
  padding: 0 20px;
}

.whohelp-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 20px;
  background: #ffffff;
  padding: 36px;
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}

/* Left text spans the first two rows */
.whohelp-text {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.whohelp-eyebrow {
  color: #16a34a;
  font-weight: 700;
  margin: 0 0 8px;
}

.whohelp-title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 16px;
}

.whohelp-blue {
  color: #1d4ed8;
}

.whohelp-card p {
  margin: 0 0 12px;
}

.whohelp-card ul {
  margin: 0 0 16px 20px;
  padding: 0;
}

.whohelp-card li {
  margin: 6px 0;
}

/* Right images mapped to rows */
.whohelp-img-top {
  grid-column: 2;
  grid-row: 1;
}

.whohelp-img-mid {
  grid-column: 2;
  grid-row: 2;
}

/* Bottom image spans both columns */
.whohelp-img-bottom {
  grid-column: 1 / span 1;
  grid-row: 3;
}

.whohelp-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}



/* Responsive */
@media (max-width:820px) {
  .whohelp-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto;

  }

  .whohelp-text {
    grid-row: auto;
  }

  .whohelp-img-top,
  .whohelp-img-mid,
  .whohelp-img-bottom {
    grid-column: 1;
    grid-row: auto;
  }

  .whohelp-img img {
    height: auto;
  }
}


/* Who we need */

.dg-section {
  max-width: 100%;
  margin: 48px auto;
  padding: 0 20px;
}

.dg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 28px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;

}

.dg-img-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(16, 24, 40, .12);
  overflow: hidden;
}

.dg-img-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dg-copy {
  padding: 4px 4px 0 4px;
}

.dg-eyebrow {
  margin: 0 0 8px 0;
  font-weight: 700;
  font-size: clamp(12px, .9vw, 14px);
  color: #1d7a53;
  /* teal-green */
  letter-spacing: .2px;
}

.dg-headline {
  margin: 0 0 12px 0;
  font-weight: 800;
  line-height: 1.2;
  color: #191a53;
  /* navy */
  font-size: clamp(24px, 2.2vw + 6px, 36px);
}

.dg-body {
  margin: 0;
  color: #4a505d;
  font-size: clamp(13.5px, 1vw, 15.5px);
  line-height: 1.6;
  max-width: 34ch;
}

.dg-img-card.small {
  grid-column: 2;
  grid-row: 2;
  border-radius: 20px;
}

.dg-img-card.large {
  grid-column: 1;
  grid-row: 1 / span 2;
  aspect-ratio: 4 / 3;
}

.dg-img-card.large img {
  border-radius: 18px;
}

.dg-img-card.small img {
  aspect-ratio: 16 / 10;
  border-radius: 18px;
}

@media (max-width: 860px) {
  .dg-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .dg-img-card.large {
    grid-column: 1;
    grid-row: auto;
    aspect-ratio: auto;
  }

  .dg-copy {
    grid-column: 1;
  }

  .dg-img-card.small {
    grid-column: 1;
  }

  .dg-body {
    max-width: 60ch;
  }
}


/* Our Focus Area CSS */

.fa-section {
  padding: 48px 16px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* background-color: #FFF8EF; */
}

.fa-title {
  margin: 0;
  text-align: center;
  color: var(--fa-teal);
  font-weight: 800;
  line-height: 1.1;
  font-size: clamp(2rem, 4vw + .5rem, 3.5rem);
}

.fa-grid {
  margin-top: 160px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 98px;
  justify-items: center;
  width: 100%;
  max-width: 1080px;
}

.fa-card {
  position: relative;
  width: 100%;
  max-width: 260px;
  height: 290px;
  border: 3px solid #E5E7EB;
  border-radius: 16px;
  background: #fff;
  transition: transform .3s ease, box-shadow .3s ease;
}

.fa-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .08);
}

.fa-card.fa-lift {
  margin-top: -96px;
}

.fa-card-header {
  position: absolute;
  top: -76px;
  left: 62%;
  transform: translateX(-50%);
  width: 200px;
  height: 150px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  text-align: center;
  color: #fff;
  font-weight: 900;
  font-size: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, .15);
}

.fa-card-body {
  margin-top: 56px;
  padding: 48px 16px 24px;
  text-align: center;
}

.fa-card-body p {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
  color: #1F2937;
}

.fa-card {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition:
    -webkit-filter .35s ease,
    filter .35s ease,
    transform .3s ease,
    box-shadow .3s ease;
  will-change: filter, transform;
}

.fa-card:hover,
.fa-card:focus-within {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fa-card {
    transition: none;
  }
}

/* colors */
.fa-border-purple {
  border-color: var(--fa-purple)
}

.fa-bg-purple {
  background: var(--fa-purple)
}

.fa-border-blue {
  border-color: var(--fa-blue)
}

.fa-bg-blue {
  background: var(--fa-blue)
}

.fa-border-green {
  border-color: var(--fa-green)
}

.fa-bg-green {
  background: var(--fa-green)
}

.fa-border-yellow {
  border-color: var(--fa-yellow)
}

.fa-bg-yellow {
  background: var(--fa-yellow)
}

.fa-border-orange {
  border-color: var(--fa-orange)
}

.fa-bg-orange {
  background: var(--fa-orange)
}

.fa-border-red {
  border-color: var(--fa-red)
}

.fa-bg-red {
  background: var(--fa-red)
}

/* CTA */
.fa-cta {
  margin-top: 32px;
}

.fa-btn {
  background: var(--fa-teal);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease;
}

.fa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .12);
}

.fa-icon {
  width: 18px;
  height: 18px;
}

/* Responsive */
@media (max-width:1024px) {
  .fa-grid {
    max-width: 720px;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
  }
}

@media (max-width:600px) {
  .fa-grid {
    max-width: 420px;
    grid-template-columns: 1fr;
    gap: 120px;
    margin-top: 96px;
  }

  .fa-card {
    max-width: 320px;
    height: 300px;
  }

  .fa-card.fa-lift {
    margin-top: -56px;
  }

  .fa-card-header {
    width: 85%;
    max-width: 260px;
    height: 130px;
    top: -64px;
    font-size: 18px;
  }
}


/* why choose pcg */

.pcg-wrap-static {
  display: grid;
  place-items: center;
}

.pcg-card-static {
  width: 100%;
  background: #ffffff;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .06);
  position: relative;
}


body.dark-mode .pcg-card-static {
  width: 100%;
  background: black;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .06);
  position: relative;
  
}





/* Top tab: "Why PCG?" */
.pcg-tab-static {
  position: absolute;
  top: -3px;
  left: 16px;


  padding: 20px 20px 12px 20px;
  color: white;


}

/* Hero band */
.pcg-hero-static {
  background: #0f3f3a;
  color: #e9f6f6;
  padding: 20px 24px 28px 24px;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  position: relative;
}


/* 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 */

.marquee {
  --speed: 1s;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  font-size: 1000px !important;
  color: #111;
  box-sizing: border-box;
}

.marquee__track {
  display: flex;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: var(--speed);
  will-change: transform;
}

/* directions */
.marquee--rtl .marquee__track {
  animation-name: marquee-rtl;
}

.marquee--ltr .marquee__track {
  animation-name: marquee-ltr;
}

@keyframes marquee-rtl {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes marquee-ltr {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0);
  }
}

.marquee__inner {
  display: inline-block;
  padding-right: 40px;
  font-size: 110px;
}



/* Pop Up Crousal */


.frames-carousel {
  background: #fff9d6;
  /* padding: 40px 20px; */
  /* border-radius: 16px; */
  max-width: 100%;
  margin: 50px auto;
  /* box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); */
  text-align: center;
}

body.dark-mode .frames-carousel {
  background: linear-gradient(145deg, #0d0d0d, #1a1a1a);
  color: #ffffff; /* Light text */
  max-width: 100%;
  margin: 50px auto;
  text-align: center;
  border-radius: 12px;
 box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6); /* Deep black shadow */
  padding: 20px;
}


.frames-carousel .carousel-title {
  color: #0a014f;
  margin-bottom: 30px;
}


body.dark-mode .frames-carousel .carousel-title{
   
  color: var(--text-color-dark) !important;
  

}



.frames-carousel .swiper {
  padding: 40px 0;
}

.frames-carousel .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s, box-shadow 0.4s;
}

.frames-carousel .slide-box {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
  padding: 40px;
  max-width: 220px;
  text-align: center;
  transition: transform 0.4s, box-shadow 0.4s;
}

.frames-carousel .slide-box img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
}

/* Active (center) slide pop-out */
.frames-carousel .swiper-slide-active .slide-box {
  transform: scale(1.2);
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

/* Navigation buttons */
.frames-carousel .swiper-button-next,
.frames-carousel .swiper-button-prev {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #004d40;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.frames-carousel .swiper-button-next::after,
.frames-carousel .swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}


/* Footer Css */


.pcg-footer {
  background: #333131;
  color: #fff;
  padding: 30px 20px 15px;
  border-radius: 12px;
  max-width: 100%;

}

.pcg-footer p {
  font-size: 22px;

  margin: 0 0 20px;
  line-height: 1.4;
}

.pcg-footer p .highlight {
  color: #ffb300;
  /* Orange */
}

.pcg-footer p .impact {
  color: #d0ff71;
  /* Green */
}

.pcg-footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 10px;
}

.pcg-footer-column {
  flex: 1 1 220px;
  margin: 10px;
}

.pcg-footer-column h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.pcg-footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}

.pcg-footer-column ul li {
  margin-bottom: 6px;
  font-size: 15px;
}

.pcg-footer-column ul li::before {
  content: "• ";
  color: #fff;
}

.staffing-title {
  display: block;
  font-weight: bold;
  margin: 12px 0 6px;
}

.pcg-get-in-touch p {
  margin: 4px 0;
  font-size: 15px;
}

.pcg-logo {
  text-align: center;
}

.pcg-logo img {
  max-width: 90px;
  margin-bottom: 8px;
}

.pcg-company-name {
  background: #00bcd4;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
  font-size: 13px;
}

.pcg-social-icons {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  position: relative;
  top: -80px;

}

.pcg-social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #00bcd4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 18px;

}

.pcg-copyright {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .pcg-footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .pcg-social-icons {
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }
}



/* new css */



.project-showcase-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px;
  align-items: start;
}

/* Left block */
.project-card-left {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 450px;
  /* Equal height */
}

.project-card-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.project-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  display: flex;
  gap: 10px;
}

.project-caption {
  margin-top: 15px;

}

.project-caption a {
  display: block;
  margin-top: 4px;
  color: #7aff00;
  font-weight: 600;
  text-decoration: none;
}

/* Right block */
.project-card-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

}

.project-card-right .project-header-small {
  margin-top: 0;
}

.project-image-wrapper {
  margin-top: 49px;
}

.project-header-small {
  margin: 0;
  font-size: 14px;

}

#project-header-big {
  font-size: 65px;


}

.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;
    }


    /* Our mission and vision csss */

        .mv-section {
      background: linear-gradient(rgba(10, 51, 67, 0.85), rgba(31, 58, 87, 0.85)),
                  url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1920&q=80");
      background-position: center;
      background-size: cover;
      background-attachment: fixed;
      padding: 80px 0;
      position: relative;
      overflow: hidden;
      isolation: isolate;
      margin-bottom: 70px;
    }

    /* ====== HEADINGS ====== */
    .mv-heading {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
      z-index: 1;
    }

    .mv-heading h2 {
      color: #ffffff;
      font-size: clamp(28px, 3.1vw, 40px);
      font-weight: 800;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    .mv-heading p {
      color: rgba(255, 255, 255, 0.9);
      font-size: 16px;
      max-width: 700px;
      margin: 12px auto 0;
      line-height: 1.6;
    }

    /* ====== GRID LAYOUT ====== */
    .mv-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      position: relative;
      z-index: 1;
    }

    @media (max-width: 768px) {
      .mv-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ====== CARD STYLE ====== */
    .mv-card {
      background: #ffffff;
      border-radius: 16px;
      padding: 36px 30px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
      text-align: left;
      position: relative;
    }

    .mv-card:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      height: 4px;
      width: 100%;
      border-radius: 16px 16px 0 0;
      background: linear-gradient(90deg, #ff8c00, #ffb84d);
    }

    /* ====== ICON + TITLE ====== */
    .mv-top {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 12px;
    }

    .mv-icon {
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: #0a826e;
      color: #ffffff;
      font-size: 24px;
    }

    .mv-title {
      color: #1f3a57;
      font-weight: 700;
      font-size: 22px;
      margin: 0;
      text-transform: uppercase;
    }

    .mv-divider {
      height: 3px;
      width: 70px;
      border-radius: 50px;
      background: linear-gradient(90deg, #f59e0b, #ffcc80);
      margin-top: 6px;
    }

    /* ====== BODY TEXT ====== */
    .mv-card p {
      color: #444444;
      font-size: 16px;
      line-height: 1.7;
      margin-top: 10px;
    }

    .mv-highlight {
      color: #0a826e;
      font-weight: 600;
    }



    /* In House Section Design */


    .pcg-platform-section {
  max-width: 1200px;
  margin: auto;
  padding: 70px 20px;
}
.pcg-platform-section h2 {
  text-align: center;
  color: #1f2b57;
  font-size: 2rem;
  margin-bottom: 50px;
  position: relative;
}
.pcg-platform-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #0057ff, #00c3a1);
  margin: 10px auto 0;
  border-radius: 3px;
}

/* Platform Card */
.pcg-platform-item {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  
  margin-bottom: 50px;
  overflow: hidden;
 
}
.pcg-platform-item.alt {
  grid-template-columns: 1fr 1.1fr;
}
.pcg-platform-item.alt .pcg-platform-image {
  order: 2;
}

/* Text Content */
.pcg-platform-content {
  padding: 40px;
}
.pcg-platform-content h3 {
  margin-top: 0;
  color: #1a2a5a;
  font-size: 1.5rem;
}
.pcg-platform-content p {
  color: #555;
  margin: 10px 0;
}
.pcg-platform-content ul {
  margin: 15px 0;
  padding-left: 20px;
}
.pcg-platform-content li {
  margin-bottom: 8px;
}
.pcg-platform-content strong {
  color: #000;
}
.pcg-platform-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 18px;
  background: linear-gradient(135deg, #0057ff, #00c3a1);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.pcg-platform-btn:hover {
  background: linear-gradient(135deg, #0040cc, #00937a);
}

/* Image with glow effect */
.pcg-platform-image {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.pcg-platform-image img {
  width: 100%;
  display: block;
  border-radius: 0;
  transition: all 0.4s ease;
}
.pcg-platform-image:hover img {
  box-shadow: 0 0 25px rgba(0, 87, 255, 0.4);
  filter: brightness(1.05);
}

/* Badge */
.pcg-platform-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #0057ff, #00c3a1);
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 6px 10px;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .pcg-platform-item,
  .pcg-platform-item.alt {
    grid-template-columns: 1fr;
  }
  .pcg-platform-content {
    padding: 25px 20px 35px;
  }
  .pcg-platform-item.alt .pcg-platform-image {
    order: 1;
  }
}



/* WHy choose Hiring Solutions */

  .pcg-whyZZ{max-width:1100px;margin:auto;padding:68px 18px}
  .pcg-whyZZ__title{margin:0 0 28px;text-align:center;font-weight:800;font-size:clamp(24px,2.2vw,32px);color:#1b2a57}
  .pcg-whyZZ__title:after{content:"";display:block;width:80px;height:3px;background:linear-gradient(90deg,#0057ff,#00c3a1);margin:12px auto 0;border-radius:3px}
  .pcg-whyZZ__list{position:relative;margin:26px 0}
  .pcg-whyZZ__list:before{content:"";position:absolute;left:50%;top:0;bottom:0;width:3px;background:linear-gradient(#dfe9ff,#c7ffef);transform:translateX(-50%);border-radius:2px}
  .pcg-whyZZ__item{display:grid;grid-template-columns:1fr 1fr;gap:28px;align-items:center;margin:26px 0}
  .pcg-whyZZ__card{background:#fff;border:1px solid #e6eeff;border-radius:14px;padding:22px;box-shadow:0 8px 22px rgba(15,27,61,.07)}
  .pcg-whyZZ__head{display:flex;align-items:center;gap:12px;margin:0 0 8px}
  .pcg-whyZZ__icon{width:44px;height:44px;border-radius:10px;background:linear-gradient(135deg,#0057ff,#00c3a1);color:#fff;display:grid;place-items:center;font-size:22px;box-shadow:0 6px 18px rgba(0,87,255,.25)}
  .pcg-whyZZ__h3{margin:0;font-size:18px;color:#14224c}
  .pcg-whyZZ__p{margin:0;color:#4a5570}
  .pcg-whyZZ__dot{position:absolute;left:50%;transform:translate(-50%,-50%);width:16px;height:16px;background:#fff;border:4px solid #00c3a1;border-radius:50%;box-shadow:0 0 0 6px rgba(0,195,161,.15)}
  /* alternate sides */
  .pcg-whyZZ__item:nth-child(odd) .pcg-whyZZ__card{grid-column:1}
  .pcg-whyZZ__item:nth-child(odd) .pcg-whyZZ__dot{top:calc(50% - 2px)}
  .pcg-whyZZ__item:nth-child(even) .pcg-whyZZ__card{grid-column:2}
  .pcg-whyZZ__item:nth-child(even) .pcg-whyZZ__dot{top:calc(50% - 2px)}
  @media (max-width:860px){
    .pcg-whyZZ__list:before{left:12px;transform:none}
    .pcg-whyZZ__dot{left:12px;transform:translate(-50%,-50%)}
    .pcg-whyZZ__item{grid-template-columns:1fr;margin-left:22px}
    .pcg-whyZZ__card{grid-column:1}
  }
    





    
