    /* Header start  */
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .plinfo-header-wrapper {
      width: 100%;
      border-bottom: 1.5px solid #999;
    }

    .plinfo-header {
      max-width: 1500px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 30px;
      background-color: #fff;
      position: relative;
      z-index: 1000;
    }

    .plinfo-left {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    .plinfo-logo img {
      height: 40px;
    }

    .plinfo-nav {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    .plinfo-nav > div {
      position: relative;
    }

    .plinfo-nav a {
      text-decoration: none;
      color: #000;
      font-weight: 500;
      cursor: pointer;
    }

    .plinfo-nav a i {
      margin-left: 5px;
    }

    .plinfo-nav a:hover {
      color: #0077b6;
    }

    .plinfo-dropdown {
      display: none;
      position: absolute;
      top: 30px;
      left: 0;
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 3px;
      min-width: 220px;
      overflow: hidden;
      z-index: 999;
    }

    .plinfo-dropdown::before {
      content: '';
      display: block;
      height: 4px;
      background-color: #0077b6;
      width: 100%;
    }

    .plinfo-dropdown a {
      display: block;
      padding: 10px 12px;
      color: #333;
      font-size: 14.5px;
    }

    .plinfo-dropdown a:hover {
      background-color: #f0f0f0;
    }

    .plinfo-nav > div:hover .plinfo-dropdown,
    .plinfo-nav > div:focus-within .plinfo-dropdown {
      display: block;
    }

    .plinfo-jobs {
      color: #0066a0;
      font-weight: bold;
    }

    .plinfo-contact-btn {
      background-color: #1a1311;
      color: #fff;
      padding: 10px 20px;
      border-radius: 30px;
      font-weight: bold;
      text-decoration: none;
    }

    .plinfo-menu-toggle {
      display: none;
      cursor: pointer;
      font-size: 24px;
      color: #000;
    }

    .plinfo-mobile-menu {
      display: none;
      position: fixed;
      top: 80px;
      right: -100%;
      height: calc(100% - 80px);
      width: 280px;
      background: #000;
      color: #fff;
      box-shadow: -2px 0 10px rgba(0,0,0,0.1);
      padding: 30px;
      transition: right 0.3s ease;
      flex-direction: column;
      gap: 20px;
      z-index: 999;
    }

    .plinfo-mobile-menu a,
    .plinfo-mobile-menu button {
      font-size: 18px;
      font-weight: 500;
      text-decoration: none;
      color: #fff;
      background: none;
      border: none;
      text-align: left;
      cursor: pointer;
    }

    .plinfo-mobile-menu .mobile-dropdown {
      display: none;
      flex-direction: column;
      padding-left: 15px;
      gap: 10px;
    }

    .plinfo-mobile-menu .plinfo-contact-btn {
      background: transparent;
      border: 1px solid #fff;
      color: #fff;
      text-align: center;
      padding: 10px 20px;
      border-radius: 30px;
    }

    .plinfo-mobile-menu .social-icons {
      margin-top: 20px;
      display: flex;
      gap: 15px;
      justify-content: left;
    }

    .plinfo-mobile-menu .social-icons a {
      color: #fff;
      font-size: 20px;
      text-decoration: none;
    }

    .plinfo-mobile-menu.active {
      right: 0;
    }

    @media (max-width: 991px) {
      .plinfo-nav,
      .plinfo-jobs {
        display: none;
      }

      .plinfo-menu-toggle {
        display: block;
      }

    .plinfo-logo img {
      height: 36px;
    }

      .plinfo-header {
        flex-wrap: nowrap;
        justify-content: space-between;
      }

      .plinfo-left {
        gap: 15px;
      }

      .plinfo-contact-btn {
        padding: 8px 16px;
        font-size: 14px;
      }

      .plinfo-mobile-menu {
        display: flex;
      }
    }


/* Header end  */




/* Slider Start  */

 .plinfo-banner-section {
    background: #fff;
    padding: 60px 20px;
    margin-top: 60px;
  }
  .plinfo-banner-container {
    max-width: 1500px;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
  }
  .plinfo-banner-content {
    flex: 1;
  }
  .plinfo-banner-content h1 {
    font-size: 40px;
    color: #1a1311;
    margin-bottom: 20px;
  }
  .plinfo-banner-content p {
    font-size: 22px;
    color: #333;
    margin-bottom: 30px;
    max-width: 600px;
  }
  .plinfo-banner-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .plinfo-banner-btn {
    background: #1a1311;
    color: #fff;
    padding: 18px 36px;
    border-radius: 35px;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 18px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  }
  .plinfo-banner-btn span {
    background: #fff;
    color: #1a1311;
    border-radius: 50%;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .plinfo-banner-social a {
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
  }
  .plinfo-banner-social a.linkedin { background-color: #0077b5; }
  .plinfo-banner-social a.facebook { background-color: #4267B2; }
  .plinfo-banner-social a.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  }

  .plinfo-banner-slider {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(to bottom right, #dff5ff, #a8e8ff);
    padding: 10px;
  }
  .plinfo-slide {
    display: none;
    animation: fade 1s ease-in-out;
  }
  .plinfo-slide.active {
    display: block;
  }
  .plinfo-slide img {
    width: 100%;
    border-radius: 12px;
  }
  @keyframes fade {
    from { opacity: 0.5; }
    to { opacity: 1; }
  }
  .plinfo-dots {
    text-align: center;
    margin-top: 10px;
  }
  .plinfo-dot {
    height: 10px;
    width: 10px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
  }
  .plinfo-dot.active {
    background-color: #333;
  }

  /* ✅ MOBILE RESPONSIVE */
  @media (max-width: 767px) {
    .plinfo-banner-container {
      flex-direction: column;
      gap: 30px;
      text-align: left;
    }
    .plinfo-banner-content h1 {
      font-size: 34px;
      line-height: 1.3;
    }
    .plinfo-banner-content p {
      font-size: 16px;
    }
    .plinfo-banner-btn {
      font-size: 15px;
      padding: 14px 26px;
    }
    .plinfo-banner-btn span {
      padding: 4px 8px;
    }
    .plinfo-banner-social {
      justify-content: left;
      width: 100%;
    }
    .plinfo-banner-social a {
      height: 36px;
      width: 36px;
      font-size: 16px;
      margin-right: 8px;
    }
    .plinfo-banner-slider {
      width: 100%;
      padding: 8px;
    }
    .plinfo-slide img {
      border-radius: 10px;
    }
  }


/* Slider end  */



/* counter Start  */
.plinfo-counter-section {
  padding: 60px 20px;
  background: #f9fafd;
  text-align: center;
}
.plinfo-counter-container {
  max-width: 1500px;
  margin: auto;
}
.plinfo-counter-header h2 {
  font-size: 36px;
  color: #1a1311;
  margin-bottom: 10px;
}
.plinfo-counter-header p {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}
.plinfo-counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  justify-items: center;
}
.plinfo-counter-item {
  text-align: center;
}
.plinfo-circle {
  width: 120px;
  height: 120px;
  background: #005b94;
  color: white;
  font-size: 28px;
  font-weight: bold;
  line-height: 120px;
  border-radius: 50%;
  margin: 0 auto 10px;
  position: relative;
}
.plinfo-count {
  font-size: 28px;
}
.plinfo-counter-item p {
  color: #111;
  font-size: 16px;
}

/* counter End  */






/* footer  */

.plinfo-footer {
    background: #fff;
    padding: 60px 20px 20px;
    border-top: 1px solid #eee;
    margin-top: 50px;
  }
  .plinfo-footer-container {
    max-width: 1500px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: flex-start;
  }
  .plinfo-footer-column h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .plinfo-footer-column hr {
    border: none;
    border-top: 1px solid #ddd;
    margin-bottom: 15px;
  }
  .plinfo-footer-column ul {
    list-style: none;
    padding: 0;
  }
  .plinfo-footer-column ul li {
    margin-bottom: 8px;
  }
  .plinfo-footer-column ul li a {
    color: #000;
    text-decoration: none;
    font-size: 14.5px;
  }
  .plinfo-footer-column ul li a:hover {
    color: #0077b6;
  }
  .plinfo-footer-social a {
    display: inline-block;
    margin-right: 12px;
    font-size: 20px;
    color: #000;
  }
  .plinfo-footer-social a:hover {
    color: #0077b6;
  }
  .plinfo-footer-logo {
    max-width: 120px;
  }
  .plinfo-footer-bottom {
    max-width: 1500px;
    margin: 30px auto 0;
    text-align: center;
  }
  .plinfo-footer-bottom hr {
    border: none;
    border-top: 1px solid #ddd;
    margin-bottom: 15px;
  }
  .plinfo-footer-bottom p {
    font-size: 16px;
    color: #333;
  }
  .plinfo-footer-bottom a {
    color: #0077b6;
    text-decoration: none;
  }
  .plinfo-footer-bottom a:hover {
    text-decoration: underline;
  }

  /* footer  */






  /* Team  */

  .plinfoteam-section {
  padding: 80px 20px;
  background-color: #fff;
}

.plinfoteam-container {
  max-width: 1500px;
  margin: 0 auto;
}

.plinfoteam-header {
  text-align: center;
  margin-bottom: 60px;
}

.plinfoteam-header h2 {
  font-size: 40px;
  color: #1a1311;
  font-weight: 700;
}

.plinfoteam-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  justify-items: center;
  align-items: start;
}

.plinfoteam-member {
  text-align: center;
}

.plinfoteam-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.plinfoteam-member h4 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 5px;
}

.plinfoteam-member p {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.plinfoteam-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.plinfoteam-social a {
  font-size: 20px;
  color: #0077b5;
  transition: 0.3s ease;
}

.plinfoteam-social a:hover {
  color: #005682;
}

  /* Team  */







/* ✅ ANUT US  */


  .plinfoabout-section {
    padding: 0;
    background: #fff;
  }

  .plinfoabout-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1500px;
    margin: 0 auto;
    align-items: flex-start;
    gap: 0;
  }

  .plinfoabout-image {
    flex: 1 1 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
  }

  .plinfoabout-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 30px;
    margin: 20;
    padding: 20px;
  }

  .plinfoabout-content {
    flex: 1 1 100%;
    padding: 20px;
    margin: 0;
  }

  .plinfoabout-label {
    color: #075088;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
  }

  .plinfoabout-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #222;
  }

  .plinfoabout-content p {
    font-size: 14px;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.6;
  }

  .plinfoabout-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    color: #fff;
    background-color: #075088;
    text-decoration: none;
    border: none;
    transition: background-color 0.3s ease;
  }

  .plinfoabout-btn:hover {
    background-color: #000000ff;
  }

  @media (min-width: 769px) {
    .plinfoabout-container {
      flex-direction: row;
      gap: 40px;
      padding: 60px 20px;
    }

    .plinfoabout-image,
    .plinfoabout-content {
      flex: 1 1 500px;
    }

    .plinfoabout-content h2 {
      font-size: 40px; /* ✅ updated for desktop */
    }

    .plinfoabout-content p {
      font-size: 18px; /* ✅ updated for desktop */
    }
  }


  /* ✅ ANUT US  */






  
/* badcrun */

.uvsbadcrun1-banner {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.uvsbadcrun1-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.uvsbadcrun1-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.uvsbadcrun1-title {
  color:rgb(255, 255, 255);
  font-size: 48px;
  font-weight: bold;
  text-align: center;

}

/* ✅ Mobile Responsive Styling */
@media (max-width: 768px) {
  .uvsbadcrun1-banner {
    height: 200px;
  }

  .uvsbadcrun1-title {
    font-size: 28px;
    padding: 0 20px;
  }
}

/* badcrun */





/* exprites */

.webzartexprites-section {
  max-width: 1500px;
  margin: 60px auto;
  padding: 0 20px;
}

.webzartexprites-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 30px;
}

.webzartexprites-swiper .swiper-slide {
  display: flex;
  justify-content: center;
}

.webzartexprites-card {
  height: 400px;
  width: 100%;
  max-width: 720px;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 25px;
  position: relative;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.webzartexprites-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
  z-index: 1;
}

.webzartexprites-content {
  position: relative;
  z-index: 2;
}

.webzartexprites-content h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.webzartexprites-content p {
  font-size: 14px;
  line-height: 1.4;
}

/* Swiper layout for mobile & desktop */
.webzartexprites-swiper {
  padding-bottom: 30px;
}

@media (min-width: 769px) {
  .webzartexprites-swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .webzartexprites-swiper .swiper-slide {
    width: 100% !important;
  }

  .swiper-pagination {
    display: none;
  }
}


/* exprites */





/* REVIEW */

.plinfovision-section {
  padding: 60px 20px;
  background: #fff;
  max-width: 1500px;
  margin: auto;
}

.plinfovision-header {
  max-width: 800px;
  margin-bottom: 40px;
}

.plinfovision-label {
  color: #6b6bff;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.plinfovision-title {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

.plinfovision-desc {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.plinfovision-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.plinfovision-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.plinfovision-overlay {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.plinfovision-overlay h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
}

.plinfovision-overlay p {
  font-size: 15px;
  color: #555;
  margin: 0;
  line-height: 1.4;
}

.swiper {
  width: 100%;
}

@media (max-width: 768px) {
  .swiper-slide {
    width: 100%;
    margin-right: 0;
  }

  .plinfovision-card {
    display: flex;
    flex-direction: column;
  }

  .plinfovision-overlay {
    position: static;
    margin-top: -5px;
    padding: 15px 15px;
    border-radius: 0 0 10px 10px;
    box-shadow: none;
  }

  .plinfovision-card img {
    border-radius: 10px 10px 0 0;
  }
}


/* REVIEW */






/* Journey */

 .plinfojourney-section {
    padding: 60px 20px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
  }

  .plinfojourney-heading h2 {
    font-size: 36px;
    color: #075088;
    margin-bottom: 10px;
  }

  .plinfojourney-heading p {
    font-size: 16px;
    color: #444;
    margin-bottom: 40px;
  }

  .plinfojourney-timeline {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1500px;
    margin: auto;
  }

  .plinfojourney-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(7, 80, 136, 0.1);
    padding: 30px 20px;
    flex: 1 1 220px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  .plinfojourney-card:hover {
    transform: translateY(-8px);
    border-color: #075088;
    box-shadow: 0 15px 30px rgba(7, 80, 136, 0.2);
  }

  .plinfojourney-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #075088;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 20px;
    box-shadow: 0 0 10px rgba(7, 80, 136, 0.3);
  }

  .plinfojourney-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #222;
  }

  .plinfojourney-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .plinfojourney-timeline {
      flex-direction: column;
      align-items: center;
    }

    .plinfojourney-card {
      width: 100%;
      max-width: 350px;
    }
  }

/* Journey */
