

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Poppins, sans-serif;
    background: #ffffff;
}






/* ==== HEADER START==== */



body.no-scroll {
  overflow: hidden;
}

/* Header wrapper */
.plinfo-header-wrapper {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #ffffff;
}

/* Header inner */
.plinfo-header {
  max-width: 1520px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.plinfo-left {
  display: flex;
  align-items: center;
  gap: 50px;
}

.plinfo-logo img {
  height: 40px;
}

/* Desktop Nav */
.plinfo-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.plinfo-nav > div {
  position: relative;
}

.plinfo-nav a {
  text-decoration: none;
  color: #3a3838;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
}

.plinfo-nav a i {
  margin-left: 5px;
}

.plinfo-nav a:hover {
  color: #ff540b  ;
}

/* Dropdown Menu */
.plinfo-dropdown {
  display: none;
  position: absolute;
  top: 30px;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  min-width: 220px;
  z-index: 999;
}

.plinfo-dropdown::before {
  content: '';
  display: block;
  height: 4px;
  background-color: #ff540b  ;
  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;
}

/* CTA Button */
.plinfo-contact-btn {
  background-color: #ff540b;
  color: #fff;
  padding: 10px 30px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.5s ease;
}

.plinfo-contact-btn:hover {
  background-color: #1F2937;
}

/* Toggle Menu Icon */
.plinfo-menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: #1F2937;
}

.plinfo-menu-toggle i,
.plinfo-close-toggle i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.plinfo-menu-toggle:hover i,
.plinfo-close-toggle:hover i {
  transform: scale(1.1) rotate(5deg);
  color: #ff540b  ;
}

/* Mobile Menu */
.plinfo-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 280px;
  background: #f9f9f9;
  color: #1f1f1f;
  box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
  padding: 80px 20px 20px;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.plinfo-mobile-menu.active {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: auto;
}

.plinfo-mobile-menu::-webkit-scrollbar {
  width: 6px;
}
.plinfo-mobile-menu::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}

.plinfo-mobile-menu .plinfo-logo {
  text-align: center;
  margin-bottom: 10px;
}

.plinfo-mobile-menu hr {
  border: 0.5px solid #bbb;
  margin: 3px 0;
}

.plinfo-mobile-menu a,
.plinfo-mobile-menu button {
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #131313;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 2px 0;
  transition: color 0.3s ease;
}

.plinfo-mobile-menu a:hover,
.plinfo-mobile-menu button:hover {
  color: #ff540b  ;
}

.plinfo-mobile-menu .mobile-dropdown {
  display: none;
  flex-direction: column;
  font-size: 14px;
  font-weight: 500;
  padding-left: 15px;
  gap: 5px;
  animation: fadeInDown 0.5s ease-in-out;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.plinfo-mobile-menu .plinfo-email {
  font-size: 14px;
  color: #131313;
  display: flex;
  align-items: center;
  gap: 5px;
}

.plinfo-mobile-menu .plinfo-email i {
  color: #ff540b  ;
}

.plinfo-mobile-menu .social-icons {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  margin-top: 10px;
}

.plinfo-mobile-menu .social-icons a {
  color: #141414;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.plinfo-mobile-menu .social-icons a:hover {
  color: #ff540b  ;
}

.plinfo-mobile-menu .plinfo-contact-btn {
  background: transparent;
  border: 1px solid #ff540b  ;
  color: #0f0f0f;
  text-align: center;
  padding: 10px 20px;
  border-radius: 5px;
  margin-top: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.plinfo-mobile-menu .plinfo-contact-btn:hover {
  background-color: #ff540b  ;
  color: #fff;
}

.plinfo-close-toggle {
  display: block;
  font-size: 20px;
  cursor: pointer;
  color: #fff;
  background-color: #ff540b  ;
  border-radius: 5px;
  padding: 4px 8px;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2100;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
}

.plinfo-close-toggle:hover {
  background-color: #fdfdfd;
  color: #ff540b  ;
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .plinfo-nav {
    display: none;
  }
  .plinfo-menu-toggle {
    display: block;
  }
  .plinfo-left {
    gap: 15px;
  }
  .plinfo-header {
    justify-content: space-between;
  }
  .plinfo-contact-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
  .plinfo-close-toggle {
    display: block;
  }
}


/* ==== HEADER END ==== */




 /* Website Slider Start  */

 @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

 .webzardslider {
     background: linear-gradient(90deg, #ff540b  , #7a00ff, #ff4dc4);
     color: #ffffff;
     padding: 0;
     font-family: Poppins, sans-serif;
     min-height: 100vh;
     display: flex;
     align-items: center;
     margin-top: 20px;
 }

 .webzardslider-container {
     max-width: 1300px;
     margin: auto;
     padding: 40px 20px;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 40px;
     width: 100%;
 }

 .webzardslider-content {
     text-align: center;
     max-width: 950px;
 }

 .webzardslider-content h1 {
     font-size: 48px;
     font-weight: 700;
     line-height: 1.3;
     transition: opacity 0.5s ease;
 }

 .webzardslider-content p {
     font-size: 20px;
     margin: 25px 0;
     color: #c9c9c9;
     line-height: 1.6;
 }

 .webzardslider-buttons {
     display: flex;
     flex-wrap: nowrap;
     justify-content: center;
     gap: 15px;
     margin: 20px 0;
 }

 .webzardslider-buttons a {
     position: relative;
     overflow: hidden;
     display: inline-block;
     padding: 12px 24px;
     font-size: 16px;
     font-weight: 600;
     border-radius: 5px;
     text-decoration: none;
     z-index: 1;
     transition: color 0.6s ease;
     white-space: nowrap;
 }

 .webzardslider-buttons a::before {
     content: "";
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     z-index: 0;
     transition: left 0.6s ease;
 }

 .webzardslider-buttons a:hover::before {
     left: 0;
 }

 .webzardslider-buttons a span {
     position: relative;
     z-index: 1;
 }

 .btn-blue {
     background: #ffffff;
     color: #ff540b  ;
 }

 .btn-blue::before {
     background: #ff540b  ;
 }

 .btn-blue:hover {
     color: #fff;
     border: 2px solid #ffffff;
 }

 .btn-outline {
     background: transparent;
     border: 2px solid #ffffff;
     color: #ffffff;
 }

 .btn-outline::before {
     background: #fff;
 }

 .btn-outline:hover {
     color: #ff540b  ;
 }

 .webzardslider-badge {
     background: #ff540b  ;
     color: #fff;
     padding: 10px 20px;
     border-radius: 5px;
     font-size: 15px;
     display: inline-block;
     margin-top: 15px;
 }

 .webzardslider-steps {
     background: #ffffff;
     color: #1F2937;
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     padding: 40px 30px;
     border-radius: 10px;
     box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
     max-width: 1100px;
     width: 100%;
     gap: 10px;
 }

 .webzardslider-steps .step {
     flex: 1 1 22%;
     min-width: 220px;
 }

 .webzardslider-steps h4 {
     font-weight: 700;
     margin-bottom: 8px;
     font-size: 18px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .webzardslider-steps p {
     font-size: 15px;
     color: #444;
     line-height: 1.5;
 }

 .divider {
     width: 1px;
     background: #ddd;
     height: auto;
 }

 @media (max-width: 768px) {
     .webzardslider-content h1 {
         font-size: 32px;
     }

     .webzardslider-content p {
         font-size: 16px;
     }

     /* Mobile buttons inline */
     .webzardslider-buttons {
         flex-direction: row;
         flex-wrap: nowrap;
         gap: 10px;
     }

     .webzardslider-buttons a {
         flex: 1;
         padding: 10px 12px;
         font-size: 15px;
     }

     .webzardslider-steps {
         flex-direction: column;
         gap: 20px;
     }

     .divider {
         display: none;
     }
 }

 /*Slider End */






 /*features Start */

 @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

 .webzard-features {
     max-width: 1500px;
     margin: auto;
     padding: 30px 0px;
     font-family: Poppins, sans-serif;
     color: #1F2937;
 }

 .feature-header {
     text-align: center;
     margin-bottom: 40px;
 }

 .feature-header h2 {
     font-size: 30px;
     font-weight: 600;
     color: #1F2937  ;
     margin-bottom: 10px;
 }

 .feature-header p {
     color: #555;
     font-size: 15px;
     margin-bottom: 15px;
 }

 .feature-header .browse-link {
     display: inline-block;
     font-weight: 600;
     color: #ff540b  ;
     text-decoration: none;
     font-size: 15px;
 }

 .feature-header .browse-link i {
     margin-left: 6px;
 }

 .feature-grid {
     display: flex;
     flex-wrap: wrap;
     gap: 20px;
     justify-content: space-between;
 }

 .feature-card {
     background: #fff;
     border: 1px solid #e0e0e0;
      border-radius: 10px;
     flex: 1 1 calc(33.333% - 20px);
     padding: 20px;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02);
     cursor: pointer;
     transition: transform 0.4s ease, box-shadow 0.4s ease;
 }

 .feature-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 14px 28px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
 }

 .feature-title {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .feature-title h3 {
     font-size: 18px;
     margin: 0;
     font-weight: 600;
     color: #1F2937  ;
 }

 .feature-icon {
     width: 40px;
     height: 40px;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 18px;
 }

 .feature-desc {
     font-size: 14px;
     color: #444;
     margin-top: 10px;
     display: block;
 }

 @media (max-width: 768px) {
     .feature-card {
         flex: 1 1 100%;
     }

     .feature-desc {
         display: none;
     }

     .feature-card.active .feature-desc {
         display: block;
     }
 }



 /*features End */





/* Category Services Start */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

.webzardservices1 {
    max-width: 1500px;
    margin: auto;
    padding: 35px 20px;
    text-align: center;
    font-family: Poppins, sans-serif;
}

.webzardservices1-heading h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1F2937  ;
    margin-bottom: 10px;
    line-height: 37px;
}

.webzardservices1-heading p {
    color: #555;
    margin-bottom: 20px;
}

.webzardservices1-browse-link {
    display: inline-block;
    color: #ff540b  ;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 40px;
}

.webzardservices1-browse-link i {
    margin-left: 5px;
}

.webzardservices1-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.webzardservices1-card {
    background: #fff;
    border: 1px solid #dde3ea;
    flex: 1 1 calc(33.333% - 20px);
    padding: 20px;
    text-align: left;
    transition: box-shadow 0.3s ease;
    border-radius: 10px;
}

.webzardservices1-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.webzardservices1-card-header {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    color: #1F2937  ;
    gap: 12px;
}

.webzardservices1-card-header i {
    background: #e5edff;
    color: #ff540b  ;
    padding: 10px;
    font-size: 18px;
    border-radius: 8px;
}

.webzardservices1-divider {
    border-top: 1px solid #ccc;
    margin: 15px 0;
}

.webzardservices1-body {
    list-style: none;
    padding-left: 0;
    margin: 0;
    overflow: hidden;
    max-height: 1000px;
    transition: max-height 0.4s ease-in-out;
}

.webzardservices1-body li {
    margin-bottom: 8px;
    color: #0c0c0c;
    font-size: 15px;
    padding-left: 10px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.webzardservices1-body li a {
    text-decoration: none;
    color: #0c0c0c;
    font-size: 15px;
}

.webzardservices1-body li a:hover {
    color: #ff540b  ;
    text-decoration: underline;
}


.webzardservices1-body li span {
    margin-right: 6px;
    color: #ff540b  ;
    font-size: 20px;
}

/* Hide dropdown icon by default */
.dropdown-icon {
    display: none;
    margin-left: auto;
    font-size: 14px;
    color: #ff540b  ;
    transition: transform 0.3s ease;
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    .dropdown-icon {
        display: inline-block;
    }

    .webzardservices1-card.active .dropdown-icon {
        transform: rotate(180deg);
    }

    .webzardservices1-grid {
        flex-direction: column;
    }

    .webzardservices1-heading h2 {
        font-size: 30px;
        font-weight: 600;
        color: #1F2937  ;
        margin-bottom: 10px;
        line-height: 37px;
        text-align: center;
    }

    .webzardservices1-heading p {
        color: #555;
        margin-bottom: 20px;
        text-align: center;
    }

    .webzardservices1-browse-link {
        display: inline-block;
        color: #ff540b  ;
        font-weight: 600;
        text-decoration: none;
        margin-bottom: 40px;
        text-align: center;
    }

 

    .webzardservices1-body {
        max-height: 0;
        padding: 0;
    }

    .webzardservices1-card.active .webzardservices1-body {
        max-height: 1000px;
        padding-top: 10px;
    }
}

@media (max-width: 768px) {
  .webzardservices1-heading {
    text-align: center;
    margin-left: 10px;
  }
}
/* Category Services End */




/* Pricing Section */
.webzardprice1-section {
  font-family: Poppins, sans-serif;
  padding: 35px 0;
  background: #f9f9f9;
  text-align: center;
}

.webzardprice1-wrapper {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 30px;
}

.webzardprice1-header h2 {
  font-size: 30px;
  color: #1F2937  ;
  margin-bottom: 8px;
}

.webzardprice1-header p {
  color: #555;
  margin-bottom: 40px;
}

.webzardprice1-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.webzardprice1-card {
  background: #fff;
  border: 2px solid #1F2937  ;
  border-radius: 10px;
  flex: 1 1 calc(33.333% - 20px); /* 3 cards per row with spacing */
  min-width: 300px;
  max-width: 460px;
  padding: 30px 20px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  text-align: left;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.webzardprice1-card:hover {
  transform: scale(1.07);
}

.webzardprice1-card h3 {
  font-size: 22px;
  color: #1F2937  ;
  margin-bottom: 10px;
}

.webzardprice1-price {
  font-size: 32px;
  font-weight: 700;
  color: #ff540b  ;
  margin-bottom: 10px;
}

.webzardprice1-price span {
  font-size: 16px;
  font-weight: 400;
  color: #666;
}

.webzardprice1-desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.webzardprice1-btn {
  display: inline-block;
  width: 100%;
  background: transparent;
  border: 2px solid #1F2937  ;
  color: #1F2937  ;
  padding: 10px;
  font-weight: 600;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  margin-bottom: 25px;
}

.webzardprice1-btn:hover,
.webzardprice1-btn.active {
  background: #1F2937  ;
  color: #fff;
}

.webzardprice1-features {
  list-style: none;
  padding: 0;
  color: #444;
  font-size: 14px;
  line-height: 1.8;
}

.webzardprice1-features li {
  padding-left: 20px;
  position: relative;
}

.webzardprice1-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff540b  ;
  font-weight: bold;
}

.webzardprice1-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: #ff540b  ;
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 500;
}

/* ✅ Mobile Responsive */
@media (max-width: 991px) {
  .webzardprice1-cards {
    flex-direction: column;
    align-items: center;
  }

  .webzardprice1-card {
    max-width: 100%;
    flex: 1 1 100%;
  }
}








 /* Footer Start */
 @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

 .webzardfooter1 {
     background: #fff;
     border-top: 1px solid #ddd;
     padding: 50px 20px 30px;
     font-family: Poppins, sans-serif;
     color: #1F2937  ;
 }

 .webzardfooter1-container {
     display: flex;
     flex-wrap: wrap;
     gap: 40px;
     justify-content: space-between;
     max-width: 1300px;
     margin: auto;
 }

 .webzardfooter1-column {
     flex: 1 1 200px;
 }

 .webzardfooter1-column.brand {
     flex: 1 1 280px;
 }

 .webzardfooter1-column h4 {
     font-size: 16px;
     font-weight: 700;
     margin-bottom: 15px;
 }

 .webzardfooter1-column a {
     display: block;
     color: #1F2937  ;
     text-decoration: none;
     margin-bottom: 8px;
     font-size: 14px;
 }

 .webzardfooter1-column a:hover {
     text-decoration: underline;
 }

 .webzardfooter1-column address {
     font-style: normal;
     margin: 15px 0;
     font-size: 14px;
     color: #333;
     line-height: 1.6;
 }

 .webzardfooter1-social {
     display: flex;
     gap: 10px;
     margin: 10px 0;
 }

 .webzardfooter1-social a {
     color: #ff540b  ;
     font-size: 16px;
     background: #eaf0ff;
     padding: 8px;
     border-radius: 6px;
 }

 .webzardfooter1-policy a {
     font-size: 13px;
     margin-right: 10px;
     color: #666;
 }

 .webzardfooter1-bottom {
     text-align: center;
     font-size: 13px;
     padding-top: 30px;
     color: #666;
     border-top: 1px solid #eee;
     margin-top: 30px;
 }

 .webzardfooter1-pro {
     font-size: 10px;
     background: #f15b2a;
     color: #fff;
     padding: 2px 6px;
     border-radius: 5px;
     margin-left: 4px;
     font-weight: 600;
     vertical-align: middle;
 }

 @media (max-width: 768px) {
     .webzardfooter1-container {
         flex-direction: column;
         gap: 30px;
     }

     .webzardfooter1-column {
         flex: 1 1 100%;
     }
 }

 /* Footer End */






/* Services Blog and Demo Page Start */


.plinfoservices-section {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.plinfoservices-header {
    max-width: 1600px;
    margin: 0 auto 10px;
}

.plinfoservices-header h1 {
    font-size: 34px;
    font-weight: 700;
    color: #1a1311;
}

.plinfoservices-header p {
    font-size: 16px;
    color: #555;
    margin-top: 10px;

}

.plinfoservices-container {
    max-width: 1500px;
    margin: 0 auto;
}

.plinfoservices-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.plinfoservices-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
    width: calc(33.33% - 20px);
    max-width: 520px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: left;
    text-align: left;
}

.plinfoservices-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.plinfoservices-card h3 a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s;
}

.plinfoservices-card h3 a:hover {
    color: #ff540b  ; /* ya koi bhi hover color */
    text-decoration: underline; /* optional */
}

.plinfoservices-card p {
    font-size: 14.5px;
    color: #666;
    margin-bottom: 20px;
    margin-top: 10px;
}

.plinfoservices-btn-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.plinfoservices-btn {
    background: #d6f4ff; 
    color: #ff540b  ;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    flex: 1 1 45%;
    max-width: 100%;
    transition: 0.3s ease;
}

.plinfoservices-btn .circle {
    background-color: #1F2937  ;
    color: #fff;
    border-radius: 5px;
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    font-size: 16px;
}

.plinfoservices-btn:hover {
    background: #bedce6;
}


/* Transparent Inquiry Button Style */
.plinfoservices-btn.inquiry-btn {
  background: transparent;
  border: 1px solid #1d1d1d;
  color: #1b1b1b;
  transition: 0.3s ease;
}

/* Hover Effect */
.plinfoservices-btn.inquiry-btn:hover {
  background: #1F2937  ;
  color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
    .plinfoservices-card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .plinfoservices-section {
        padding: 40px 10px;
    }

    .plinfoservices-header h1 {
        font-size: 28px;
        font-weight: 700;
        color: #1a1311;
        margin-left: 15px;
        text-align: left;
    }

    .plinfoservices-header p {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
    margin-left: 15px;
    text-align: left;
    
    }

    .plinfoservices-card {
        width: 100%;
        max-width: 100%;
        padding: 15px;
    }

    .plinfoservices-btn-group {
        flex-wrap: nowrap;
        gap: 10px;
    }

    .plinfoservices-btn {
        flex: 1;
        font-size: 15px;
        padding: 10px 5px;
    }
}


/* Services Blog and Demo Page End */










/* Services Details and blog Start */


    .uvsproduct1-container {
        max-width: 1500px;
        margin: 40px auto;
        padding: 10px;
        background-color: transparent;
    }

    .uvsproduct1-flex {
        display: flex;
        gap: 40px;
        flex-wrap: wrap;
        align-items: center;
    }

    .uvsproduct1-left {
        flex: 1;
        min-width: 300px;
        overflow: hidden;
        border-radius: 10px;
    }

    .uvsproduct1-left img {
        width: 100%;
        border-radius: 0px;
        transition: transform 0.4s ease;
    }

    .uvsproduct1-left:hover img {
        transform: scale(1.08);
    }

    .uvsproduct1-right {
        flex: 1;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 10px;
    }

    .uvsproduct1-title {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #222;
    }

    .uvsproduct1-shortdesc {
        font-size: 18px;
        color: #555;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .uvsproduct1-buttons {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .uvsproduct1-btn {
        flex: 1 1 200px;
        padding: 14px 30px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        border-radius: 10px;
        position: relative;
        overflow: hidden;
        display: inline-block;
        text-align: center;
        text-decoration: none;
        z-index: 1;
        transition: color 0.4s ease, border-color 0.4s ease;
    }

    .uvsproduct1-btn::before {
        content: '';
        position: absolute;
        top: 0;
        height: 100%;
        width: 0;
        z-index: -1;
        transition: width 0.4s ease;
    }

    .uvsproduct1-btn:active {
        transform: scale(0.95);
    }

    /* Inquiry Now button */
    .uvsproduct1-btn-black {
        background: linear-gradient(#ff540b  , #ff540b  );
        color: #fff;
        border: 2px solid transparent;
    }

    .uvsproduct1-btn-black::before {
        left: 0;
        background-color: #fff;
    }

    .uvsproduct1-btn-black:hover::before {
        width: 100%;
    }

    .uvsproduct1-btn-black:hover {
        color: #ff540b  ;
        border-color: #ff540b  ;
    }

    /* Get in Touch button - black running right to left effect */
    .uvsproduct1-btn-outline {
        background-color: transparent;
        color: #ff540b  ;
        border: 2px solid #ff540b  ;
    }

    .uvsproduct1-btn-outline::before {
        right: 0;
        background-color: #ff540b  ;
    }

    .uvsproduct1-btn-outline:hover::before {
        width: 100%;
        left: 0;
        right: auto;
    }

    .uvsproduct1-btn-outline:hover {
        color: #fff;
        border-color: #ff540b  ;
    }

    .uvsproduct1-description-section {
        margin-top: 60px;
    }

    .uvsproduct1-description-label {
        font-size: 24px;
        font-weight: 600;
        color: #333;
        border-bottom: 2px solid #ff540b  ;
        display: inline-block;
        padding-bottom: 6px;
        margin-bottom: 20px;
    }

    .uvsproduct1-description-text {
        font-size: 18px;
        color: #444;
        line-height: 1.8;
    }

    @media (max-width: 768px) {
        .uvsproduct1-flex {
            flex-direction: column;
            gap: 20px;
        }

        .uvsproduct1-title {
            font-size: 24px;
        }

        .uvsproduct1-shortdesc {
            font-size: 14px;
        }

        .uvsproduct1-description-label {
            font-size: 18px;
        }

        .uvsproduct1-description-text {
            font-size: 14px;
        }

        .uvsproduct1-buttons {
            flex-direction: row;
            /* Keep inline even on mobile */
            flex-wrap: wrap;
            gap: 10px;
        }

        .uvsproduct1-btn {
            flex: 1 1 calc(50% - 10px);
            /* Two buttons in one row */
            font-size: 13px;
            padding: 10px 12px;
            border-radius: 10px;
            line-height: 1.2;
        }
    }

/* Services Details and blog  End */








/* Contact us form start */

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Poppins, sans-serif;
    }


    .webzardcontact3-wrapper {
      max-width: 1400px;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      background: #fff;
      border-radius: 12px;
      padding: 40px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
      margin-top: 100px;
      margin-bottom: 100px;
    }

    .webzardcontact3-form-box {
      flex: 1 1 60%;
    }

    .webzardcontact3-form-box h2 {
      color: #000;
      margin-bottom: 10px;
    }

    .webzardcontact3-form-box p {
      color: #555;
      margin-bottom: 30px;
    }

    .webzardcontact3-form-row {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .webzardcontact3-input {
      flex: 1 1 calc(50% - 10px);
      display: flex;
      flex-direction: column;
    }

    .webzardcontact3-input label {
      font-weight: 500;
      margin-bottom: 6px;
    }

    .webzardcontact3-input input,
    .webzardcontact3-input select,
    .webzardcontact3-input textarea {
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 8px;
      outline: none;
    }

    .webzardcontact3-input textarea {
      resize: none;
    }

    .webzardcontact3-input-full {
      flex: 1 1 100%;
    }

    .webzardcontact3-submit-btn {
      margin-top: 20px;
      background-color: #ff540b  ;
      color: white;
      border: none;
      padding: 14px;
      width: 100%;
      border-radius: 8px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .webzardcontact3-submit-btn:hover {
      background-color:rgb(0, 0, 0);
    }

    .webzardcontact3-info-box {
      flex: 1 1 35%;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .webzardcontact3-info-card {
      background-color: #f1f5f9;
      border-radius: 12px;
      padding: 20px;
      display: flex;
      gap: 15px;
      align-items: flex-start;
      transition: background-color 0.3s ease, color 0.3s ease;
      color: #000;
    }

    .webzardcontact3-info-card i {
      font-size: 20px;
      margin-top: 5px;
    }

    .webzardcontact3-info-card div {
      line-height: 1.4;
    }

    .webzardcontact3-info-card:hover {
      background-color: #ff540b  ;
      color: white;
    }

    .webzardcontact3-info-card:hover i {
      color: white;
    }

    .webzardcontact3-info-card.highlight {
      background-color: #ff540b  ;
      color: white;
    }

    .webzardcontact3-info-card.highlight i {
      color: white;
    }

    .webzardcontact3-social-icons {
      margin-top: 10px;
      display: flex;
      gap: 15px;
    }

    .webzardcontact3-social-icons a {
      font-size: 20px;
      color: #ff540b  ;
    }

    @media (max-width: 768px) {
      .webzardcontact3-wrapper {
        flex-direction: column;
        padding: 20px;
      }

      .webzardcontact3-input {
        flex: 1 1 100%;
      }
    }

/* Contact us form End */





/* About Us Section */
.webzardabout-section {
  padding: 0;
  background: transparent;
}

.webzardabout-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1600px;
  margin: 10px auto 0;
  align-items: flex-start;
  gap: 0;
}

.webzardabout-image {
  flex: 1 1 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
  overflow: hidden;
}

.webzardabout-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 30px;
  transition: transform 0.5s ease;
  padding: 20px;
}

.webzardabout-image:hover img {
  transform: scale(1.05);
}

.webzardabout-content {
  flex: 1 1 100%;
  padding: 20px;
  margin: 0;
}

.webzardabout-label {
  color: #ff540b  ;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 10px;
}

.webzardabout-content h2 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #222;
}

.webzardabout-content p {
  font-size: 14px;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.6;
}

.webzardabout-social-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background-color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  transition: all 0.3s ease;
}

/* Icon brand colors */
.social-icon.instagram i {
  color: #e1306c;
}
.social-icon.facebook i {
  color: #1877f2;
}
.social-icon.linkedin i {
  color: #0a66c2;
}
.social-icon.whatsapp i {
  color: #25D366;
}

/* Optional: Hover zoom */
.social-icon:hover {
  transform: scale(1.1);
  background-color: #333;
}

.webzardabout-btn {
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  color: #fff !important;
  background-color: #ff540b  !important;
  text-decoration: none;
  border: none;
  display: inline-block;
}


.webzardabout-btn:hover {
  background-color: #000;
}

/* Responsive */
@media (min-width: 769px) {
  .webzardabout-container {
    flex-direction: row;
    gap: 40px;
    padding: 60px 20px;
  }

  .webzardabout-image,
  .webzardabout-content {
    flex: 1 1 500px;
  }

  .webzardabout-content h2 {
      font-size: 36px;
      line-height: 46px;
      margin-bottom: 15px;
      font-weight: 600;
      color: #222;
    }

  .webzardabout-content p {
    font-size: 18px;
  }
}








  

/* Team */
.plinfoteam-section {
  padding: 20px 5px;
  background-color: transparent;
  margin-top: 50px;
}

.plinfoteam-container {
  max-width: 1500px;
  margin: 0 auto;
}

.plinfoteam-header {
  text-align: center;
  margin-bottom: 60px;
}

.plinfoteam-header h2 {
  font-size: 34px;
  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: 230px;
  height: 230px;
  border-radius: 15px;
  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: #ff540b  ;
  transition: 0.3s ease;
}

.plinfoteam-social a:hover {
  color: #161616;
}

/* Mobile responsiveness: 2 columns for smaller screens */
@media (max-width: 768px) {
  .plinfoteam-grid {
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 20px; /* Adjust gap for mobile */
  }

  .plinfoteam-member img {
    width: 150px; /* Adjust image size for smaller screens */
    height: 150px;
  }
}

/* Team End */





/* counter Start  */
.plinfo-counter-section {
  padding: 60px 20px;
  background: #f9fafd;
  text-align: center;
  margin-top: 50px;
}
.plinfo-counter-container {
  max-width: 1600px;
  margin: auto;
}
.plinfo-counter-header h2 {
  font-size: 34px;
  color: #1a1311;
   margin-bottom: 50px;
}
.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: #ff540b  ;
  color: white;
  font-size: 28px;
  font-weight: bold;
  line-height: 120px;
  border-radius: 20px;
  margin: 0 auto 10px;
  position: relative;
}
.plinfo-count {
  font-size: 28px;
}
.plinfo-counter-item p {
  color: #111;
  font-size: 16px;
}

/* Mobile responsiveness: 2 columns for smaller screens */
@media (max-width: 768px) {
  .plinfo-counter-grid {
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 20px; /* Adjust gap for mobile */
  }
}

/* counter End  */






/* Popup  Contact Section Start */

/* Popup Overlay */
.plinfo-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: start;
  z-index: 9999;
}

/* Show Overlay */
.plinfo-popup-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease-in-out;
}

/* Popup Box */
.plinfo-popup {
  background: #fff;
  margin-top: 100px;
  width: 90%;
  max-width: 450px;
  padding: 30px;
  border-radius: 10px;
  position: relative;
  animation: slideDown 0.4s ease;
}

/* Animations */
@keyframes slideDown {
  from { transform: translateY(-40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Header */
.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.popup-header h2 {
  font-size: 20px;
  color: #333;
}

.close-btn {
  font-size: 22px;
  color: #333;
  cursor: pointer;
}

/* Form */
.popup-form input,
.popup-form select {
  width: 100%;
  padding: 10px 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
}

.popup-form button {
  width: 100%;
  padding: 12px;
  background-color: #ff540b  ;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}


/* Popup  Contact Section End */






/* Footer Banner  Start*/

.footerbannerwebzard-wrapper {
  background: linear-gradient(to right, #0f172a, #1e293b);
  color: white;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.footerbannerwebzard-container {
  max-width: 1000px;
  margin: auto;
  padding: 0 20px;
}

.footerbannerwebzard-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footerbannerwebzard-subtitle {
  font-size: 1.1rem;
  color: #d1d5db;
  margin-bottom: 40px;
  line-height: 1.6;
}

.footerbannerwebzard-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footerbannerwebzard-btn {
  padding: 10px 26px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s ease;
}

.footerbannerwebzard-btn.primary {
  background: white;
  color: #000;
}

.footerbannerwebzard-btn.primary:hover {
  background: #f3f3f3;
}

.footerbannerwebzard-btn.outline {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.footerbannerwebzard-btn.outline:hover {
  background: white;
  color: #000;
}

/* Footer Banner  End*/






/* webzardHome Web app admin  Start*/

.webzardstore1-section {
  padding: 0px 20px;
  background: transparent;
  font-family: Poppins, sans-serif;
  text-align: center;
}

.webzardstore1-container {
  max-width: 1500px;
  padding: 60px 0px;
  margin: auto;
}

.webzardstore1-title {
  font-size: 30px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
  max-width: 750px;     /* Title line length controlled */
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;      /* Better readability */
}

.webzardstore1-title span {
  color: #ff540b  ;
}

.webzardstore1-subtitle {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
}

.webzardstore1-grid {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.webzardstore1-card {
  flex: 1 1 30%;
  background: transparent;
  border: 1px solid #d1d1d1;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.webzardstore1-card:hover {
  transform: translateY(-5px);
}

.webzardstore1-text {
  text-align: left;
}

.webzardstore1-text h3 {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
}

.webzardstore1-text p {
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
}

.webzardstore1-text a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.webzardstore1-text a i {
  font-size: 12px;
  margin-left: 5px;
}

.webzardstore1-img {
  margin-top: 20px;
  text-align: center;
}

.webzardstore1-img img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.webzardstore1-blue {
  background: linear-gradient(145deg, #fff5ee, #fff5ee); /* very light blue */
  border: 1px solid #dceeff;
  box-shadow: 0 2px 6px rgba(13, 82, 255, 0.06);
  border-radius: 12px;
}

.webzardstore1-pink {
  background: linear-gradient(145deg, #fff0f5, #ffe6ef); /* very light pink */
  border: 1px solid #f9dbe5;
  box-shadow: 0 2px 6px rgba(255, 0, 85, 0.05);
  border-radius: 12px;
}

.webzardstore1-green {
  background: linear-gradient(145deg, #f1fff6, #e6ffee); /* very light green */
  border: 1px solid #d6f5df;
  box-shadow: 0 2px 6px rgba(0, 200, 83, 0.05);
  border-radius: 12px;
}


/* Responsive */
@media (max-width: 991px) {
  .webzardstore1-grid {
    flex-direction: column;
  }

  .webzardstore1-title {
  font-size: 27px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
  text-align: center;
}

.webzardstore1-title span {
  color: #ff540b  ;
}

.webzardstore1-subtitle {
  font-size: 15px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}

  .webzardstore1-card {
    flex: 1 1 100%;
  }
}



/* webzardHome Web app admin  End*/
  










/* Breadcrumb  */

.webzardbadcrum-section {
  width: 100%;
  background: linear-gradient(90deg, #fff5ee 0%, #ffa463ff 100%);
  padding: 60px 0;
  font-family: 'Segoe UI', sans-serif;
}

.webzardbadcrum-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

.webzardbadcrum-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.webzardbadcrum-content {
  max-width: 600px;
  flex: 1;
}

.webzardbadcrum-content h1 {
  font-size: 45px;
  font-weight: 700;
  color: #19181b;
  margin-bottom: 20px;
  line-height: 1.3;
}

.webzardbadcrum-desc {
  font-size: 20px;
  color: #19181b;
  margin-bottom: 30px;
}

.webzardbadcrum-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.webzardbadcrum-btn-black {
  text-decoration: none;
  font-weight: 600;
  padding: 12px 40px;
  border-radius: 6px;
  display: inline-block;
  transition: 0.3s ease;
  background-color: #ff540b;
  color: #ffffff;
  text-align: center;
}

.webzardbadcrum-btn-black:hover {
  background-color: #020202;
  color: #ffffff;
}

.webzardbadcrum-image {
  flex: 1;
  text-align: right;
  border-radius: 5px;
}

.webzardbadcrum-image img {
  max-width: 100%;
  width: 700px;
  max-height: 500px;
  animation: float 4s ease-in-out infinite;
  object-fit: contain;
  border-radius: 5px;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@media (max-width: 768px) {
  .webzardbadcrum-wrapper {
    flex-direction: column;
    text-align: left;
  }

  .webzardbadcrum-content {
    max-width: 100%;
  }

  .webzardbadcrum-content h1 {
    font-size: 32px;
    text-align: left;
  }

  .webzardbadcrum-desc {
    display: none;
  }

  .webzardbadcrum-buttons {
    justify-content: flex-start; /* ✅ Align left in mobile */
    flex-wrap: nowrap;
  }

  .webzardbadcrum-btn-black {
    min-width: auto;
    padding: 10px 28px;
    font-size: 15px;
  }

  .webzardbadcrum-image {
    margin-top: 25px;
  }
}


/* Breadcrumb End */
















.webzardpartners-section {
  padding: 60px 20px;
  background: transparent;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  max-width: 1730px;
  margin: auto;
}


.webzardpartners-title {
  font-size: 32px;
  font-weight: 600;
  color: #0c0c0c;
  margin-bottom: 10px;
}

.webzardpartners-title span {
  color: #ff540b  ;
}

.webzardpartners-desc {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
}

.webzardpartners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: center;
  justify-items: center;
  flex-wrap: wrap;
}

.webzardpartners-grid img {
  max-width: 150px;
  height: auto;
  transition: transform 0.3s ease;
}

.webzardpartners-grid img:hover {
  transform: scale(1.1);
}

.webzardpartners-button {
  margin-top: 40px;
}

.view-all-btn {
  background: #ff540b  ;
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.view-all-btn:hover {
  background: #1F2937  ff;
}

/* Responsive (Mobile - 4 logo per row) */
@media (max-width: 768px) {
  .webzardpartners-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .webzardpartners-grid img {
    max-width: 70px;
  }

  .webzardpartners-title {
    font-size: 24px;
  }

  .webzardpartners-desc {
    font-size: 14px;
  }
}

/* Fnq Section Start */








/* fnq Start */
.webzardfnq-section {
  padding: 80px 20px;
  background: #fafafa;
}

.webzardfnq-container {
  max-width: 1500px;
  margin: auto;
}

.webzardfnq-title {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  color: #111;
  margin-bottom: 40px;
}

.webzardfnq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.webzardfnq-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.03);
  overflow: hidden;
  transition: all 0.3s ease;
}

.webzardfnq-question {
  width: 100%;
  padding: 18px 20px;
  background: #ffffff;
  border: none;
  font-size: 17px;
  font-weight: 500;
  color: #1a1a1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  text-align: left;
  transition: background 0.3s ease;
}

.webzardfnq-question:hover {
  background: #eef4ff;
  color: #ff540b;
}

.webzardfnq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 16px;
  color: #444;
  background: #fff;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.4s ease;
  text-align: left;
}

.webzardfnq-question.active + .webzardfnq-answer {
  max-height: 500px;
  padding: 16px 20px;
}

.faq-icon {
  font-size: 16px;
  color: #ff540b;
  transition: transform 0.3s ease;
}

.webzardfnq-question.active .faq-icon {
  transform: rotate(180deg);
}

/* ✅ Responsive Mobile Improvements */
@media screen and (max-width: 768px) {
  .webzardfnq-grid {
    grid-template-columns: 1fr;
  }

  .webzardfnq-section {
    padding: 50px 15px;
  }

  .webzardfnq-title {
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
  }

  .webzardfnq-question {
    font-size: 16px;
    padding: 15px;
  }

  .webzardfnq-answer {
    font-size: 15px;
    padding: 0 15px;
  }

  .webzardfnq-question.active + .webzardfnq-answer {
    padding: 12px 15px;
  }
}


/* FNQ End */






/* Exprites swipper Start */


.webzartexprites-section {
  max-width: 1500px;
  margin: 30px auto;
  padding: 0 20px;
}

.webzartexprites-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 30px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.webzartexprites-swiper {
  padding-bottom: 30px;
}

.webzartexprites-swiper .swiper-slide {
  display: flex;
  justify-content: center;
}

.webzartexprites-card {
  width: 100%;
  max-width: 1000px;
  background: transparent;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.webzartexprites-image {
  width: 100%;
  aspect-ratio: 1000 / 620; /* 👈 Exact ratio for your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.webzartexprites-content {
  padding: 20px 25px 25px;
  text-align: left;
}

.webzartexprites-content h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.webzartexprites-content p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #333;
}

.webzartexprites-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.webzard-btn {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
  white-space: nowrap;
}

.webzard-btn.primary {
  background-color: #d6f4ff;
  color: #ff540b  ;
}

.webzard-btn.outline {
  border: 1px solid #313131ff;
  color: #313131ff;
  background: transparent;
}

.webzard-btn.outline:hover {
  background-color: #0f0f0fff;
  color: #fff;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .webzartexprites-content {
    padding: 15px;
  }

  .webzartexprites-buttons {
    flex-wrap: nowrap;       /* 👈 buttons inline */
    overflow-x: auto;         /* 👈 scroll if needed */
    gap: 10px;
  }

  .webzard-btn {
    width: auto;              /* 👈 not full width */
    font-size: 13px;
    padding: 6px 12px;
    text-align: center;
    flex-shrink: 0;
  }

  .webzartexprites-image {
    aspect-ratio: 1000 / 620; /* 👈 maintain full image ratio on mobile too */
  }
}


/* Exprites swipper end */









/* Portfolio card Start */

.demowebzard-section {
  max-width: 1500px;
  margin: 30px auto;
  padding: 0 20px;
}

.demowebzard-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 30px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.demowebzard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
  gap: 30px;
}

.demowebzard-card {
  background: transparent;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.demowebzard-image {
  width: 100%;
  aspect-ratio: 1000 / 620; /* 👈 fixed as per your image size */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.demowebzard-content {
  padding: 20px 25px 25px;
  text-align: left;
}

.demowebzard-content h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.demowebzard-content p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #333;
}

.demowebzard-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.demowebzard-btn {
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s ease;
  white-space: nowrap;
}

.demowebzard-btn.primary {
  background-color: #caebf7;
  color: #ff540b  ;
}

.demowebzard-btn.primary:hover {
  background-color: #aad8e9;
  color: #ff540b  ;
}

.demowebzard-btn.outline {
  background-color: #fde4c5;
  color: #a0400e;
}

.demowebzard-btn.outline:hover {
  background-color: #ecc99e;
  color: #a0400e;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .demowebzard-grid {
    grid-template-columns: 1fr; /* 1 card per row on mobile */
  }

  .demowebzard-content {
    padding: 15px;
  }

  .demowebzard-btn {
    width: auto;
    text-align: center;
    font-size: 13px;
    padding: 6px 12px;
  }

  .demowebzard-buttons {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .demowebzard-image {
    aspect-ratio: 1000 / 620; /* 👈 mobile par bhi same ratio maintain */
  }
}


/* Portfolio card End */











/* Floating Chat Wrapper */


.floating-chat-wrapper {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  animation: bounceIn 1s ease; /* Entry animation */
}

/* Main Chat Button */
.chat-icon {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.chat-icon img {
  width: 40px;
  height: 40px;
}

/* Chat Options (Hidden by default) */
.chat-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.chat-options.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  animation: fadeInUp 0.5s ease;
}

/* Individual Option Buttons */
.chat-option {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s;
}

.chat-option:hover {
  transform: scale(1.1) rotate(5deg);
}

.chat-option img {
  width: 40px;
  height: 40px;
}

/* Animations */
@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.05); opacity: 1; }
  70% { transform: scale(0.95); }
  100% { transform: scale(1); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(67, 186, 255, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(242, 47, 70, 0); }
  100% { box-shadow: 0 0 0 0 rgba(242, 47, 70, 0); }
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}



/* Floating Chat Wrapper */





/* Services Details dbadcrum*/


.webzardbadcrum2 {
  background: #d6f4ff;
  padding: 15px 0;
  font-family: 'Poppins', sans-serif;
}

.webzardbadcrum2-container {
  width: 90%;
  max-width: 1480px;
  margin: auto;
}

.webzardbadcrum2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #333;
  flex-wrap: wrap;
}

.webzardbadcrum2 ul li {
  margin-right: 8px;
  color: #333;
}

.webzardbadcrum2 ul li a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.webzardbadcrum2 ul li a:hover {
  text-decoration: underline;
}


/* Services Details dbadcrum*/



/* Webzard business soluction Fetures Prview page  */

.webzardfeturs1-wrapper {
  width: 100%;
  background: transparent;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.webzardfeturs1-container {
  max-width: 1500px;
  width: 100%;
}

/* Heading */
.webzardfeturs1-heading {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}
.webzardfeturs1-heading h2 {
  font-size: 30px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 15px;
}
.webzardfeturs1-heading p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Grid */
.webzardfeturs1-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

@media (max-width: 991px) {
  .webzardfeturs1-grid {
    grid-template-columns: 1fr;
  }
}

/* Card */
.webzardfeturs1-card {
  background: transparent;
  border: 1px solid #d1d1d1;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.webzardfeturs1-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.webzardfeturs1-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: flex;
  background: #f9f9f9;
  justify-content: center;
  align-items: center;
}
.webzardfeturs1-image img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* changed from cover */
  display: block;
}

/* Content */
.webzardfeturs1-content {
  padding: 20px;
}
.webzardfeturs1-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1c1c1c;
}
.webzardfeturs1-content p {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.5;
}


/* Webzard business soluction Fetures Prview page  */




/* Webzard business soluction banner */

.custom-banner {
  width: 100%;
  max-width: 1500px;
  margin: auto;
  position: relative;
  background-color: transparent;
  text-align: center;
  padding: 40px 20px 20px; /* Padding adjusted for mobile */
  border-radius: 10px;
  overflow: hidden;
}

.banner-heading {
  font-size: 30px;
  font-weight: 700;
  color: #131313ff;
  margin-bottom: 30px;
}

.banner-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}


/* Webzard business soluction banner */



/* Webzard Cards Section */


.webzardcard1-wrapper {
  width: 100%;
  background: #f9f9f9;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
}

.webzardcard1-container {
  max-width: 1500px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  width: 100%;
}

.webzardcard1-card {
  background: #ffffff; /* updated for contrast */
  border-radius: 12px;
  padding: 30px 25px;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 transparent;
  border: 1px solid #eee; /* subtle border for definition */
}

.webzardcard1-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.webzardcard1-card i {
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 20px;
  display: inline-block;
}

.webzardcard1-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1f1f1f;
}

.webzardcard1-card p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.6;
}


/* Webzard Cards Section */


/* All Title */

.webzardtitles-section {
  padding: 60px 20px 0 20px;
  background: transparent;
  color: #000;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0;
}

.webzardtitles-container {
  max-width: 1500px;
  margin: auto;
}

.webzardtitles-left {
  margin-bottom: 0;
}

.webzardtitles-subtitle {
  color: #ff540b; 
  font-size: 18px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.webzardtitles-title {
  font-size: 50px;
  font-weight: 500;
  line-height: 1.2;
  color: #000000;
  margin: 0;
  max-width: 1000px; /* ✅ Title width */
}

/* Responsive */
@media (max-width: 768px) {
  .webzardtitles-title {
    font-size: 36px;
    max-width: 100%;
  }
  .webzardtitles-subtitle {
    font-size: 14px;
  }
}

/* All Title */








/* Planes and Priceing  */

.webzardplan-section {
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.webzardplan-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1500px;
  margin: auto;
}

.webzardplan-card {
  background: #fff;
  border-radius: 12px;
  border: solid 1px #000;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.webzardplan-top {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  background: #00d084;
  padding: 6px 12px;
  border-radius: 8px;
  width: fit-content;
  margin-bottom: 15px;
}

.webzardplan-top.blue {
  background: #00d084;
}

.webzardplan-badge {
  font-size: 12px;
  color: white;
  background: #00d084;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 10px;
}

.webzardplan-subtext {
  color: #555;
  font-size: 14px;
  margin-bottom: 10px;
}

.webzardplan-price {
  font-size: 28px;
  font-weight: 700;
  margin: 10px 0;
}

.webzardplan-price span {
  font-size: 14px;
  color: #666;
  font-weight: normal;
}

.webzardplan-btn {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 12px 0;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  margin: 15px 0;
}

.webzardplan-link {
  color: #000;
  text-decoration: underline;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 10px;
}

.webzardplan-section-title {
  font-weight: bold;
  margin: 15px 0 5px;
}

.webzardplan-card ul {
  padding-left: 18px;
  margin: 0;
}

.webzardplan-card li {
  font-size: 14px;
  margin-bottom: 6px;
  list-style: disc;
  color: #444;
}

/* Planes and Priceing  */
