
* {
    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: 1920px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.plinfo-left {
  display: flex;
  align-items: center;
  gap: 60px;
}

.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: 600;
  font-size: 16px;
  cursor: pointer;
}

.plinfo-nav a i {
  margin-left: 5px;
}

.plinfo-nav a:hover {
  color: #d8912a  ;
}

/* 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: #d8912a  ;
  width: 100%;
}

.plinfo-dropdown a {
  display: block;
  padding: 10px 12px;
  color: #333;
  font-size: 14px;
}

.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: #d8912a;
  color: #f5f5f5;
  padding: 10px 30px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.5s ease;
}

.plinfo-contact-btn:hover {
   border: solid 2px #0f0f0f;
   color: #0f0f0f;
}

/* 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: #d8912a;
}

/* 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: #d8912a  ;
}

.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: #d8912a  ;
}

.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: #d8912a  ;
}

.plinfo-mobile-menu .plinfo-contact-btn {
  background: transparent;
  border: 1px solid #d8912a  ;
  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: #d8912a  ;
  color: #fff;
}

.plinfo-close-toggle {
  display: block;
  font-size: 20px;
  cursor: pointer;
  color: #fff;
  background-color: #d8912a  ;
  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: #d8912a  ;
  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 ==== */





/* HERO SLIDER START */

.techbeater-hero-section {
  width: 100%;
  background: transparent;
  padding: 60px 0;
  font-family: 'Segoe UI', sans-serif;
}

.techbeater-hero-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

.techbeater-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.techbeater-hero-content {
  max-width: 600px;
  flex: 1;
}

.techbeater-hero-badge {
  display: inline-block;
  background-color: #1f628e;
  color: #ffffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.techbeater-hero-content h1 {
  font-size: 46px;
  font-weight: 700;
  color: #000000ff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.techbeater-hero-desc {
  font-size: 20px;
  color: #333333ff;
  margin-bottom: 30px;
}

.techbeater-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
  border-radius: 20px;
}

.techbeater-hero-buttons a {
  text-decoration: none;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 26px;
  display: inline-block;
  transition: 0.3s;
  min-width: 160px;
  text-align: center;
  white-space: nowrap;
}

.techbeater-btn-primary {
  background-color: #d8912a;
  color: white;
}

.techbeater-btn-primary:hover {
  background-color: #1f628e;
}

.techbeater-btn-outline {
  background-color: #000;
  color: white;
  border: none;
}

.techbeater-btn-outline:hover {
  background-color: #111;
}

.techbeater-hero-image {
  flex: 1;
  text-align: right;
}

.techbeater-hero-image img {
  max-width: 100%;
  width: 100%;
  max-height: 500px;
  animation: float 4s ease-in-out infinite;
  object-fit: contain;
}

.techbeater-trust-badges {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 25px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.07);
  font-size: 13px;
  color: #1a1a1a;
  font-weight: 500;
  flex: 1 1 0;
  min-width: 0;
  white-space: nowrap;
}

.trust-badge img {
  width: 16px;
  height: 16px;
}

@media (max-width: 480px) {
  .techbeater-trust-badges {
    flex-wrap: nowrap; /* keep all badges in one row */
    gap: 6px;
  }

  .trust-badge {
    font-size: 12.5px;
    padding: 5px 8px;
    flex-shrink: 1;
    justify-content: flex-start;
  }

  .trust-badge span {
    overflow: hidden;
    text-overflow: ellipsis;
  }
}




@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@media (max-width: 768px) {
  .techbeater-hero {
    flex-direction: column;
    text-align: center;
  }

  .techbeater-hero-content {
    max-width: 100%;
  }

  .techbeater-hero-content h1 {
    font-size: 30px;
  }

  .techbeater-hero-desc {
    font-size: 16px;
  }

  .techbeater-hero-buttons {
    justify-content: center;
    flex-wrap: nowrap;
  }

  .techbeater-hero-buttons a {
    min-width: auto;
    padding: 10px 18px;
    font-size: 15px;
  }

  .techbeater-hero-image {
    margin-top: 25px;
  }

  .techbeater-trust-badges {
    justify-content: center;
    margin-top: 15px;
  }

  .trust-badge {
    font-size: 13px;
    padding: 8px 12px;
  }
}

/* HERO SLIDER END */














/* ABOUT US START */


.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;
  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;
  }
}


/* ABOUT US 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(#d8912a  , #d8912a  );
        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: #d8912a  ;
        border-color: #d8912a  ;
    }

    /* Get in Touch button - black running right to left effect */
    .uvsproduct1-btn-outline {
        background-color: transparent;
        color: #d8912a  ;
        border: 2px solid #d8912a  ;
    }

    .uvsproduct1-btn-outline::before {
        right: 0;
        background-color: #d8912a  ;
    }

    .uvsproduct1-btn-outline:hover::before {
        width: 100%;
        left: 0;
        right: auto;
    }

    .uvsproduct1-btn-outline:hover {
        color: #fff;
        border-color: #d8912a  ;
    }

    .uvsproduct1-description-section {
        margin-top: 60px;
    }

    .uvsproduct1-description-label {
        font-size: 24px;
        font-weight: 600;
        color: #333;
        border-bottom: 2px solid #d8912a  ;
        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: #d8912a  ;
      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: #d8912a  ;
      color: white;
    }

    .webzardcontact3-info-card:hover i {
      color: white;
    }

    .webzardcontact3-info-card.highlight {
      background-color: #d8912a  ;
      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: #d8912a  ;
    }

    @media (max-width: 768px) {
      .webzardcontact3-wrapper {
        flex-direction: column;
        padding: 20px;
      }

      .webzardcontact3-input {
        flex: 1 1 100%;
      }
    }

/* Contact us form 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 */




/* 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: #d8912a  ;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}


/* Popup  Contact Section End */



 /* 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: Nunito, 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: #d8912a  ;
     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 */





/* Counter */


/* Counter */
.arnacounter-section {
  position: relative;
  width: 100%;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;

  /* ✅ Added for desktop width limit */
  max-width: 1500px;
  margin: 0 auto;
}

.arnacounter-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
    url('https://images.unsplash.com/photo-1582407947304-fd86f028f716?fm=jpg&q=60&w=3000&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8M3x8cmVhbCUyMGVzdGF0ZXxlbnwwfHwwfHx8MA%3D%3D');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.arnacounter-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 40px 30px;
}

.arnacounter-item {
  flex: 1 1 300px;
  min-width: 220px;
  max-width: 360px;
  text-align: center;
  color: #ffffff;
  padding: 24px 14px;
  border-right: 2px solid rgba(255,255,255,0.25);
  transition: transform 0.2s;
  background: rgba(24,34,44,0.13);
}
.arnacounter-item:nth-child(2n) {
  background: rgba(33, 36, 39, 0.23);
}
.arnacounter-item:last-child {
  border-right: none;
}

.arnacounter-item:hover {
  transform: translateY(-8px) scale(1.04);
  background: rgba(255,255,255,0.15);
  border-radius: 16px;
}

.arnacounter-count {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
  line-height: 1;
}

.arnacounter-label {
  font-size: 1.08rem;
  font-weight: 400;
  opacity: 0.95;
  letter-spacing: 0.3px;
}

/* Tablets */
@media (max-width: 1024px) {
  .arnacounter-container {
    padding: 28px 10px;
    gap: 18px;
  }
  .arnacounter-count { font-size: 2.2rem; }
}

/* Mobile: 2 columns per row */
@media (max-width: 600px) {
  .arnacounter-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 20px 2vw;
  }
  .arnacounter-item {
    border-right: none;
    border-bottom: 2px solid rgba(255,255,255,0.22);
    padding: 12px 4px;
    min-width: unset;
    max-width: unset;
  }
  .arnacounter-item:nth-child(2n) {
    border-bottom: none;
  }
  .arnacounter-count { font-size: 1.6rem; }
}

@media (max-width: 450px) {
  .arnacounter-container {
    gap: 10px;
  }
  .arnacounter-label { font-size: 0.98rem; }
}


/* Counter */










/* ================== Arnab Breadcrumb Section ================== */
.arnabreadcrumb-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 500px; /* Desktop height */
  overflow: hidden;
}

.arnabreadcrumb-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.arnabreadcrumb-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
  margin: 0;
  padding: 0 20px;
  white-space: nowrap; /* prevents breaking into two lines */
  letter-spacing: 1px; /* optional, make text compact */
}

/* Responsive for tablets */
@media (max-width: 768px) {
  .arnabreadcrumb-section {
    height: 400px;
  }
  .arnabreadcrumb-title {
    font-size: 35px;
    letter-spacing: 0.5px; /* slightly tighter for mobile */
  }
}

/* Responsive for mobile */
@media (max-width: 480px) {
  .arnabreadcrumb-section {
    height: 350px;
  }
  .arnabreadcrumb-title {
    font-size: 35px;
    letter-spacing: 0.5px;
  }
}


/* ================== Arnab Breadcrumb Section ================== */