/* Content section */
.content-section {
  background: white;
  padding: 80px 0;
}

.content-section h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #191919;
  margin-bottom: 30px;
}

.content-section h2 span {
  color: var(--primary-color);
}

.content-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}

.content-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

/* Features Section */
.features-section {
  background: linear-gradient(45deg, #e8e8e8 0%, #f5f5f5 50%, #e8e8e8 100%);
  margin-bottom: 60px;
}

.feature-item {
  text-align: center;
}

.feature-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.feature-title {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  line-height: 1.5;
  margin-bottom: 0;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .feature-item {
    padding: 30px 15px;
    margin-bottom: 20px;
  }

  .feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }

  .feature-icon i {
    font-size: 32px;
  }

  .feature-title {
    font-size: 13px;
  }
}

/* stationaly section start */
.stationary-section {
  padding: 40px 140px;
  background-color: #f1f1f1;
}

.mixer-header {
  text-align: center;
  margin-bottom: 50px;
}

.mixer-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  line-height: 1.2;
}

.highlight {
  color: #053e84;
}

.features-stationary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.feature-card p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.feature-card p:last-child {
  margin-bottom: 0;
}

.feature-stationary-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 20px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .mixer-title {
    font-size: 2rem;
  }

  .features-stationary-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stationary-section {
    padding: 40px 15px;
  }
}
/* stationaly section end */

/* concrete section */
.concrete-section {
  background: white;
  padding: 0px 100px 50px 100px;
  border-bottom: 1px solid #e9ecef;
}

.category-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f2937;
}

.product-list {
  list-style: none;
  padding: 0;
}

.product-list li {
  padding: 0.4rem 0;
  color: #374151;
  position: relative;
  padding-left: 1.2rem;
}

.product-list li::before {
  content: "•";
  color: #053e84;
  position: absolute;
  left: 0;
  font-weight: bold;
}

@media (max-width: 768px) {
  .main-title {
    font-size: 2.2rem;
  }

  .concrete-section {
    padding: 2rem 0;
  }
}

.button-group {
  gap: 1rem;
  margin-bottom: 3rem;
}
/* end concreate section */

/* start three products section */
.three-products-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 30px 20px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.three-product-image {
  width: 100%;
  max-width: 200px;
  height: 180px;
  object-fit: contain;
  margin: 0 auto 20px;
  display: block;
}

.product-title {
  font-size: 20px;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 8px;
  line-height: 1.3;
}
p.subtitle {
  padding: 0px 345px;
}
.product-subtitle {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 15px;
}

.product-spec {
  font-size: 13px;
  color: #495057;
  margin-bottom: 15px;
  line-height: 1.4;
}

.read-more {
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #053e84;
  text-decoration: none;
}

.read-more::after {
  content: "→";
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.read-more:hover::after {
  transform: translateX(3px);
}

.section-padding {
  padding: 60px 130px;
}

@media (max-width: 768px) {
  .three-products-card {
    padding: 25px 15px;
    margin-bottom: 20px;
  }

  .three-product-image {
    height: 150px;
  }

  .section-padding {
    padding: 40px 0;
  }
}

.button-container {
  justify-self: center;
  margin-top: 30px;
}
/* end three product section */

/* start YouTube Section */
.youtube-section {
  position: relative;
  height: 400px;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("../img/youtube-bg-image.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-bottom: 0;
}

.youtube-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.youtube-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

.play-button {
  width: 80px;
  height: 80px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
}

.play-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* end youtube section */

/* Service Section */
.service-section {
  background-color: white;
  padding: 80px 20px;
  text-align: center;
}

.service-container {
  max-width: 1200px;
  margin: 0 auto;
}

.service-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--dark-color);
  margin-bottom: 15px;
  line-height: 1.2;
}

.service-title .highlight {
  color: var(--primary-color);
}

.service-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}

.services-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  justify-content: center;
}

.services-row.center {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.service-item {
  text-align: center;
  padding: 20px;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--dark-color);
  stroke-width: 2;
  fill: none;
}

.service-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.service-item p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .youtube-content h1 {
    font-size: 2rem;
    padding: 0 20px;
  }

  .service-title {
    font-size: 2rem;
  }

  .services-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .services-row.center {
    flex-direction: column;
    align-items: center;
  }

  .play-button {
    width: 60px;
    height: 60px;
  }

  .play-button::before {
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
  }
}
/* .........end service section ................... */

/* start newletter */
.newsletter-section {
  background-color: #000000;
  color: white;
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.1;
}

.newsletter-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.newsletter-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.newsletter-title .highlight {
  color: var(--primary-color);
  text-shadow: 0 0 20px rgba(35, 58, 255, 0.5);
}

.newsletter-form-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.newsletter-subtitle {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 10px;
  font-weight: 400;
}

.newsletter-form {
  display: flex;
  gap: 0;
  background-color: white;
  border-radius: 30px;
  /* padding: 6px; */
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.newsletter-form:focus-within {
  box-shadow: 0 6px 30px rgba(35, 58, 255, 0.4);
  transform: translateY(-2px);
}

.email-input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  outline: none;
  background: transparent;
  color: var(--dark-color);
  font-weight: 400;
}

.email-input::placeholder {
  color: #999;
  font-weight: 400;
}

.subscribe-btn {
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #053e84 100%);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(35, 58, 255, 0.3);
}

.subscribe-btn:active {
  transform: translateY(0);
}

.wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn-light.rounded-pill {
  background: #fff;
}


.hero-img.img-fluid.banner-banner-Mixer {
  height: 569px;
  object-fit: contain;
  object-position: center right;
}

@media (max-width: 968px) {
  .newsletter-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .newsletter-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .newsletter-title {
    font-size: 2rem;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
    background: transparent;
  }

  .email-input {
    background-color: white;
    border-radius: 25px;
  }

  .newsletter-form-content {
    padding: 20px;
  }
}
/* End Newsletter */

.container.e-con .e-con-inner {
	--bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x)* .5);
    padding-left: calc(var(--bs-gutter-x)* .5);
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 576px) {
    .container.e-con {
        --container-max-width: 540px;
    }
}
@media (min-width: 768px) {
    .container.e-con {
        --container-max-width: 720px;
    }
}
@media (min-width: 992px) {
    .container.e-con {
        --container-max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .container.e-con {
        --container-max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .container.e-con {
        --container-max-width: 1320px;
    }
}
@media (min-width: 1800px) {
    .container.e-con {
        --container-max-width: 1500px;		
    }
	.container.e-con .e-con-inner {
		padding-inline: 20px;
	}
}

.elementor-button.elementor-button-link:hover {
	transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 87, 240, 0.4);
}
.pad-block {padding-block:clamp(30px,5vw,80px);}
.elementor-heading-title span {color:var(--primary-color);}
.center .elementor-widget-icon-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) { 

.phone_none_div{
  display: none !important;

}
.phone-nav.phe-bibe.d-none {
display: block !important;
}
.phone-nav.phe-bibe.d-none {
  background: #000;
  padding: 10px;
}
.phone-nav.phe-bibe.d-none .d-flex.align-center {
  align-items: center;
}
.top-header {
  display: none;
}
.product-wrappper {
  display: grid;
  grid-template-columns: repeat(1, minmax(300px, 1fr));

}
.unlock-processing-potential {
  padding-top: 42px;
}
.why-industries-trust-reliance {
  padding: 0px;
}
.breadcrumb-section h1 {
  font-weight: 800;
  font-size: 30px;
}
.content-section h2 {
  font-size: 22px;
  font-weight: 800;
  color: #191919;
  margin-bottom: 15px;
}
 .feature-item {
    padding: 6px 15px;
    margin-bottom: 0;
  }
    .stationary-section {
    padding: 40px 0px;
  }
   .service-title {
    font-size: 24px;
  }
  .unlock-processing-potential h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 1rem;
}
p.subtitle {
  padding: 0px 35px;
}
.title-wrapper h2 {
  font-size: 25px;
  font-weight: 800;
}
.join-our-newsletter {
  background: #0d0b0e;
  color: white;
  padding: 4rem 0rem;
}
.inner-wrapper-form {
  width: 100%;
}
.join-our-newsletter {
  padding-bottom: 20px;
}
.row.footer-top {
  padding-top: 0;
}
.footer-col {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 15px;
}
.marquee-content span {
  flex-shrink: 0;
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  padding-right: 2rem;
}
.footer-bottom {
  text-align: center;
}
.product-information img {
  display: block;
  margin-bottom: 2rem;
  width: 100%;
  max-width: 600px;
  height: auto;
}
.product-information.my-5 {
  margin: 0 !important;
    margin-bottom: 0px;
  margin-bottom: 0px !important;
}
.inside-mixer-sec.my-5 {
  margin-top: 0px !important;
  padding-top: 0;
}
.icon-box.text-center {
  padding: 4px 32px;
}   
.features-section.my-5 {
  margin-bottom: 0px !important;
}
.hero-img.img-fluid {
  margin-top: 20px;
}
.office-address::before {
  left: 0;
  width: 100%;
}     
.office-address.py-5 .container {
  position: relative;
}
}