/* home hero section start */

.home-hero-section {
  display: flex;
  height: 90vh;
  width: 100%;
}

.home-hero-section-slider {
  width: 75%;
  position: relative;
  overflow: hidden;
}

.home-hero-section-images {
  display: flex;
  width: 400%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.home-hero-section-image {
  width: 25%;
  height: 100%;
}

.home-hero-section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-section-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  cursor: pointer;
}

.home-hero-section-arrow-left {
  left: 10px;
}

.home-hero-section-arrow-right {
  right: 10px;
}

.home-hero-section-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.home-hero-section-indicator {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
}

.home-hero-section-indicator.active {
  background: white;
}

.home-hero-section-form {
  width: 25%;
  padding: 20px;
  background: #f9f9f9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home-hero-section-form h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #1a3c34;
}

.home-hero-section-form input,
.home-hero-section-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.home-hero-section-form textarea {
  height: 100px;
  resize: none;
}

.home-hero-section-form button {
  width: 100%;
  padding: 10px;
  background: #1a3c34;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .home-hero-section {
    flex-direction: column;
    height: auto;
  }

  .home-hero-section-slider {
    width: 100%;
    height: auto;
  }

  .home-hero-section-form {
    width: 100%;
    padding: 20px;
  }
  .home-hero-section-image img {
    object-fit: contain;
  }
}

/* hero section end */

/* info card start */
.home-info-section-wrapper {
  background: linear-gradient(to right, #025b61, #08c2da);
  padding: 60px 0px;
  font-family: "Segoe UI", sans-serif;
  color: white;
}

.home-info-section-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1450px;
  margin: auto;
  gap: 30px;
}

.home-info-card {
  background: transparent;
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1 1 calc(25% - 30px);
  min-width: 310px;
}

.home-info-card-icon {
  flex-shrink: 0;
  width: 85px;
  height: 85px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-info-card-icon img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.home-info-card-text h3 {
  font-size: 20px;
  margin: 0 0 8px;
  color: white;
  font-weight: bold;
}

.home-info-card-text p {
  font-size: 19px;
  margin: 0;
  color: white;
  line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .home-info-section-container {
    flex-direction: column;
    align-items: center;
  }

  .home-info-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .home-info-card-icon {
    margin-bottom: 10px;
  }

  .home-info-card-text {
    align-items: center;
  }
  .home-info-card-text p {
    font-size: 20px;
    margin: 10px 0px;
  }
  .home-info-section-wrapper {
    display: none;
  }
}

/* info card end */

/* about section start */

.about-us-section {
  padding: 60px 60px;
  background: linear-gradient(rgba(255, 247, 247, 0.9), rgba(255, 255, 255, 1)),
    url("/assets/images/background.png");
  background-size: contain;
  background-repeat: repeat;
  font-family: sans-serif;
}

.about-content {
  display: flex;
  max-width: 1400px;
  margin: auto;
  gap: 100px;
  align-items: center;
  flex-wrap: wrap;
}

.about-images {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 550px;
}

.image {
  border-radius: 25px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.image1 {
  width: 100%;
}

.image2 {
  position: absolute;
  width: 60%;
  right: -40px;
  bottom: -70px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  background: white;
}

.about-text {
  flex: 1;
  padding: 10px 20px;
}

.badge {
  display: inline-block;
  background-color: #003e46;
  color: white;
  font-weight: bold;
  padding: 10px 16px;
  border-radius: 20px;
  margin-bottom: 30px;
  font-size: 0.9rem;
}

.about-text h2 {
  font-size: 2.3rem;
  margin-bottom: 25px;
  font-weight: 600;
}

.highlight {
  color: #00a8b5;
}

.about-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.read-more-btn {
  background-color: #00cfff;
  color: white;
  padding: 12px 24px;
  border-radius: 40px;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.95rem;
}

.call-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.call-icon {
  background-color: #003e46;
  color: white;
  padding: 12px;
  border-radius: 50%;
  font-size: 18px;
}

.call-number {
  color: #003e46;
  font-weight: bold;
  font-size: 1rem;
}

.call-text {
  font-size: 0.9rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    gap: 30px;
  }

  .image2 {
    display: none;
  }
  .about-text h2 {
    font-size: 1.9rem;
  }

  .about-text {
    /* text-align: center; */
    padding: 0px 10px;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
  }
  .address-img {
    height: 130px;
  }
  .about-us-section {
    padding: 30px 10px;
  }
  .about-images {
    display: none;
  }
}
.address-img {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1s ease-in-out;
}

.address-img.show {
  opacity: 1;
  transform: translateX(0);
}

/* about section end */

/* our products css start */

.home-our-products-section {
  padding: 40px 20px;
  background-color: #fafafa;
  overflow: hidden;
  margin-top: 20px;
}

.home-our-products-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

.home-our-products-title-highlight {
  font-weight: 700;
  color: #00bcd4;
}

.home-our-products-container h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}

.home-our-products-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.home-our-products-slider {
  display: flex;
  transition: transform 0.6s ease-in-out;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.home-our-products-slider::-webkit-scrollbar {
  display: none;
}

.home-our-products-card {
  min-width: 300px;
  max-width: 300px;
  background: #fff;
  margin: 0 10px;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.home-our-products-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 5px;
}

.home-our-products-card h3 {
  font-size: 19px;
  color: #333;
  margin: 15px 0 10px;
  transition: color 0.3s ease;
}

.home-our-products-card p {
  font-size: 16px;
  color: #666;
}

.home-our-products-card a {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 18px;
  background-color: #00bcd4;
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.home-our-products-card:hover {
  border: 2px solid #00bcd4;
}

.home-our-products-card:hover h3 {
  color: #00bcd4;
}

.home-our-products-arrow {
  background: #00bcd4;
  color: white;
  font-size: 24px;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  z-index: 10;
  cursor: pointer;
  transition: 0.3s;
}

.home-our-products-arrow.left {
  position: absolute;
  left: -20px;
}

.home-our-products-arrow.right {
  position: absolute;
  right: -20px;
}

.slider-bullets {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  margin: 0 5px;
  transition: 0.3s;
}

.bullet.active {
  background: #00bcd4;
}

@media screen and (max-width: 768px) {
  .home-our-products-card {
    min-width: 250px;
  }

  .home-our-products-arrow {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
  .home-our-products-container h2 {
    font-size: 2rem;
  }
}

/* our products css end */

/* counter section start */
.home-counter-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 20px;
  background: #ffffff;
  text-align: center;
}

.home-counter-box {
  flex: 1 1 200px;
  margin: 20px;
}

.home-counter-box i {
  font-size: 38px;
  color: #004d4d;
  margin-bottom: 10px;
}

.home-counter-box h4 {
  font-size: 22px;
  color: #004d4d;
  margin: 10px 0;
}

.home-counter-box .home-counter-count {
  font-size: 58px;
  font-weight: bold;
  color: #004d4d;
}

@media (max-width: 768px) {
  .home-counter-section {
    flex-direction: column;
    padding: 40px 10px;
  }

  .home-counter-box {
    margin: 20px 0;
  }
}

/* counter section end */

/* 
clients logo section start */
.client-logo-slider-container {
  overflow: hidden;
  width: 100%;
  background-color: #ffffff;
  padding-top: 5px;
  padding-bottom: 20px;
}

.client-logo-slider-track {
  display: flex;
  width: fit-content;
  animation: clientLogoSlide 20s linear infinite;
}

.client-logo-slide {
  flex: 0 0 auto;
  margin: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo-slide img {
  height: 120px;
  width: 100%;
  max-width: 160px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.client-logo-slide img:hover {
  transform: scale(1.1);
}

@keyframes clientLogoSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .client-logo-slide img {
    height: 120px;
    max-width: 100%;
  }
}

/* 
client logo section end */

/* labourity accessories section start */
.labourity-accessories-slidder-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 30px 20px;
  font-family: Arial, sans-serif;
}

.labourity-accessories-slidder-heading-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.labourity-accessories-slidder-heading {
  font-size: 28px;
  font-weight: bold;
}

.labourity-accessories-slidder-heading span {
  color: #00b5d4;
}

.labourity-accessories-slidder-buttons {
  display: flex;
  gap: 10px;
}

.labourity-accessories-slidder-button {
  background-color: white;
  border: 2px solid #00b5d4;
  color: #00b5d4;
  font-size: 20px;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.labourity-accessories-slidder-button:hover {
  background-color: #00b5d4;
  color: white;
}

.labourity-accessories-slidder-wrapper {
  overflow: hidden;
}

.labourity-accessories-slidder-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.labourity-accessories-slidder-card {
  min-width: 260px;
  margin-right: 20px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  flex-shrink: 0;
  border: 1px solid;
}

.labourity-accessories-slidder-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin-bottom: 15px;
  cursor: pointer;
}

.labourity-accessories-slidder-card h4 {
  font-weight: bold;
  font-size: 20px;
  margin: 0;
}

/* Modal styles */
.labourity-accessories-slidder-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.labourity-accessories-slidder-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.labourity-accessories-slidder-modal-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.labourity-accessories-slidder-modal-close {
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 30px;
  background: white;
  color: black;
  border-radius: 50%;
  cursor: pointer;
  padding: 5px 12px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .labourity-accessories-slidder-card {
    min-width: 80%;
  }

  .labourity-accessories-slidder-heading {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .labourity-accessories-slidder-card {
    min-width: 100%;
  }
}
/* 
labourity accesssories section end */
/* e-catelouge */
.catalogue-wrapper {
  background-color: #095158;
  color: white;
  padding: 40px 20px;
  border-radius: 10px;
  max-width: 1200px;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.catalogue-image {
  flex: 1 1 250px;
  max-width: 250px;
  margin-bottom: 20px;
}

.catalogue-image img {
  width: 100%;
  height: auto;
  display: block;
}

.catalogue-content {
  flex: 2 1 600px;
  padding: 0 20px;
}

.catalogue-heading {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.catalogue-form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.catalogue-form .form-group {
  flex: 1 1 calc(50% - 10px);
}

.catalogue-form input {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
}

.catalogue-form .full-width {
  flex: 1 1 100%;
}

.catalogue-form button {
  background-color: #1117bc;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
}

.catalogue-form button:hover {
  background-color: #000000;
}

@media (max-width: 768px) {
  .catalogue-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 10px;
    flex-wrap: nowrap;
  }

  .catalogue-heading {
    text-align: center;
  }

  .catalogue-form {
    flex-direction: column;
  }

  .catalogue-form .form-group {
    flex: 1 1 100%;
  }

  .catalogue-form button {
    width: 100%;
  }
  .catalogue-content {
    flex: 2 1 60px;
  }
}

.message-textarea-2025 {
  width: 100%; /* default for mobile */
  max-width: 100%;
  padding: 10px;
  font-size: 16px;
  resize: vertical;
}

/* ✅ Desktop ke liye larger width */
@media screen and (min-width: 768px) {
  .message-textarea-2025 {
    width: 430px; /* ya jitna chaho */
    height: 50px;
  }
}

/* catelog end */
/* .office-factory-images img {
  width: 500px;
  height: 300px;
} */

.section-wrapper_2025_ui {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #004d4d;
  background-image: url("/assets/images/footer-background.png"); /* Replace with actual image path */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  flex-wrap: wrap;
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px 20px;
  gap: 30px;
  margin-top: 60px;
  align-items: stretch; /* ensures all children align in height */
  gap: 0; /* remove all space between elements */
}

.factory-image_2025_ui {
  flex: 1 1 400px;
  max-width: 500px;
}

.factory-image_2025_ui img {
  width: 100%;
  height: 330px;
  border-radius: 10px;
}

.main-section_2025_factory_ui {
  flex: 1 1 500px;
  background-color: #eaeef3;
  padding: 40px 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);

  /* Arrow with rounded corners on right */
  clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%, 0% 0%);
  -webkit-clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%, 0% 0%);

  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  max-width: 850px;
}

.factory-content_2025_ui h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #0299aa;
}

.factory-content_2025_ui h2 span {
  color: #0299aa;
}

.factory-content_2025_ui p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.call-box_2025_ui {
  width: 650px;
  background-color: white;
  display: flex;
  align-items: center;
  padding: 4px 20px;
  border-radius: 50px;
  margin-top: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.call-icon_2025_ui {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #004d4d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin-right: 20px;
}

.call-text_2025_ui {
  font-size: 20px;
  font-weight: bold;
  color: #000;
}

.call-numbers_2025_ui {
  font-size: 16px;
  margin-top: 5px;
  color: #333;
}

@media (max-width: 768px) {
  .section-wrapper_2025_ui {
    flex-direction: column;
  }
  .factory-image_2025_ui {
    max-width: 100%;
    height: auto;
    padding: 0;
    margin: 0 auto;
    object-fit: contain;
  }
  .arrow-images img {
    display: none;
  }

  .main-section_2025_factory_ui {
    clip-path: none;
    border-radius: 20px;
    max-width: 320px;
    margin: 0px auto;
  }

  .call-box_2025_ui {
    flex-direction: column;
    border-radius: 20px;
    max-width: 280px;
    text-align: center;
  }

  .call-icon_2025_ui {
    margin-bottom: 15px;
  }
  .factory-content_2025_ui h2 {
    font-size: 32px;
    text-align: center;
  }
}

/* anti arrow */
.arrow-images img {
  height: 330px;
  position: absolute;
  left: 400px;
}

.call-numbers_2025_ui a {
  text-decoration: none;
  color: #333;
  margin: 0 5px;
}

.call-numbers_2025_ui a:hover {
  color: #0299aa;
}

/* animation */
/* Initial hidden state */
.animate-from-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1s ease;
}

/* Animate when in view */
.animate-from-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* only mobile info section start  */
.home-info-section-wrapper-mobile {
  display: none; /* hidden on desktop */
  background: linear-gradient(to right, #025b61, #08c2da);
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
  color: white;
}

.home-info-section-container-mobile {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  margin: auto;
  gap: 30px;
}

.home-info-card-mobile {
  background: transparent;
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1 1 calc(50% - 30px);
  min-width: 260px;
}

.home-info-card-icon-mobile {
  flex-shrink: 0;
  width: 75px;
  height: 75px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-info-card-icon-mobile img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.home-info-card-text-mobile h3 {
  font-size: 18px;
  margin: 0 0 5px;
  color: white;
  font-weight: bold;
}

.home-info-card-text-mobile p {
  font-size: 16px;
  margin: 0;
  color: white;
  line-height: 1.4;
}

/* ✅ Mobile Only: show section */
@media only screen and (max-width: 768px) {
  .home-info-section-wrapper-mobile {
    display: block;
  }

  .home-info-section-container-mobile {
    flex-direction: column;
    align-items: center;
  }

  .home-info-card-mobile {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .home-info-card-icon-mobile {
    margin-bottom: 10px;
  }

  .home-info-card-text-mobile p {
    font-size: 17px;
    margin: 10px 0;
  }
}

/* only mobile info section end  */
textarea {
  border-radius: 8px;
  padding: 1px 4px;
}
