 
 /* Company Overview section */
  #company-pview-section {
      background-color: #fff;
      color: #ffffff;
      font-family: 'Montserrat', 'Poppins', sans-serif;
      padding: 20px 5px;
    }

    .company-pview-container {
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      align-items: center;
    }

    .company-pview-text {
      background-color: #0f1742;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    }

    .company-pview-text h2 {
      font-size: 2.75rem;
      font-family: 'Montserrat', 'Poppins', sans-serif;
      background-color: #EACEA0;
      color: #000035;
      padding: 18px;
      text-align: center;
      border-radius: 8px;
      margin-bottom: 25px;
      text-transform: uppercase;
      letter-spacing: 0.1px;  
    }

    .company-pview-text p {
      font-size: 2rem;
      font-family: 'Lato', sans-serif;
      line-height: 1.85;
      margin-bottom: 20px;
      text-align: justify;
      word-spacing: -2px;
    }

    .company-pview-blockquote {
      background-color: #d9f4f3;
      color: #1c4f4a;
      padding: 18px 22px;
      border-left: 6px solid #46b79F;
      border-radius: 6px;
      font-style: italic;
      font-weight: 600;
      margin: 25px 0;
      font-size: 1.8rem;
      text-align: center;
    }

    .company-pview-btn-wrap {
      text-align: center;
      margin-top: 30px;
    }

    .company-pview-btn {
      padding: 14px 28px;
      background-color: #46b79F;
      color: white;
      font-weight: bold;
      text-decoration: none;
      border-radius: 6px;
      display: inline-block;
      font-size: 1.5rem;
      transition: background-color 0.3s ease;
    }

    .company-pview-btn:hover {
      background-color: #3ea18d;
      color:#EACEA0;
    }

    .company-pview-image {
      border: 4px solid #46b79F;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.35);
      
    }

    .company-pview-image img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      
    }

    @media (max-width: 992px) {
      .company-pview-container {
        grid-template-columns: 1fr;
      }

      .company-pview-text,
      .company-pview-image {
        text-align: center;
      }

      .company-pview-image {
        margin-top: 30px;
      }
    }

    @media (max-width: 576px) {
      .company-pview-text {
        padding: 28px;
      }

      .company-pview-text h2 {
        font-size: 2rem;
        padding: 12px;
      }

      .company-pview-text p {
        font-size: 1.1rem;
      }

      .company-pview-blockquote {
        font-size: 1.05rem;
      }

      .company-pview-btn {
        font-size: 1rem;
        padding: 12px 20px;
      }
    }
 /* end of Company OVerview section */








/* About us page separate page */

.psky-title {
      text-align: center;
      font-size: 5rem;
      color: #000035;
      font-family: 'Montserrat', 'Poppins', sans-serif;
      margin: 4rem 1rem 2.5rem;
    }

    .psky-grid-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      padding: 0 1.5rem 4rem;
    }

    .psky-card {
      background: #fff;
      border-left: 6px solid #46b79F;
      border-radius: 10px;
      padding: 1.8rem 1.5rem;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .psky-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    }

    .psky-card i {
      width: 28px;
      height: 28px;
      display: block;
      margin-bottom: 10px;
    }

    .psky-card h3 {
      font-size: 2.3rem;
      color: #000035;
      margin-bottom: 0.8rem;
      font-family: 'Lato', sans-serif;
    }

    .psky-card p {
      font-size: 1.5rem;
      line-height: 1.6;
      color: #444;
    }

    .psky-intro {
      grid-column: 1 / -1;
      background-color:#EACEA0;
      border-left-color: #000035;
    }

    .psky-intro h2 {
      font-size: 3rem;
      margin-bottom: 1rem;
      color: #000035;
      font-family: 'Montserrat', 'Poppins', sans-serif;
    }

    .psky-intro p {
      font-size: 1.8rem;
      color: #222;
    }

    /* SIX STEPS SECTION */
    #psky-six-steps {
      background-color: #ffffff;
      padding: 4rem 1.5rem 2rem;
    }

    .psky-steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .psky-step-card {
      background-color: #121f33;
      border-radius: 12px;
      padding: 2rem 1.5rem;
      text-align: center;
      transition: transform 0.3s ease;
    }


   .psky-step-link {
  text-decoration: none;
  color: inherit;
  display: block;
  }



    .psky-step-card:hover {
      transform: translateY(-5px);
    }

    .psky-step-icon {
      color: #4FC3F7;
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .psky-step-title {
      font-family: 'Montserrat', 'Poppins', sans-serif;
      font-size: 3rem;
      color: #F7D9A5;
      margin-bottom: 0.5rem;
    }

 


    .psky-step-desc  {
      font-size: 1.5rem;
      color: #ffffff;
      line-height: 1.5;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .psky-steps-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .psky-steps-grid {
        grid-template-columns: 1fr;
      }

      .psky-title {
        font-size: 2rem;
      }

      .psky-card h3 {
        font-size: 1.3rem;
      }

      .psky-card p {
        font-size: 0.98rem;
      }

      .psky-step-title {
        font-size: 1.15rem;
      }

      .psky-step-desc {
        font-size: 0.9rem;
      }

      .psky-intro h2 {
        font-size: 1.5rem;
      }

      .psky-intro p {
        font-size: 1rem;
      }
    }

 /* end ofAbout us page separate page */




  /* CERTIFICATION STRIP Home page */

   .certificates-section {
    font-family: sans-serif;
    padding: 3rem 1rem;
    background: #fff;
    text-align: center;
  }

  .certificates-section h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
  }

  .swiper.cert-swiper {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 1rem 0;
  }

  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide canvas {
    width: 300px;
    height: 220px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    pointer-events: none;
    user-select: none;
  }

  .swiper-button-next,
  .swiper-button-prev {
    color: #333;
  }

  @media (max-width: 640px) {
    .swiper-slide canvas {
      width: 90% !important;
      height: auto !important;
    }
  }
  
  /* CERTIFICATION STRIP Home Page end */




  /* IMPACT & SUSTAINABILITY */
   .sustainability-section {
      font-family: 'Montserrat', 'Poppins', sans-serif;
      padding: 4rem 1.5rem;
      text-align: center;
      background-color: #46b79F; /* Emerald Green */
      color: #1a1a1a;
    }

    .sustainability-section h2 {
      font-size: 3rem;
      color: #000035; /* Deep Navy Blue */
      margin-bottom: 1rem;
      font-weight: 800;
    }

    .sustainability-section p.intro {
      font-size: 1.6rem;
      max-width: 800px;
      margin: 0 auto 2rem;
      color: #ffffff;
      line-height: 1.7;
    }

    .sustainability-section .cta-button {
      display: inline-block;
      background-color: #EACEA0; /* Sandstone Gold */
      color: #000035;
      padding: 1rem 2.2rem;
      font-size: 1.2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 5px 10px rgba(0,0,0,0.15);
      transition: all 0.3s ease;
    }

    .sustainability-section .cta-button:hover {
      background-color: #fad9aa;
    }

    .sustainability-section .carousel-container {
      position: relative;
      max-width: 900px;
      margin: 3rem auto;
      overflow: hidden;
    }

    .sustainability-section .carousel-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .sustainability-section .carousel-slide {
      min-width: 100%;
      padding: 2rem;
      box-sizing: border-box;
      background-color: #9FD9E4; /* Cyan */
      border-radius: 1rem;
      margin: 0 0.5rem;
      color: #003b3f;
    }

    .sustainability-section .carousel-slide h3 {
      font-size: 2rem;
      color: #000035;
      margin-bottom: 1rem;
    }

    .sustainability-section .carousel-slide p {
      font-size: 1.2rem;
      color: #222;
    }

    .sustainability-section .carousel-buttons {
      display: flex;
      justify-content: center;
      margin-top: 1rem;
      gap: 1rem;
    }

    .sustainability-section .carousel-buttons button {
      background-color: #000035;
      border: none;
      color: #fff;
      padding: 0.7rem 1.4rem;
      border-radius: 0.5rem;
      cursor: pointer;
      font-weight: 600;
      transition: background-color 0.3s ease;
    }

    .sustainability-section .carousel-buttons button:hover {
      background-color: #708990; /* Slate Gray */
    }

    .sustainability-section .sustainability-cards {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      margin-top: 3rem;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 1rem;
    }

    @media (min-width: 768px) {
      .sustainability-section .sustainability-cards {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .sustainability-section .card {
      background-color: #ffffff;
      border-radius: 1.25rem;
      padding: 2rem;
      text-align: center;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .sustainability-section .card:hover {
      transform: translateY(-6px);
    }

    .sustainability-section .icon-circle {
      font-size: 2.5rem;
      border-radius: 9999px;
      padding: 1rem;
      display: inline-block;
      margin-bottom: 1rem;
    }

    .sustainability-section .bg-energy {
      background-color: #c1ece4;
      color: #004d40;
    }

    .sustainability-section .bg-carbon {
      background-color: #a7e9e0;
      color: #003b3f;
    }

    .sustainability-section .bg-social {
      background-color: #ffedcc;
      color: #5d4037;
    }

    .sustainability-section .card h4 {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      color: #000035;
    }

    .sustainability-section .card p {
      font-size: 1.1rem;
      color: #444;
      line-height: 1.6;
    }
  /* IMPACT & SUSTAINABILITY END */







  /* Client Logo Sections */
    #clientLogoCarouselSection {
      width: 100%;
      overflow: hidden;
      background: #ffffff;
      padding: 40px 0;
      text-align: center;
    }

    #clientLogoCarouselSection .clc-heading {
      font-size: 28px;
      font-weight: 600;
      margin-bottom: 30px;
      color: #333;
    }

    #clientLogoCarouselSection .clc-carousel-wrapper {
      display: flex;
      animation: clc-scroll 50s linear infinite;
      width: fit-content;
      gap: 100px;
    }

    #clientLogoCarouselSection .clc-carousel-group {
      display: flex;
      gap: 60px;
    }

    #clientLogoCarouselSection .clc-logo {
      width: 200px;
      height: 100px;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: all 0.3s ease;
    }

    #clientLogoCarouselSection .clc-logo:hover {
      filter: grayscale(0%);
      opacity: 1;
    }

    @keyframes clc-scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    @media (max-width: 768px) {
      #clientLogoCarouselSection .clc-logo {
        width: 140px;
        height: 70px;
      }

      #clientLogoCarouselSection .clc-carousel-group {
        gap: 70px;
      }
    }

    @media (max-width: 480px) {
      #clientLogoCarouselSection .clc-logo {
        width: 100px;
        height: 50px;
      }

      #clientLogoCarouselSection .clc-carousel-group {
        gap: 50px;
      }
    }

  /* End of Client Logo Sections */





  /* MEDIA/BLOG FEED */
  
#paprsky-media-insights {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    background-color: #f9f9f9;
    padding: 40px 5vw 50px; /* Reduced horizontal padding */
    margin: 0 auto;
  }

  #paprsky-media-insights .pmi-title {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #000035;
    text-align: center;
    margin-bottom: 40px;
  }

  .pmi-card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-evenly;
  }

  .pmi-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 330px;
    display: flex;
    flex-direction: column;
  }

  .pmi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
  }

  .pmi-image-wrapper {
    position: relative;
  }

  .pmi-image-wrapper img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .pmi-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: #46b79F;
    color: white;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 6px;
    font-family: 'Montserrat', 'Poppins', sans-serif;
  }

  .pmi-card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .pmi-card-body h5 {
    font-family: 'Lato', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000035;
  }

  .pmi-card-body p {
    color: #708990;
    font-size: 1rem;
    line-height: 1.5;
    flex-grow: 1;
  }

  .pmi-card-body a {
    align-self: flex-start;
    margin-top: 16px;
    background-color: transparent;
    border: 2px solid #46b79F;
    color: #46b79F;
    font-size: 0.95rem;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
  }

  .pmi-card-body a:hover {
    background-color: #46b79F;
    color: white;
  }

  @media (max-width: 768px) {
    #paprsky-media-insights {
      padding: 30px 20px;
    }

    .pmi-card-grid {
      flex-direction: column;
      align-items: center;
    }

    .pmi-card-body h5 {
      font-size: 1.1rem;
    }

    .pmi-card-body p {
      font-size: 0.95rem;
    }
  }
  /* END OF MEDIA/BLOG FEED */



 /* Start of Contact Section Styles */
 #paprsky-contact-v5 {
    background-color: #000035;
    padding: 40px 10px;
  }

  .paprsky-contact-v5-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .paprsky-contact-v5-left {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .paprsky-contact-v5-heading {
    font-size: 5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
  }

  .paprsky-contact-v5-text {
    font-size: 3rem;
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #eacea0;
    margin-bottom: 0.75rem;
  }

  .paprsky-contact-v5-subtext {
    font-size: 1.8rem;
    font-family: 'Lato', sans-serif;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: #9fd9e4;
  }

  .paprsky-contact-v5-btn {
    background-color: #46b79f;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    width: fit-content;
  }

  .paprsky-contact-v5-btn:hover {
    background-color: #3ca48c;
    color: #000035;
  }

  .paprsky-contact-v5-right {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .paprsky-contact-v5-img {
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  @media (max-width: 1024px) {
    .paprsky-contact-v5-heading {
      font-size: 3.2rem;
    }
    .paprsky-contact-v5-text {
      font-size: 1.6rem;
    }
    .paprsky-contact-v5-subtext {
      font-size: 1.4rem;
    }
  }

  @media (max-width: 768px) {
    .paprsky-contact-v5-container {
      flex-direction: column-reverse;
      text-align: center;
    }

    .paprsky-contact-v5-left,
    .paprsky-contact-v5-right {
      flex: 1 1 100%;
    }

    .paprsky-contact-v5-btn {
      margin: 0 auto;
    }

    .paprsky-contact-v5-img {
      max-width: 300px;
    }
  }

  @media (max-width: 480px) {
    .paprsky-contact-v5-heading {
      font-size: 2.4rem;
    }
    .paprsky-contact-v5-text,
    .paprsky-contact-v5-subtext {
      font-size: 1.2rem;
    }
  }

 /* End of Contact Section Styles */
 





  /* footer */
#psky-footer {
    background-color: #000;
    color: #fff;
    font-family: 'Lato', sans-serif;
    padding: 2.5rem 1.5rem;
  }

  #psky-footer .psky-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
    text-align: center;
    
  }

  #psky-footer a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }

  #psky-footer a:hover {
    color: #46b79F;
  }

  .psky-footer-social {
    display: flex;
    gap: 3rem;
  }

  .psky-footer-social img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
  }

  .psky-footer-social img:hover {
    filter: brightness(0) invert(0.6) sepia(1) hue-rotate(120deg) saturate(3);
  }



  .psky-footer-copy {
    margin-top: 2rem;
    font-size: 1.2rem;
    color: #aaa;
    text-align: center;
  }

  @media (max-width: 768px) {
    #psky-footer .psky-footer-container {
      flex-direction: column;
      gap: 1.5rem;
    }

    .psky-footer-social img {
      width: 26px;
      height: 26px;
    }

    #psky-footer a {
      font-size: 1rem;
    }

    .psky-footer-copy {
      font-size: 0.85rem;
    }
  }

  @media (max-width: 480px) {
    .psky-footer-social img {
      width: 24px;
      height: 24px;
    }

    #psky-footer a {
      font-size: 0.95rem;
    }

    .psky-footer-copy {
      font-size: 0.8rem;
    }
  }

 /* End of  footer */


/* Base Styles */
#paprsky-banner-m {
      width: 100%;
      background-color: #f8f8f8;
    }

    .paprsky-banner-m-img {
      width: 100%;
      height: auto;
      display: block;
      max-width: 100%;
    }

    /* Optional: Adjust vertical spacing on mobile */
    @media (max-width: 768px) {
      .paprsky-banner-m-img {
        margin-top: 10px;
      }
    }
 





