@media (-webkit-device-pixel-ratio: 1.25) {
  body {
    zoom: 0.79;
  }
}

@media (-webkit-device-pixel-ratio: 1) {
  body {
    zoom: 0.9;
  }
}

.button-group {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "Inter", sans-serif;
}

.btn-primary {
  background-color: #6fc331;
  color: white;
  border: none;
  font-size: 18px;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.3s ease;
  width: 10rem;
  height: 3.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.my-svg {
  width: 25px;
  gap: 1rem;
}

.btn-primary:hover {
  background-color: #59a324;
}

.link {
  color: white;
  font-size: 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s ease;
  border: 1px solid #49579f;
  width: 10rem;
  height: 3.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 500;
}

.link:hover {
  opacity: 0.8;
}

.arrow {
  font-size: 16px;
}

.top-bar {
  background-color: #2b2a6c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 40px;
  flex-wrap: wrap;
  padding-left: 20rem;
  padding-right: 20rem;
  width: 100%;
  position: fixed !important;
  top: 0;
  z-index: 1999 !important;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 25px;
  color: #ffffff;
  font-size: 17px;
}

.contact-info a {
  text-decoration: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 7px;
}

.contact-info i {
  margin-right: 6px;
  color: white;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border: 1px solid white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #3498ff;
  color: white;
  border-color: #3498ff;
}

/* Responsive: hide contact info on mobile */
@media (max-width: 999px) {
  .contact-info {
    display: none;
  }
  .top-bar {
    justify-content: center;
    padding: 10px;
  }
}

@media (max-width: 1250px) {
  .top-bar {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (max-width: 750px) {
  .btn-primary {
    font-size: 16px;
  }
}

/* Main Content Styling */
.main-content-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
}

.main-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.main-content p {
  font-size: 1.125rem;
  color: #4a5568;
  margin-bottom: 2rem;
}

/* Clickable Thumbnail Styling */

/* Play Icon Overlay */
.play-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease-in-out;
}

.play-overlay svg {
  width: 5rem;
  height: 5rem;
  color: white;
  opacity: 0.8;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Video Popup/Modal Styling */
#video-popup {
  position: fixed;
  inset: 0;
  background-color: #000000bf;
  align-items: center;
  justify-content: center;
  z-index: 2001;
  padding: 1rem;
}

.popup-hidden {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.popup-visible {
  display: flex;
  opacity: 1;
}

/* Modal Content */
.popup-content {
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 56rem; /* 896px */
  position: relative;
}

/* Close Button */
#close-popup {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  color: white;
  background-color: #2d3748;
  border-radius: 9999px;
  height: 2.5rem;
  width: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease-in-out;
  z-index: 10;
}

#close-popup:hover {
  background-color: #e53e3e;
}

#close-popup svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Video Player Container (for aspect ratio) */
.video-container {
  position: relative;
  width: 100%;
  height: 28rem;
  overflow: hidden;
  border-radius: 0.5rem;
}

#popup-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contact-wrapper-main {
  max-width: 1400px;
  margin: -131px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.info-section-left {
  border-right: 1px solid #e5e7eb;
  padding: 60px 50px;
}

.section-heading-primary-name {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 50px;
  line-height: 52px;
}

.contact-item-block {
  margin-bottom: 45px;
}

.contact-item-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 20px;
}

.icon-svg-contact {
  width: 24px;
  height: 24px;
}

.contact-detail-text {
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1.6;
  margin-left: 36px;
}

.phone-list-container {
  margin-top: 15px;
}

.phone-item-row {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.phone-icon-small {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}

.phone-details-wrap {
  flex: 1;
}

.phone-label-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 4px;
}

.phone-number-display {
  font-size: 15px;
  color: #2c2c2c;
  font-weight: 500;
}

.address-text-block {
  line-height: 1.8;
}

.form-section-right {
  padding: 60px 50px;
}

.form-heading-main {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.form-subtitle-desc {
  color: #6c757d;
  font-size: 15px;
  margin-bottom: 35px;
}

.input-group-wrapper {
  margin-bottom: 15px;
}

.input-label-styled {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #2c2c2c;
}

.text-input-field,
.select-dropdown-field,
.textarea-message-field {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 15px;
  color: #2c2c2c;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.text-input-field:focus,
.select-dropdown-field:focus,
.textarea-message-field:focus {
  outline: none;
  border-color: #3b82f6;
}

.text-input-field::placeholder,
.textarea-message-field::placeholder {
  color: #9ca3af;
}

.select-dropdown-field {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.textarea-message-field {
  resize: vertical;
  min-height: 120px;
}

.submit-button-primary {
  width: 100%;
  padding: 16px;
  background-color: #3b82f6;
  color: white;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button-primary:hover {
  background-color: #2563eb;
}

.submit-button-primary:active {
  background-color: #1d4ed8;
}

@media (max-width: 968px) {
  .contact-wrapper-main {
    display: flex;
    flex-direction: column-reverse;
  }

  .info-section-left,
  .form-section-right {
    padding: 40px 30px;
  }
}

@media (max-width: 640px) {
  .section-heading-primary-name,
  .form-heading-main {
    font-size: 24px;
  }

  .info-section-left,
  .form-section-right {
    padding: 30px 20px;
  }
}

.pentaaxx-services-wrap {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  position: relative;
  background-size: cover;
}

.pentaaxx-services-header {
  text-align: left;
  max-width: 700px;
  margin-bottom: 50px;
}

.pentaaxx-subtitle {
  color: #3cb6c9;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 10px;
}

.pentaaxx-title {
  font-size: 36px;
  margin-bottom: 20px;
}

.pentaaxx-desc {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

.pentaaxx-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* all cards same blue gradient background */
.pentaaxx-service-card {
  background: linear-gradient(180deg, #bce9ff 0%, #007cc3 100%);
  color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.pentaaxx-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.pentaaxx-icon-circle {
  font-size: 28px;
  background: rgba(255, 255, 255, 0.2);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.pentaaxx-card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
  line-height: 25px;
}

.pentaaxx-card-text {
  font-size: 15px;
  line-height: 1.6;
  color: #eaf7ff;
}

@media (max-width: 768px) {
  .pentaaxx-title {
    font-size: 28px;
  }
  .pentaaxx-service-card {
    padding: 20px;
  }
}

.pump-product-container {
  max-width: 1200px;
  margin: 200px auto;
  padding: 40px 20px;
}

.pump-main-section {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.pump-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px;
}

.pump-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  border-radius: 8px;
  padding: 30px;
}

.pump-product-image {
  max-width: 100%;
  height: auto;
  display: block;
}

.pump-details-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pump-product-title {
    font-size: 38px;
    margin-bottom: 20px;
    line-height: 38px;
    font-weight: 500;
    letter-spacing: 0px;
}

.pump-specs-list {
  list-style: none;
  margin: 20px 0 30px 0;
}

.pump-spec-item {
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 16px;
  color: #555;
}

.pump-spec-item:last-child {
  border-bottom: none;
}

.pump-spec-label {
  font-weight: 600;
  display: inline-block;
  min-width: 140px;
}

.pump-whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #25d366;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.pump-whatsapp-button:hover {
  background-color: #20ba5a;
}

.pump-whatsapp-icon {
  width: 24px;
  height: 24px;
}

.pump-description-section {
  background: white;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pump-description-heading {
  font-size: 28px;
  color: #0a2462;
  margin-bottom: 20px;
  font-weight: 600;
  border-bottom: 3px solid #349ad4;
  padding-bottom: 10px;
}

.pump-description-text {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.pump-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.pump-feature-card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 5px;
  border-left: 4px solid #349ad4;
}

.pump-feature-title {
  color: #0a2462;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 18px;
}

.pump-feature-text {
  color: #666;
  font-size: 14px;
}

@media (max-width: 768px) {
  .pump-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 25px;
  }

  .pump-product-title {
    font-size: 26px;
    line-height: 30px;
  }

  .pump-description-section {
    padding: 25px;
  }

  .pump-features-grid {
    grid-template-columns: 1fr;
  }

  .pump-spec-label {
    min-width: 71px;
    font-size: 15px;
  }

  .pump-spec-item {
    font-size: 15px;
  }

  .pump-whatsapp-button {
    font-size: 16px;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .pump-product-container {
    padding: 20px 10px;
    margin: 97px auto;
  }

  .pump-product-title {
    font-size: 22px;
  }

  .pump-description-heading {
    font-size: 22px;
  }

  .pump-spec-item {
    font-size: 14px;
    padding: 10px 0;
  }
}

/* ===== Preloader Container ===== */
.preloader-main-sec {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff; /* change color if needed */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* ===== Circular Spinner (background ring) ===== */
.preloader-main-sec::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 3px solid #ddd;
  border-top-color: #2D296A; /* spinner color */
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

/* ===== Image (continuous smooth scale) ===== */
.pre-icon {
  position: relative;
  width: 90px;
  height: 90px;
  animation: pulse 1s ease-in-out infinite;
  z-index: 10;
}

/* ===== Animations ===== */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}
