/* =====================================
   GLOBAL RESET
===================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Forma', 'Forma Fallback', 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
}

body.menu-open {
  overflow: hidden;
}

/* ==================================================
   HEADER WRAPPER
================================================== */
.plinfo-header-wrapper {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e2e2;
  z-index: 9999;
}

/* ==================================================
   TOP BAR
================================================== */
.top-bar {
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 180px;
  font-size: 14px;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* ==================================================
   HEADER MAIN
================================================== */
.plinfo-header {
  max-width: 1640px;
  margin: auto;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.plinfo-left {
  display: flex;
  align-items: center;
  gap: 140px;
}

.plinfo-logo img {
  height: 50px;
}

/* ==================================================
   DESKTOP NAV
================================================== */
.plinfo-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.plinfo-nav a {
  text-decoration: none;
  color: #111;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.4px;
}

.plinfo-nav a:hover {
  color: #072257;
}

/* ==================================================
   DESKTOP CONTACT BUTTON
================================================== */
.plinfo-contact-btn {
  background: #072257;
  color: #fff;
  padding: 10px 36px;
  font-weight: 600;
  border-radius: 0 0 0 20px;
  text-decoration: none;
  white-space: nowrap;
}

.desktop-only {
  display: inline-block;
}

/* ==================================================
   MENU TOGGLE (MOBILE)
================================================== */
.plinfo-menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #111;
}

/* ==================================================
   MOBILE MENU
================================================== */
.plinfo-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  background: #f7f8f6;
  padding: 70px 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: right 0.35s ease;
  z-index: 10000;
}

.plinfo-mobile-menu.active {
  right: 0;
}

/* Close */
.plinfo-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 26px;
  cursor: pointer;
}

/* Mobile menu links */
.plinfo-mobile-menu a,
.plinfo-mobile-menu button {
  background: none;
  border: none;
  text-align: left;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  cursor: pointer;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  text-transform: none; /* 🔥 NO CAPITALS */
}

.plinfo-mobile-menu a:hover {
  color: #072257;
}

/* Mobile Contact CTA */
.plinfo-mobile-menu .mobile-contact-btn {
  margin-top: 26px;
  background: #072257;
  color: #fff;
  padding: 14px;
  text-align: center;
  border-radius: 30px;
  font-weight: 600;
}

/* Social icons */
.plinfo-mobile-menu .social-icons {
  display: flex;
  gap: 18px;
  margin-top: 22px;
}

.plinfo-mobile-menu .social-icons a {
  font-size: 18px;
  color: #072257;
  border: none;
}

/* ==================================================
   RESPONSIVE FIXES
================================================== */
@media (max-width: 991px) {

  /* Top bar mobile layout */
  .top-bar {
    padding: 8px 14px;
  }

  /* Show ONLY Call (left) & Contact (right) */
  .top-bar-left {
    flex: 1;
  }

  .top-bar-right {
    display: flex;
    gap: 14px;
  }

  .top-bar-right a:not(:last-child) {
    display: none;
  }

  /* Hide desktop nav */
  .plinfo-nav {
    display: none;
  }

  /* Hide desktop button */
  .desktop-only {
    display: none !important;
  }

  /* Show toggle */
  .plinfo-menu-toggle {
    display: block;
  }
}






/* Slider Start  */

/* SLIDER WRAPPER */
.ishaq-trading-slider {
  width: 100%;
  height: 620px;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

/* SLIDES */
.ishaq-trading-slides {
  width: 100%;
  height: 100%;
  position: relative;
}

/* SINGLE SLIDE */
.ishaq-trading-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 0;
}

.ishaq-trading-slide.active {
  opacity: 1;
  z-index: 1;
}

/* IMAGE */
.ishaq-trading-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
}

/* ZOOM ANIMATION (ONLY ACTIVE SLIDE) */
.ishaq-trading-slide.active img {
  animation: ishaqZoom 7s linear forwards;
}

/* OVERLAY */
.ishaq-trading-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

/* CONTENT */
.ishaq-trading-content {
  position: absolute;
  left: 120px;
  top: 55%;
  transform: translateY(-50%);
  color: #ffffff;
  z-index: 2;
  max-width: 820px;
}

.ishaq-trading-title {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.85;
}

.ishaq-trading-content h2 {
  font-size: 78px;
  font-weight: 600;
  margin-bottom: 16px;
}

.ishaq-trading-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
  opacity: 0.9;
}

.ishaq-trading-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 14px 36px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
}

/* ZOOM KEYFRAMES */
@keyframes ishaqZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.12);
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .ishaq-trading-content {
    left: 40px;
    max-width: 90%;
  }

  .ishaq-trading-content h2 {
    font-size: 54px;
  }
}

@media (max-width: 576px) {
  .ishaq-trading-slider {
    height: 520px;
  }

  .ishaq-trading-content {
    left: 20px;
    right: 20px;
  }

  .ishaq-trading-content h2 {
    font-size: 38px;
  }
}

/* Slider end  */



/* TITLE SECTION START */
/* ISHAQ HEADING – CENTER ALIGNED FINAL */

.ishaqheading-section {
  width: 100%;
  background: #ffffff;
  padding: 70px 24px;
  font-family: 'Forma', 'Inter', sans-serif;
  box-sizing: border-box;
  text-align: center; /* GLOBAL CENTER */
}

.ishaqheading-wrap {
  max-width: 1600px;
  margin: 0 auto 28px;
}

/* Heading */
.ishaqheading-wrap h2 {
  font-size: 35px;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: #072257;
  margin: 0;
}

/* Description */
.ishaqheading-desc {
  max-width: 1280px;      /* 🔥 Readable width */
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.9;
  color: #444;
  text-align: center;    /* CENTER TEXT */
  box-sizing: border-box;
}

/* ======================
   TABLET
   ====================== */
@media (max-width: 992px) {
  .ishaqheading-section {
    padding: 60px 22px;
  }

  .ishaqheading-wrap h2 {
    font-size: 26px;
  }

  .ishaqheading-desc {
    font-size: 16.5px;
    max-width: 90%;
  }
}

/* ======================
   MOBILE
   ====================== */
@media (max-width: 600px) {
  .ishaqheading-section {
    padding: 48px 18px;
  }

  .ishaqheading-wrap h2 {
    font-size: 22px;
    letter-spacing: 1px;
  }

  .ishaqheading-desc {
    font-size: 16px;
    line-height: 1.85;
    max-width: 100%;     /* FULL WIDTH MOBILE */
    padding: 0;
    word-break: normal;
    overflow-wrap: break-word;
    text-align: center; /* KEEP CENTER */
  }
}

/* ======================
   SMALL MOBILE
   ====================== */
@media (max-width: 400px) {
  .ishaqheading-wrap h2 {
    font-size: 20px;
  }

  .ishaqheading-desc {
    font-size: 15.5px;
    line-height: 1.8;
  }
}

/* TITLE SECTION END */





/* HOME PAGE SOLUCTION B2B B2C SECTION START */

:root { --tab-index: 0; --tab-width: 33.33%; }

.soluctioncard1-section {
  max-width: 1600px;
  margin: auto;
  padding: 60px 20px;
  margin-top: 30px;
  background: #072257;
}

.soluctioncard1-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #e1e1e1;
}

/* TABS */
.soluctioncard1-tabs {
  display: flex;
  width: 100%;
  max-width: 900px;
  margin: auto;
  justify-content: space-between;
  margin-bottom: 6px;
}

.soluctioncard1-tab {
  flex: 1;
  text-align: center;
  padding: 14px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #e1e1e1;
  white-space: nowrap;
  transition: .3s ease;
}

.soluctioncard1-tab.active { color: #9b9a9a  ; }

/* underline */
.soluctioncard1-underline {
  width: 100%;
  max-width: 900px;
  margin: auto;
  height: 3px;
  background: #e1e1e1;
  position: relative;
  border-radius: 20px;
}

.soluctioncard1-underline::after {
  content: "";
  position: absolute;
  height: 3px;
  width: var(--tab-width);
  background: #e1e1e1  ;
  border-radius: 10px;
  transform: translateX(calc(var(--tab-index) * 100%));
  transition: transform .35s cubic-bezier(.23,1,.32,1);
}

/* SLIDER */
.soluctioncard1-slider { overflow: hidden; width: 100%; }
.soluctioncard1-wrapper {
  display: flex;
  transition: transform .45s cubic-bezier(.23,1,.32,1);
}

.soluctioncard1-card {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  padding: 50px 20px;
  align-items: center;
}

/* CONTENT */
.soluctioncard1-content h3 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: 'General Sans', sans-serif;
  color: #ffffff;
}

.soluctioncard1-content p {
   font-family: 'General Sans', sans-serif;
  font-size: 16px;
  color: #cecece;
  margin-bottom: 25px;
  line-height: 1.6;
}

.soluctioncard1-btn {
  padding: 12px 30px;
  border: 1px solid #e1e1e1;
   font-family: 'General Sans', sans-serif;
  display: inline-block;
  color: #e1e1e1;
  text-decoration: none;
  font-weight: 600;
  border-radius: 2px;
  transition: .3s ease;
}

.soluctioncard1-btn:hover { background:#e1e1e1; color:#1f1f1f; }

/* IMAGE */
.soluctioncard1-image { position: relative; width: 100%; }
.soluctioncard1-imgbg {
  position: absolute;
  inset: -14px;
  border-radius:20px;
  z-index:1;
}
.soluctioncard1-image img {
  width:100%;
  border-radius:10px;
  position:relative;
  z-index:2;
}

/* MOBILE FIX */
@media(max-width:768px){

  .soluctioncard1-title { font-size:26px; margin-bottom:22px; }

  .soluctioncard1-tabs {
    max-width:100%;
    width:100%;
    padding:0 5px;
    gap:0;
  }

  .soluctioncard1-tab {
    font-size:13px;
    padding:12px 0;
    flex:1;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .soluctioncard1-underline { max-width:100%; }
  .soluctioncard1-underline::after { width:33.33%; }

  .soluctioncard1-card {
    grid-template-columns:1fr;
    text-align:center;
    padding:25px 5px;
    gap:18px;
  }

  .soluctioncard1-content h3 { font-size:22px; }
  .soluctioncard1-content p { font-size:14px; }
  .soluctioncard1-btn { font-size:14px; padding:10px 24px; }
}

/* HOME PAGE SOLUCTION B2B B2C SECTION END */




/* ===============================
  SERVICES START 
   =============================== */

.ishaqcoreservice-section {
  padding: 10px 20px;
  background: #ffffff;
  font-family: "Inter", Arial, sans-serif;
}

.ishaqcoreservice-container {
  max-width: 1600px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.ishaqcoreservice-card {
  position: relative;
  height: 420px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
}

/* Image */
.ishaqcoreservice-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Main overlay */
.ishaqcoreservice-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 34, 87, 0.65),
    rgba(7, 34, 87, 0.28),
    rgba(7, 34, 87, 0.08),
    transparent
  );
  transition: all 0.4s ease;
  z-index: 1;
}

/* Content */
.ishaqcoreservice-content {
  position: absolute;
  bottom: 36px;
  left: 32px;
  right: 32px;
  color: #ffffff;
  z-index: 2;
}

/* Bottom blue shadow (reference style) */
.ishaqcoreservice-content::before {
  content: "";
  position: absolute;
  left: -32px;
  right: -32px;
  bottom: -36px;
  height: 170px;
  background: linear-gradient(
    to top,
    rgba(7, 34, 87, 0.6),
    rgba(7, 34, 87, 0.3),
    rgba(7, 34, 87, 0.08),
    transparent
  );
  z-index: -1;
}

/* Headings */
.ishaqcoreservice-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

/* Description */
.ishaqcoreservice-content p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 90%;
}

/* CTA */
.ishaqcoreservice-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Hover Effects */
.ishaqcoreservice-card:hover img {
  transform: scale(1.08);
}

.ishaqcoreservice-card:hover .ishaqcoreservice-overlay {
  background: linear-gradient(
    to top,
    rgba(7, 34, 87, 0.8),
    rgba(7, 34, 87, 0.4),
    rgba(7, 34, 87, 0.1),
    transparent
  );
}

.ishaqcoreservice-card:hover .ishaqcoreservice-content::before {
  height: 200px;
  background: linear-gradient(
    to top,
    rgba(7, 34, 87, 0.75),
    rgba(7, 34, 87, 0.4),
    rgba(7, 34, 87, 0.12),
    transparent
  );
}

/* Responsive */
@media (max-width: 1100px) {
  .ishaqcoreservice-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ishaqcoreservice-container {
    grid-template-columns: 1fr;
  }

  .ishaqcoreservice-card {
    height: 360px;
  }

  .ishaqcoreservice-content {
    bottom: 28px;
    left: 24px;
    right: 24px;
  }
}

/* SERVICES END */




/* counter Start  */
/* ==============================
   GLOBAL SCALE SECTION
============================== */

.global-scale-section {
  padding: 80px 20px;
  background: #f0f9ff;
}

.global-scale-container {
  max-width: 1600px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ==============================
   LEFT CONTENT
============================== */

.global-scale-content h2 {
  font-size: 42px;
  font-weight: 600;
  color: #072257;
  margin-bottom: 40px;
}

/* COUNTER GRID */
.global-scale-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 50px;
}

/* ==============================
   COUNTER BOX (REDESIGN)
============================== */

.stat-box {
  position: relative;
  padding: 6px 0 18px;
}

/* NUMBER */
.stat-box h3 {
  font-size: 34px;
  font-weight: 700;
  color: #d3af37;
  margin-bottom: 6px;
}

/* LABEL */
.stat-box p {
  font-size: 16px;
  color: #5a5a5a;
  margin: 0;
}

/* BOTTOM UNDERLINE */
.stat-box::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 3px;
  background: #d3af37 ;
  border-radius: 2px;
  transition: width 0.4s ease;
}

/* VARIATION EFFECT */
.stat-box:nth-child(even)::after {
  width: 74px;
}

/* HOVER EFFECT (DESKTOP) */
@media (min-width: 992px) {
  .stat-box:hover::after {
    width: 100%;
  }
}

/* ==============================
   RIGHT IMAGE
============================== */

.global-scale-image {
  text-align: center;
}

.global-scale-image img {
  width: 100%;
  max-width: 620px;
  height: auto;
  display: inline-block;
}

/* ==============================
   MOBILE RESPONSIVE
============================== */

@media (max-width: 991px) {
  .global-scale-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .global-scale-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .global-scale-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .stat-box {
    padding-bottom: 16px;
  }

  .stat-box::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
/* counter End  */






/* footer  */

.plinfo-footer {
    background: #fff;
    padding: 60px 20px 20px;
    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: #072257;
  }
  .plinfo-footer-social a {
    display: inline-block;
    margin-right: 12px;
    font-size: 20px;
    color: #000;
  }
  .plinfo-footer-social a:hover {
    color: #072257;
  }
  .plinfo-footer-logo {
    max-width: 300px;
  }
  .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: #072257;
    text-decoration: none;
  }
  .plinfo-footer-bottom a:hover {
    text-decoration: underline;
  }

  /* footer  */









/* ✅ ANUT US  */


  .plinfoabout-section {
    padding: 0;
    background: #fff;
  }

  .plinfoabout-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1600px;
    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: #072257;
    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: #072257;
    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  */






  
/* ==============================
   BREADCRUMB / BANNER
============================== */

.uvsbadcrun1-banner {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;

  /* header + top bar ke niche sahi spacing */
  margin-top: 80px;
}

/* Background image */
.uvsbadcrun1-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay */
.uvsbadcrun1-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  background: rgba(0, 0, 0, 0.35); /* text readable */
}

/* Title */
.uvsbadcrun1-title {
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

/* ==============================
   TABLET
============================== */
@media (max-width: 991px) {
  .uvsbadcrun1-banner {
    height: 220px;
    margin-top: 120px;
  }

  .uvsbadcrun1-title {
    font-size: 34px;
  }
}

/* ==============================
   MOBILE
============================== */
@media (max-width: 768px) {
  .uvsbadcrun1-banner {
    height: 180px;
    margin-top: 110px;
  }

  .uvsbadcrun1-title {
    font-size: 26px;
  }
}






/* 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 SECTION – CLEAN UI
============================== */

.plinfojourney-section {
  padding: 80px 20px;
  background: transparent;
}

/* FIXED WIDTH CONTAINER */
.plinfojourney-section > * {
  max-width: 1620px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Heading */
.plinfojourney-heading h2 {
  font-size: 36px;
  font-weight: 600;
  color: #072257;
  margin-bottom: 12px;
}

.plinfojourney-heading p {
  max-width: 820px;
  margin: 0 auto 55px;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* Cards Grid */
.plinfojourney-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

/* ==============================
   CARD
============================== */

.plinfojourney-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.plinfojourney-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

/* ==============================
   ICON
============================== */

.plinfojourney-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border-radius: 14px;
  background: #d3af37 ;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plinfojourney-icon svg {
  width: 34px;
  height: 34px;
  fill: #ffffff;
}

/* ==============================
   TEXT
============================== */

.plinfojourney-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 12px;
}

.plinfojourney-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* ==============================
   MOBILE
============================== */

@media (max-width: 768px) {
  .plinfojourney-heading h2 {
    font-size: 30px;
  }

  .plinfojourney-card {
    padding: 30px 22px;
  }
}


/* Journey */



/* ISHAQ CUSTOM BUTTON – CENTER FIXED */

.ishaq-btn {
  margin-top: -30px;
  margin-bottom: 50px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 40px;
  background-color: #072257;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
 border-radius: 0px 0px 0px 20px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;

  /* 🔥 CENTER FORCE FIX */
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/* Icon */
.ishaq-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* Hover */
.ishaq-btn:hover {
  background-color: #345c31;
}

.ishaq-btn:hover i {
  transform: translateX(6px);
}





/* ==============================
   FOOTER CTA BANNER
============================== */

.plinfofooterbanner-section {
  position: relative;
  width: 100%;
  min-height: 450px;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Overlay for readability */
.plinfofooterbanner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Content */
.plinfofooterbanner-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 1620px;
  margin: auto;
}

/* Heading */
.plinfofooterbanner-title {
  font-size: 34px;
  color: #ffffff;
  font-weight: 700;
  margin: 0 auto 26px;
  line-height: 1.35;
  max-width: 980px;   /* 👈 correct responsive width */
}

/* Button */
.plinfofooterbanner-btn {
  background-color: #fcfcfc;
  color: #072257;
  padding: 14px 34px;
  border-radius: 0 20px 0 20px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.plinfofooterbanner-btn:hover {
  background-color: #e2e2e2f3;
  color: #072257;
}

/* ==============================
   TABLET
============================== */
@media (max-width: 991px) {
  .plinfofooterbanner-title {
    font-size: 28px;
    max-width: 720px;
  }
}

/* ==============================
   MOBILE
============================== */
@media (max-width: 768px) {
  .plinfofooterbanner-section {
    padding: 60px 20px;
    min-height: auto;
  }

  .plinfofooterbanner-title {
    font-size: 22px;
    line-height: 1.45;
    max-width: 100%;
    margin-bottom: 22px;
  }

  .plinfofooterbanner-btn {
    font-size: 15px;
    padding: 12px 26px;
  }
}






/* ===============================
   CORPORATE SERVICES SECTION
================================ */

.corp-services-section {
  padding: 60px 20px;
  background: #ffffff;
}

.corp-services-container {
  max-width: 1600px;
  margin: 0 auto;
}

/* Heading */
.corp-services-heading {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 70px;
}

.corp-services-subtitle {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #072257;
  margin-bottom: 10px;
}

.corp-services-heading h2 {
  font-size: 40px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

.corp-services-heading p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}

/* Grid */
.corp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Card */
.corp-service-card {
  background: #ffffff;
  padding: 44px 32px;
  border-radius: 18px;
  text-align: center;
  border: 1px solid #d3af37 ;
  transition: all 0.35s ease;
}

.corp-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border-color: #072257;
}

/* Icon */
.corp-service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: rgba(63, 107, 58, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.corp-service-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: #d3af37 ;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Title */
.corp-service-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 10px;
}

/* Text */
.corp-service-card p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
}

/* Tablet */
@media (max-width: 1024px) {
  .corp-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .corp-services-grid {
    grid-template-columns: 1fr;
  }

  .corp-services-heading h2 {
    font-size: 30px;
  }
}




/* ===============================
   VISION & MISSION SECTION
================================ */

.im-vision-mission {
  width: 100%;
  background: #ffffff;
  padding: 80px 20px;
}

.im-container {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}

/* Card */
.im-card {
  background: #ffffff;
  padding: 20px 40px;
}

/* SVG Icon */
.im-icon {
  width: 64px;
  height: 64px;
  color: #d3af37;
  margin-bottom: 30px;
}

.im-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.6;
}

/* Heading */
.im-card h2 {
  font-size: 38px;
  font-weight: 600;
  color: #072257;
  margin-bottom: 25px;
}

.im-card h2::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #d3af37;
  display: block;
  margin-top: 12px;
}

/* Text */
.im-card p {
  font-size: 18px;
  line-height: 1.9;
  color: #072257;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 1024px) {
  .im-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .im-card h2 {
    font-size: 32px;
  }
}
