/* full width banner section */

.em-full-width-slide-1 {
    background-color: rgba(0, 0, 0, 0.7);
    background-image: url('../images/Automobile-Industry.jpeg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}
.em-full-width-slide-2 {
    background-color: rgba(0, 0, 0, 0.7);
    background-image: url('../images/Chemical-Industry.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}
.em-full-width-slide-3 {
    background-color: rgba(0, 0, 0, 0.7);
    background-image: url('../images/Marine-Industry.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}
.em-full-width-texts-wrapper.section-spacing {
  padding: 11% 0%;
}
.em-full-width-texts {
  max-width: 1080px;
}
.em-full-width-texts h1 {
  color: var(--color-white);
  font-size: 58px;
  line-height: 64px;
  margin-bottom: 25px;
}
.em-full-width-texts p {
  color: var(--color-white);
  margin-bottom: 40px;
}
.em-full-width-texts .transparent-btn{
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid #fff;
}

/* industrial about section */

.em-industrial-about-heading {
  margin-left: 80px;
  margin-bottom: 60px;
}

.em-industrial-about-subtitle {
  font-size: 16px;
  color: #ff3b3b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.em-industrial-about-container {
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.em-industrial-about-subtext {
  font-weight: 600;
  margin-bottom: 18px;
}

.em-industrial-about-desc {
  color:#777;
  margin-bottom: 25px;
}

/* Signature */
.em-industrial-about-sign span {
  font-size: 24px;
  font-family: 'Pacifico', cursive;
  display: block;
}
.em-industrial-about-sign p {
  font-size: 15px;
  margin-top: 5px;
}

/* IMAGE SECTION */
.em-industrial-about-image-wrapper {
  position: relative;
  width: 100%;
  height: auto;
}

.em-industrial-about-image-bg {
  background: #ff3b3b;
  width: 80px;
  height: 100%;
  position: absolute;
  left: -25px;
  top: 20px;
  z-index: 1;
}

.em-industrial-about-image {
  width: 100%;
  border-radius: 4px;
  position: relative;
  z-index: 2;
  object-fit: cover;
}

/* RIGHT SIDE FEATURES */
.em-industrial-about-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.em-industrial-about-feature {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.em-industrial-about-dot {
  font-size: 12px;
  color: #ff3b3b;
}

.em-industrial-about-feature h4 {
  font-weight: 700;
}

.em-industrial-about-feature p {
  margin: 4px 0 0;
  max-width: 100%;
}


/* about us section */

.about-image {
  width: 48%;
}
.about-image img {
  width: 100%;
  max-height: 570px;
  border-radius: 0px 100px 0px 20px;
}
.about-texts {
  width: 48%;
}
.about-texts h2{
    margin-bottom: 20px;
}
.about-texts p{
    margin-bottom: 30px;
}
.about-texts ul{
    list-style: none;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}
.about-texts ul li{
    color: var(--heading-text-color);
    padding-left: 20px;
    border-left:1px solid var(--primary-color)
}



/* product section */

/* .em-product-section {
  background-color: #F1F1F1;
} */
.em-product-section-heading {
    margin-bottom: 50px;
}
.em-product-section-heading-texts {
  margin-right: 30px;
}
.em-product-section-heading h3{
    margin-bottom: 15px;
}
.em-product-section-heading button{
    white-space: nowrap;
}

.em-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.em-product-card {
  height: 100%;
  padding: 20px;
  background-color: var(--color-white);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;    /* , box-shadow 0.2s */
}

.em-product-card:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}

.em-product-card img {
  height: 200px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 20px;
}
.em-product-card h6{
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  margin-bottom: 10px;
}
.em-product-card p {
  border-bottom: 1px solid var(--light-border-color);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.em-product-card a{
  font-size: 16px;
  line-height: 24px;
}

/* industries section */

/* .em-services-section-wrapper{
  background-color: #f8f8f8;
} */
.em-services-subtitle {
  text-transform: uppercase;
  letter-spacing: 1px;
}
.em-services-subtitle-underline{
  margin-bottom: 10px;
}

.em-services-title {
  margin-bottom: 60px;
}

.em-services-title span {
  color: #ff3b3b;
}

.em-services-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  margin-bottom: 0 !important;
}

.em-services-cards-wrapper .slick-list {
  margin: 0 -10px;
}

.em-services-single-card {
  background: #fff;
  /* border-radius: 8px; */
  /* box-shadow: 0px 6px 20px rgba(0,0,0,0.08); */
  overflow: hidden;
  transition: 0.3s;
  margin: 0 10px;    /* for slick slider gap */
}

.em-services-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.em-services-card-content {
  padding: 18px;
  text-align: left;
}
.em-services-icon-box {
  background-color: #ff3b3b;
  padding: 10px;
  width: fit-content;
}
.em-services-icon-box img {
  width: 35px;
  height: 35px;
  /* background-color: #ff3b3b;
  padding: 10px; */
}

.em-services-card-content h4 {
  margin: 10px 0;
  font-weight: 600;
}

.em-services-card-link {
  font-size: 22px;
  text-decoration: none;
  transition: 0.3s;
}

.em-services-card-link:hover {
  color: #ff3b3b;
}

.em-services-container .slick-dots {
  display: flex !important;
  justify-content: center;
  position: unset !important;
  margin-top: 40px;
}

.em-services-container .slick-dots li {
  margin: 0 4px;
}

.em-custom-dot {
  width: 18px;
  height: 6px;
  background: #d6d6d6;
  display: block;
  border-radius: 3px;
  transition: 0.3s;
}

/* Active dot */
.slick-dots .slick-active .em-custom-dot {
  background: #ff3b3b;
  /* width: 30px; */
}


/* .em-services-dots {
  text-align: center;
  margin-top: 20px;
}

.em-dot {
  height: 8px;
  width: 8px;
  display: inline-block;
  background: #bbb;
  border-radius: 50%;
  margin: 0 4px;
}

.em-dot.active {
  background: #ff3b3b;
} */

/* why choose us section */
.em-whychoose2-section-wrapper {
  position: relative;
  z-index: 1;
}
.em-whychoose2-image-box,
.em-whychoose2-content{
  width: 48%;
}

.em-whychoose2-image-box img {
  display: block;
  width: 100%;
  object-fit: cover;
}

/* CONTENT */
.em-whychoose2-subtitle {
  text-transform: uppercase;
  letter-spacing: 1px;
}

.em-whychoose2-subtitle-underline {
  margin-bottom: 20px;
}

.em-whychoose2-title {
  margin-bottom: 25px;
}

.em-whychoose2-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.em-whychoose2-list li {
  margin: 10px 0;
  font-size: 20px;
  color: var(--heading-text-color);
}

.em-whychoose2-list li::before {
  content: "\f058";       
  font-family: "Font Awesome 6 Free"; 
  font-weight: 900;      
  font-size: 20px;
  color: #ff3b3b;
  margin-right: 20px;
}
.em-whychoose2-bottom-right-bg {
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
}


/* testimonial section */
.em-testi-section-wrapper {
  position: relative;
  z-index: 1;
}
.em-testi-top-right-bg {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
}
.em-testi-header-container {
  margin-bottom: 60px;
}

.em-testi-image-box {
  width: 48%;
}

.em-testi-image-box img {
  width: 100%;
}

.em-testi-content-box {
  width: 48%;
}

.em-testi-subtitle {
  color: var(--primary-color);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.em-testi-main-title {
  margin-bottom: 15px;
}

.em-testi-description {
  margin-bottom: 30px;
}

.em-testi-card-grid .slick-list {
  margin: 0 -10px;
}
.em-testi-card-grid .slick-arrow::before {
  color: black;
}

.em-testi-single-card {
  background: #f4f4f4;
  padding: 25px;
  margin: 0 10px;    /* for slick slider gap */
  border-radius: 4px;
}

.em-testi-card-header {
  display: flex;
  margin-bottom: 20px;
}

.em-testi-card-header img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 15px;
}

.em-testi-client-position {
  font-size: 16px;
}

.em-testi-card-text {
  background-color: #fff;
  padding: 20px;
  font-style: italic;
  min-height: 170px;
}


/* faq section */

.em-faq-section-wrapper {
  /* background: #f4f4f6; */
  position: relative;
  z-index: 1;
}

.em-faq-container.flex-row {
  align-items: flex-start;
}

/* LEFT SIDE */
.em-faq-left-box {
  width: 48%;
}

.em-faq-subtitle {
  color: var(--primary-color);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.em-faq-main-heading {
  margin-bottom: 15px;
}

.em-faq-description {
  margin-bottom: 30px;
}

.em-faq-image-box img {
  width: 100%;
  display: block;
}

/* RIGHT SIDE - ACCORDIONS */
.em-faq-right-box {
  width: 48%;
}

.em-faq-single-item {
  background: #f5f5f5;
  padding: 18px 20px;
  border-radius: 4px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.em-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--heading-text-color);
}

.em-faq-answer {
  font-size: 17px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
}

.em-faq-active .em-faq-answer {
  max-height: 1000px;
  opacity: 1;
  padding-top: 20px;
}

.em-faq-icon {
  font-size: 20px;
  color: var(--heading-text-color);
  font-weight: bold;
}
.em-faq-bottom-left-bg {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
 transform: rotateY(180deg);
}


/* contact section */

.contact-section {
  position: relative;
  z-index: 1;
}
.contact-section-top-left-bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}
.contact-texts,
.form-container {
  width: 48%;
}
/* .map-container iframe{
  width: 100%;
} */

.fs-form {
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #ccc;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}
.fs-button-group {
  text-align: center;
}
.fs-button-group button{
  background-color: #ff3b3b !important;
}

.contact-intro {
  margin-bottom: 40px;
}
.contact-intro h3{
  margin-bottom: 15px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap:20px;
  margin-bottom: 40px;
}
.contact-info p strong{
  color: var(--heading-text-color);
}


/* responsive css */
@media (max-width: 1200px) {

  /* full width banner section */
  .em-full-width-texts-wrapper.section-spacing {
    padding: 11% 5%; 
  }
  /* product section */

  .em-products-grid {
  grid-template-columns: repeat(3, 1fr);
}
}

@media (max-width: 770px) {

  /* full width banner section */

  .em-full-width-texts-wrapper.section-spacing {
  padding: 10% 6%;
}
.em-full-width-texts h1 {
    font-size: 40px;
    line-height: 48px;
}

    /* about us section */

  .about-image {
    width: 100%;
    margin-bottom: 30px;
  }

  .about-texts {
    width: 100%;
  }

  /* about industries section */

  .em-industrial-about-container {
    grid-template-columns: 1fr;
  }

  .em-industrial-about-image-bg {
    display: none;
  }

  /* product section */

  .em-product-section-heading.flex-row {
    align-items: flex-start;
  }
  .em-product-section-heading-texts {
  margin-bottom: 30px;
}
  .em-products-grid {
  grid-template-columns: repeat(2, 1fr);
}

  /* why choose us section */

.em-whychoose2-image-box,
.em-whychoose2-content{
  width: 100%;
}
.em-whychoose2-image-box{
  margin-bottom: 30px;
}
.em-whychoose2-list li {
  font-size: 18px;
}

/* testimonial section */

.em-testi-image-box,
.em-testi-content-box {
  width: 100%;
}
.em-testi-image-box {
  margin-bottom: 30px;
}

/* faq section */

.em-faq-left-box {
  width: 100%;
  margin-bottom: 30px;
}
.em-faq-right-box {
  width: 100%;
}

/* contact section */

.contact-texts,
.map-container {
  width: 100%;
}
.contact-texts {
  margin-bottom: 40px;
}
}  

@media (max-width: 425px) {

  /* full width banner section */
  .em-full-width-texts-wrapper.section-spacing {
  padding: 10% 5%;
}
.em-full-width-texts h1 {
    font-size: 32px;
    line-height: 40px;
}

/* industrial about section */

.em-industrial-about-heading {
  margin-left: 40px;
  margin-bottom: 40px;
}

  /* about section */
  
  .about-texts ul{
    font-size: 18px;
}

 /* product section */

  .em-products-grid {
  grid-template-columns: repeat(1, 1fr);
}

}  


@media (max-width:500px) {
  .em-whychoose2-bottom-right-bg {
  width: 100%;
}
  .em-testi-top-right-bg {
  width: 100%;
}
  .em-faq-bottom-left-bg {
  width: 100%;
}
  .contact-section-top-left-bg {
  width: 100%;
}
}