/********** Template CSS **********/

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

.fw-medium {
  font-weight: 600;
}

.mt-6 {
  margin-top: 5rem;
}

.mb-6 {
  margin-bottom: 5rem;
}

.pt-6 {
  padding-top: 5rem;
}

.pb-6 {
  padding-bottom: 5rem;
}


/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}


/*** Button ***/
.btn {
  transition: .5s;
  font-weight: 600;
  text-transform: uppercase;
}

.btn-primary,
.btn-outline-primary:hover {
  color: var(--bs-light);
}

.btn-secondary,
.btn-outline-secondary:hover {
  color: var(--bs-dark);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-xl-square {
  width: 60px;
  height: 60px;
}

.btn-xxl-square {
  width: 75px;
  height: 75px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square,
.btn-xl-square,
.btn-xxl-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

:root {
  --topbar-bg-1: #e9f6ea;
  --topbar-bg-2: #ffffff;
  --pink: #e91e8c;
  --pink-dark: #c2127a;
  --navbar-blue: #1a76b5;
  --navbar-blue-dark: #145d90;
  --text-dark: #2b2b2b;
  --white: #ffffff;
}

.pp-topbar,
.pp-navbar,
.pp-nav-menu,
.pp-dropdown {
  box-sizing: border-box;
}

.pp-topbar *,
.pp-navbar * {
  box-sizing: border-box;
}

.pp-topbar a {
  text-decoration: none;
  color: inherit;
}

.pp-navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ===== TOPBAR ===== */
.pp-topbar {
  background: linear-gradient(90deg, var(--topbar-bg-1) 0%, var(--topbar-bg-2) 60%);
  padding: 14px 0;
}

.pp-topbar .pp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.pp-logo svg {
  width: 50px;
  height: 50px;
  display: block;
  flex-shrink: 0;
}

.pp-logo-text {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(90deg, #8e2de2, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
}

.pp-topbar-info {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.pp-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: var(--text-dark);
  white-space: nowrap;
}

.pp-info-item i {
  color: var(--pink);
  font-size: 17px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.pp-info-item a {
  color: var(--text-dark);
  text-decoration: none;
}

.pp-info-item a:hover {
  color: var(--pink-dark);
}

/* ===== MAIN NAVBAR ===== */
.pp-navbar {
  background: var(--navbar-blue);
  position: relative;
  z-index: 1000;
  overflow: visible;
}

.pp-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: relative;
}

.pp-nav-menu {
  display: flex;
  align-items: center;
}

.pp-nav-menu>li {
  position: relative;
  list-style: none;
}

.pp-nav-menu>li>a {
  display: block;
  padding: 18px 22px;
  color: var(--white) !important;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .3px;
  transition: background .25s ease;
  text-decoration: none;
}

.pp-nav-menu>li>a i {
  font-size: 12px;
  margin-left: 6px;
}

.pp-nav-menu>li:hover>a,
.pp-nav-menu>li>a.pp-active {
  background: var(--navbar-blue-dark);
}

/* Dropdown - IMPORTANT: display explicitly control kela, Bootstrap clash टाळण्यासाठी */
.pp-dropdown {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s ease;
  z-index: 1001;
  margin: 0;
  padding: 0;
}

.pp-dropdown li a {
  display: block;
  padding: 12px 20px;
  color: var(--text-dark) !important;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
}

.pp-dropdown li:last-child a {
  border-bottom: none;
}

.pp-dropdown li a:hover {
  background: var(--navbar-blue);
  color: var(--white) !important;
  padding-left: 26px;
}

/* Mobile toggle */
.pp-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 14px 20px;
}

/* ===== DESKTOP: HOVER SE DROPDOWN ===== */
@media (min-width:992px) {

  .pp-nav-menu>li:hover .pp-dropdown,
  .pp-dropdown.pp-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* ===== MOBILE/TABLET: CLICK SE DROPDOWN ===== */
@media (max-width:991px) {
  .pp-topbar-info {
    gap: 16px;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }

  .pp-info-item {
    font-size: 13px;
  }

  .pp-nav-toggle {
    display: block;
  }

  .pp-nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--navbar-blue);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
  }

  .pp-nav-menu.pp-open {
    display: flex;
  }

  .pp-nav-menu>li {
    width: 100%;
  }

  .pp-nav-menu>li>a {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
  }

  .pp-dropdown {
    position: static;
    transform: none;
    display: none;
    box-shadow: none;
    background: var(--navbar-blue-dark);
  }

  .pp-dropdown.pp-open {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .pp-dropdown li a {
    color: var(--white) !important;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .pp-dropdown li a:hover {
    background: rgba(255, 255, 255, .15);
    padding-left: 20px;
  }
}

@media (max-width:576px) {
  .pp-logo svg {
    width: 40px;
    height: 40px;
  }

  .pp-logo-text {
    font-size: 12px;
  }

  .pp-info-item span {
    display: none;
  }
}

/* ===== HERO SLIDER WRAPPER ===== */
.pp-hero {
  position: relative;
  width: 100%;
  background: #ffffff;
  overflow: hidden;
}

.pp-hero-slide-box {
  position: relative;
  width: 100%;
  /* Desktop: fixed aspect area so image + overlay text align perfectly */
  aspect-ratio: 1350 / 550;
  max-height: 600px;
}

/* Each slide image - full width, stacked on top of each other, cross-fade */
.pp-slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .8s ease;
}

.pp-slide-img.pp-active {
  opacity: 1;
  visibility: visible;
  position: relative;
  /* keeps natural height as fallback reference */
}

/* ===== TEXT OVERLAY (desktop: sits on the blank left area of the image) ===== */
.pp-hero-text {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  max-width: 38%;
  z-index: 10;
}

.pp-hero-text h1 {
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 400;
  line-height: 1.3;
  color: #1c1c1c;
}

.pp-hero-line {
  display: block;
  overflow: hidden;
}

.pp-hero-line span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: pp-line-up .7s cubic-bezier(.22, 1, .36, 1) forwards;
}

@keyframes pp-line-up {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===== SLIDER DOTS ===== */
.pp-slider-dots {
  position: absolute;
  bottom: 18px;
  right: 5%;
  display: flex;
  gap: 8px;
  z-index: 15;
}

.pp-slider-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: #cfeaf7;
  cursor: pointer;
  padding: 0;
  transition: .3s;
}

.pp-slider-dots button.pp-dot-active {
  background: #2fb4e8;
  transform: scale(1.2);
}

/* Prev/Next arrows */
.pp-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .85);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
  color: #1a76b5;
  font-size: 16px;
  cursor: pointer;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .25s;
}

.pp-slider-arrow:hover {
  background: #1a76b5;
  color: #fff;
}

.pp-arrow-prev {
  left: 16px;
}

.pp-arrow-next {
  right: 16px;
}

/* ===========================================================
   RESPONSIVE — TABLET & MOBILE
   Text stacks ABOVE image on white background (no overlay)
   =========================================================== */
@media (max-width:991px) {
  .pp-hero-slide-box {
    aspect-ratio: unset;
    max-height: unset;
    display: flex;
    flex-direction: column;
    padding: 30px 20px 40px;
  }

  .pp-hero-text {
    position: static;
    transform: none;
    max-width: 100%;
    text-align: center;
    order: 1;
    margin-bottom: 20px;
  }

  .pp-hero-text h1 {
    font-size: clamp(22px, 5vw, 32px);
  }

  .pp-slide-img {
    position: absolute;
    order: 2;
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
  }

  /* Give the stacked image area a defined height since images are absolute */
  .pp-hero-slide-box {
    min-height: 520px;
  }

  .pp-slide-img.pp-active {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
  }

  .pp-slider-dots {
    bottom: 10px;
    right: 50%;
    transform: translateX(50%);
  }

  .pp-slider-arrow {
    display: none;
  }
}

@media (max-width:576px) {
  .pp-hero-text h1 {
    font-size: 22px;
    line-height: 1.4;
  }

  .pp-hero-slide-box {
    min-height: 290px;
    padding: 20px 12px 30px;
  }

  .pp-slide-img {
    max-height: 300px;
  }
}

.page-header {
  background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

:root {
  --pp-blue: #1a76b5;
  --pp-blue-dark: #145d90;
  --pp-purple-btn: #4b3fc9;
  --pp-purple-btn-dark: #3b30a3;
  --pp-text-dark: #232323;
  --pp-text-body: #4a4a4a;
  --pp-green-bar: #3cb878;
  --pp-icon-maroon: #7a2340;
  --pp-icon-bg: #e7e0d6;
  --pp-section-tint: linear-gradient(180deg, #eef8ee 0%, #eaf4f6 100%);
}

.pp-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.pp-section {
  padding: 70px 0;
}

/* ===== Shared: Image + Text row ===== */
.pp-feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.pp-feature-row.pp-reverse {
  flex-direction: row-reverse;
}

.pp-feature-img {
  flex: 1 1 45%;
}

.pp-feature-img img {
  border-radius: 4px;
  width: 100%;
  object-fit: cover;
  display: block;
  max-width: 100%;
}

.pp-feature-content {
  flex: 1 1 50%;
}

.pp-feature-content h2 {
  color: var(--pp-blue);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 18px;
}

.pp-feature-content p {
  color: var(--pp-text-body);
  font-size: 16px;
  margin-bottom: 26px;
}

.pp-btn-purple {
  display: inline-block;
  background: var(--pp-purple-btn);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .3px;
  padding: 13px 30px;
  border-radius: 13px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: .25s;
}

.pp-btn-purple:hover {
  background: var(--pp-purple-btn-dark);
}

/* Tinted background wrapper for middle sections */
.pp-tinted {
  background: var(--pp-section-tint);
}

/* ===== WORK AREAS ===== */
.pp-work-areas {
  text-align: center;
}

.pp-work-areas h2 {
  color: var(--pp-blue);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 50px;
}

.pp-work-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pp-work-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.pp-work-icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--pp-icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-icon-maroon);
  font-size: 38px;
  transition: .3s;
}

.pp-work-item:hover .pp-work-icon {
  background: var(--pp-icon-maroon);
  color: #fff;
  transform: translateY(-6px);
}

.pp-work-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--pp-text-dark);
  margin: 0;
}

/* ===== OUR PROCESS ===== */
.pp-process-row {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-top: 60px;
  text-align: left;
}

.pp-process-col {
  flex: 1 1 40%;
}

.pp-process-col h3 {
  color: var(--pp-blue);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.pp-process-col ol {
  list-style: none;
  counter-reset: pp-step;
  padding: 0;
  margin: 0;
}

.pp-process-col ol li {
  counter-increment: pp-step;
  margin-bottom: 18px;
  padding-left: 34px;
  position: relative;
  font-size: 18px;
  color: var(--pp-text-body);
}

.pp-process-col ol li::before {
  content: counter(pp-step) ")";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--pp-text-dark);
}

.pp-progress-col {
  flex: 1 1 55%;
}

.pp-progress-item {
  margin-bottom: 26px;
}

.pp-progress-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--pp-text-dark);
}

.pp-progress-track {
  background: #e4e4e4;
  border-radius: 20px;
  height: 22px;
  overflow: hidden;
  position: relative;
}

.pp-progress-fill {
  height: 100%;
  background: var(--pp-green-bar);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  transition: width 1.2s ease;
}

/* ===== STATS COUNTER ===== */
.pp-stats-row {
  display: flex;
  justify-content: space-around;
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
}

.pp-stat-item {
  flex: 1;
  position: relative;
  padding: 0 20px;
}

.pp-stat-item+.pp-stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  border-left: 2px dotted #b8c9c6;
}

.pp-stat-item h2 {
  font-size: 44px;
  font-weight: 800;
  color: var(--pp-text-dark);
  margin: 0;
}

.pp-stat-item p {
  font-size: 18px;
  color: var(--pp-text-body);
  text-transform: capitalize;
  margin-top: 6px;
}

/* ===== FOOTER ===== */
.pp-footer {
  background: #111111;
  color: #c9c9c9;
  padding: 60px 0 0;
}

.pp-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}

.pp-footer-col h5 {
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.pp-footer-col p {
  font-size: 18px;
  line-height: 1.8;
  color: #a8a8a8;
  margin: 0;
}

.pp-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pp-footer-col ul li {
  margin-bottom: 12px;
}

.pp-footer-col ul li a {
  color: #c9c9c9;
  font-size: 18px;
  text-decoration: none;
  transition: .2s;
}

.pp-footer-col ul li a:hover {
  color: var(--pp-blue);
  padding-left: 4px;
}

.pp-footer-col ul li i {
  font-size: 18px;
  margin-right: 8px;
  color: var(--pp-blue);
}

.pp-footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 18px;
  color: #a8a8a8;
  margin-bottom: 14px;
}

.pp-footer-contact i {
  color: var(--pp-blue);
  margin-top: 3px;
}

.pp-footer-bottom {
  border-top: 1px solid #2a2a2a;
  text-align: center;
  padding: 20px 0;
  font-size: 18px;
  color: #888;
}

.pp-footer-bottom a {
  color: #c9c9c9;
  font-weight: 600;
  text-decoration: none;
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width:991px) {
  .pp-section {
    padding: 50px 0;
  }

  .pp-feature-row,
  .pp-feature-row.pp-reverse {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .pp-work-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
  }

  .pp-process-row {
    flex-direction: column;
    gap: 40px;
  }

  .pp-stats-row {
    flex-wrap: wrap;
    gap: 30px;
  }

  .pp-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width:576px) {
  .pp-feature-content h2 {
    font-size: 24px;
  }

  .pp-work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pp-work-icon {
    width: 90px;
    height: 90px;
    font-size: 32px;
  }

  .pp-stats-row {
    flex-direction: column;
    gap: 30px;
  }

  .pp-stat-item+.pp-stat-item::before {
    display: none;
  }

  .pp-stat-item h2 {
    font-size: 34px;
  }

  .pp-footer-grid {
    grid-template-columns: 1fr;
  }
}



/* ===== FULL PAGE BACKGROUND IMAGE ===== */
html,
body {
  height: 100%;
}

body {
  background-image: url('../img/header1.jpg');
  /* tuझी actual background image cha path */
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* scroll kelyavarही image स्थिर rahते */
}

/* ===== Sections cha solid background transparent kar, jenekarun khaली chi body image disेल ===== */
.pp-topbar {
  background: linear-gradient(90deg, rgba(233, 246, 234, .85) 0%, rgba(255, 255, 255, .85) 60%);
}

.pp-navbar {
  background: rgba(26, 118, 181, .92);
  /* --navbar-blue cha transparent version */
}

.pp-hero {
  background: rgba(255, 255, 255, .85);
}

.pp-section {
  background: transparent;
}

.pp-tinted {
  background: rgba(238, 248, 238, .7);
  /* halka green tint, semi-transparent */
}

.pp-footer {
  background: rgba(17, 17, 17, .92);
}

/* ===== MOBILE FIX =====
   background-attachment:fixed iOS Safari var lag karत nahi/glitch karto,
   tyामुळे mobile var scroll madhे badल tak. */
@media (max-width:768px) {
  body {
    background-attachment: scroll;
  }
}


/* ===== GLOBAL RESET — horizontal scroll cha main fix ===== */
* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  /* koणतahi element chukून baher geलa tar scroll block hoईल */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

:root {
  --pp-blue: #1a76b5;
  --pp-blue-dark: #145d90;
  --pp-text-dark: #232323;
  --pp-text-body: #4a4a4a;
  --pp-section-tint: linear-gradient(180deg, #eef8ee 0%, #eaf4f6 100%);
}

.pp-wrap {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== PAGE BANNER ===== */
.pp-page-banner {
  position: relative;
  width: 100%;
  height: 380px;
  background-image: linear-gradient(rgba(0, 0, 0, .35), rgba(0, 0, 0, .35)),
    url('../img/bannerback.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pp-page-banner h1 {
  color: #ffffff;
  font-size: 38px;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .3);
  padding: 0 20px;
  margin: 0;
  max-width: 100%;
}

/* ===== CONTENT WRAPPER (tinted background) ===== */
.pp-content-tint {
  background: var(--pp-section-tint);
  padding: 70px 0 60px;
  width: 100%;
  overflow: hidden;
}

.pp-feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 70px;
  width: 100%;
}

.pp-feature-row.pp-reverse {
  flex-direction: row-reverse;
}

.pp-feature-img {
  flex: 1 1 45%;
  min-width: 0;
}

.pp-feature-img img {
  border-radius: 4px;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.pp-feature-content {
  flex: 1 1 50%;
  min-width: 0;
}

.pp-feature-content h2 {
  color: var(--pp-blue);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
  word-wrap: break-word;
}

.pp-feature-content p {
  color: var(--pp-text-body);
  font-size: 18px;
  margin: 0;
  word-wrap: break-word;
}

/* ===== OUR INITIATIVES ===== */
.pp-initiatives {
  text-align: center;
  width: 100%;
}

.pp-initiatives h2 {
  color: var(--pp-blue);
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 40px;
}

.pp-initiative-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.pp-initiative-card {
  background: #ffffff;
  border-radius: 6px;
  padding: 45px 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
  transition: .3s;
  min-width: 0;
}

.pp-initiative-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .1);
}

.pp-initiative-card i {
  font-size: 34px;
  color: var(--pp-blue);
  margin-bottom: 18px;
}

.pp-initiative-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--pp-text-dark);
  margin-bottom: 12px;
}

.pp-initiative-card p {
  font-size: 14px;
  color: var(--pp-text-body);
  margin: 0;
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width:991px) {
  .pp-page-banner {
    height: 280px;
  }

  .pp-page-banner h1 {
    font-size: 28px;
  }

  .pp-content-tint {
    padding: 50px 0 40px;
  }

  .pp-feature-row,
  .pp-feature-row.pp-reverse {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    margin-bottom: 50px;
  }

  .pp-initiative-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width:576px) {
  .pp-page-banner {
    height: 220px;
  }

  .pp-page-banner h1 {
    font-size: 22px;
  }

  .pp-feature-content h2 {
    font-size: 21px;
  }

  .pp-wrap {
    padding: 0 16px;
  }
}



* {
  box-sizing: border-box;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}

:root {
  --pp-blue: #1a76b5;
  --pp-pink: #c21f7a;
  --pp-text-dark: #232323;
  --pp-text-body: #4a4a4a;
}


.pp-wrap {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.pp-join-section {
  padding: 70px 0;
  width: 100%;
}

/* ===== Block 1: Image + Text ===== */
.pp-join-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 70px;
}

.pp-join-img {
  flex: 1 1 45%;
  min-width: 0;
}

.pp-join-img img {
  border-radius: 4px;
  width: 100%;
  object-fit: cover;
}

.pp-join-content {
  flex: 1 1 50%;
  min-width: 0;
}

.pp-join-content h2 {
  color: var(--pp-blue);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.4;
}

.pp-join-content p {
  color: var(--pp-text-body);
  font-size: 18px;
  text-align: justify;
  margin: 0;
}

/* ===== Block 2: 2x2 Cards Grid ===== */
.pp-join-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #e2e2e2;
  margin-bottom: 70px;
}

.pp-join-card {
  padding: 36px 32px;
  border-right: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
}

.pp-join-card:nth-child(2n) {
  border-right: none;
}

.pp-join-card:nth-last-child(-n+2) {
  border-bottom: none;
}

.pp-join-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.pp-join-card-head i {
  font-size: 22px;
  color: var(--pp-pink);
  flex-shrink: 0;
}

.pp-join-card-head h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--pp-text-dark);
  margin: 0;
}

.pp-join-card p {
  font-size: 18px;
  color: var(--pp-text-body);
  margin: 0;
}

/* ===== Block 3: Ensuring Safe Workplaces ===== */
.pp-safe-block {
  text-align: center;
}

.pp-safe-block h2 {
  color: var(--pp-blue);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 22px;
}

.pp-safe-block p {
  color: var(--pp-text-dark);
  font-size: 16px;
  text-align: justify;
  max-width: 1150px;
  margin: 0 auto;
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width:991px) {
  .pp-join-section {
    padding: 50px 0;
  }

  .pp-join-row {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    margin-bottom: 50px;
  }

  .pp-join-content p {
    text-align: left;
  }

  .pp-join-cards {
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }

  .pp-join-card {
    border-right: none !important;
    border-bottom: 1px solid #e2e2e2 !important;
  }

  .pp-join-card:last-child {
    border-bottom: none !important;
  }

  .pp-safe-block p {
    text-align: left;
  }
}

@media (max-width:576px) {
  .pp-join-content h2 {
    font-size: 22px;
  }

  .pp-join-card {
    padding: 26px 20px;
  }

  .pp-safe-block h2 {
    font-size: 21px;
  }

  .pp-wrap {
    padding: 0 16px;
  }
}


/* ============================================================
   CONTACT SECTION — styles
   Link this file in your page <head>:
   <link rel="stylesheet" href="contact-section.css">
   ============================================================ */

:root {
  --ppf-blue: #1a73e8;
  --ppf-blue-dark: #0f5fc2;
  --ppf-text: #3c3c3c;
  --ppf-muted: #6b6b6b;
  --ppf-card-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.ppf-contact-info,
.ppf-get-in-touch {
  box-sizing: border-box;
}

.ppf-contact-info *,
.ppf-get-in-touch * {
  box-sizing: border-box;
}

/* ---------- Info cards ---------- */
.ppf-contact-info {
  padding: 60px 20px;
  background: #ffffff;
}

.ppf-contact-info__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ppf-contact-card {
  background: #ffffff;
  box-shadow: var(--ppf-card-shadow);
  border-radius: 4px;
  padding: 45px 25px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.ppf-contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
}

.ppf-contact-card__icon {
  width: 34px;
  height: 34px;
  margin: 0 auto 20px;
  color: #1a1a1a;
}

.ppf-contact-card__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.ppf-contact-card address,
.ppf-contact-card p {
  font-style: normal;
  margin: 0;
  color: var(--ppf-muted);
  font-size: 18px;
  line-height: 1.7;
}

.ppf-contact-card a {
  color: var(--ppf-muted);
  text-decoration: none;
}

.ppf-contact-card a:hover,
.ppf-contact-card a:focus-visible {
  color: var(--ppf-blue);
  text-decoration: underline;
}

/* ---------- Get in touch (form + bg image) ---------- */
.ppf-get-in-touch {
  position: relative;
  padding: 80px 20px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url('../img/strength-people-hands-success-meeting_1150-1690.jpg') center/cover no-repeat fixed;
  color: #fff;
}

.ppf-get-in-touch__inner {
  max-width: 800px;
  margin: 0 auto;
}

.ppf-get-in-touch h2 {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin: 0 0 45px;
  color: #ffffff;
}

.ppf-form__row {
  margin-bottom: 20px;
}

.ppf-form label {
  /* visually hidden but present for screen readers / SEO */
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.ppf-form input,
.ppf-form textarea {
  width: 100%;
  border: none;
  border-radius: 2px;
  padding: 16px 18px;
  font-size: 15px;
  font-family: inherit;
  color: #333;
  background: #f5f5f5;
}

.ppf-form input:focus,
.ppf-form textarea:focus-visible {
  outline: 3px solid var(--ppf-blue);
  outline-offset: 1px;
}

.ppf-form textarea {
  min-height: 150px;
  resize: vertical;
}

.ppf-form__submit {
  display: inline-block;
  background: var(--ppf-blue);
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 14px 40px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease;
}

.ppf-form__submit:hover,
.ppf-form__submit:focus-visible {
  background: var(--ppf-blue-dark);
}

/* ---------- Map ---------- */
.ppf-map {
  display: block;
  width: 100%;
  line-height: 0;
}

.ppf-map iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .ppf-contact-info__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .ppf-get-in-touch {
    background-attachment: scroll;
    /* fixed bg can jank on mobile */
    padding: 60px 16px;
  }

  .ppf-contact-info {
    padding: 40px 16px;
  }

  .ppf-contact-info__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ppf-get-in-touch h2 {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .ppf-map iframe {
    height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ppf-contact-card {
    transition: none;
  }
}