.section-heading {
  color: #1a8085;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 15px;
}

.section-subtext {
  font-size: 16px;
  color: #666;
  margin-bottom: 0;
}

.capability-box {
  border: 2px solid #1a8085;
  border-radius: 8px;
  background-color: #fff;
  color: #1a8085;
  font-weight: 600;
  text-align: center;
  padding: 15px 20px;
  margin-bottom: 20px;
  box-shadow: 0 3px 8px rgba(26, 128, 133, 0.08);
  transition: all 0.3s ease-in-out;
}

.capability-box:hover {
  background-color: #1a8085;
  color: #fff;
  box-shadow: 0 6px 15px rgba(26, 128, 133, 0.2);
}

.section-note {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.section-heading {
  color: #1a8085;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 15px;
}

.section-subtext {
  font-size: 16px;
  color: #666;
  margin-bottom: 0;
}

.industry-box {
  border: 2px solid #1a8085;
  border-radius: 8px;
  background-color: #fff;
  color: #1a8085;
  font-weight: 600;
  text-align: center;
  padding: 15px 20px;
  margin-bottom: 20px;
  box-shadow: 0 3px 8px rgba(26, 128, 133, 0.08);
  transition: all 0.3s ease-in-out;
}

.industry-box:hover {
  background-color: #1a8085;
  color: #fff;
  box-shadow: 0 6px 15px rgba(26, 128, 133, 0.2);
}

.section-heading {
  color: #1a8085;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 15px;
}

.section-subtext {
  font-size: 16px;
  color: #666;
}

.industry-item {
  margin-bottom: 40px;
  transition: transform 0.3s ease;
}

.industry-item:hover {
  transform: translateY(-5px);
}

.industry-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: #1a8085;
  color: #fff;
  margin: 0 auto 15px;
  font-size: 24px;
}

.industry-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a8085;
}


.why-choose-us {
    background-color: #f9f9f9;
    padding: 50px 0;
  }

  .why-choose-us p {
    padding: 10px;
    transition: all 0.3s ease;
    border-radius: 5px;
  }

  .why-choose-us p:hover {
    background-color: #e0f7f8;
    transform: scale(1.02);
    cursor: pointer;
  }

  .why-choose-us strong {
    color: #1a8085;
  }

  .contact-section {
    background-color: #f4fdfd;
    padding: 50px 0;
    color: #333;
  }

  .contact-section h2 {
    color: #1a8085;
    font-weight: bold;
    margin-bottom: 30px;
  }

  .contact-section .contact-buttons .btn {
    background-color: #1a8085;
    color: #fff;
    margin: 10px 10px;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    transition: background 0.3s ease;
    font-size: 14px;
    display: inline-block;
    text-transform: none;
  }

  .contact-section .contact-buttons .btn:hover {
    background-color: #16696e;
    transform: scale(1.05);
  }

  .contact-section .btn i {
    margin-right: 8px;
  }


  /* about section first part */
 .about-section {
  padding: 80px 0;
  background-color: #fff;
}

.about-grid {
  position: relative;
  width: 360px; /* increased container size */
  height: 360px;
  margin: 0 auto;
}

.diamond {
  width: 130px;
  height: 130px;
  overflow: hidden;
  position: absolute;
  transform: rotate(45deg);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.diamond img {
  width: 100%;
  height: 100%;
  transform: rotate(-45deg);
  object-fit: cover;
}

.diamond.top {
  top: 0;
  left: 115px;
}

.diamond.left {
  top: 115px;
  left: 0;
}

.diamond.right {
  top: 115px;
  left: 230px;
}

.diamond.bottom {
  top: 230px;
  left: 115px;
}

.center-icon {
  width: 130px;
  height: 130px;
  background-color: #1a8085;
  position: absolute;
  top: 115px;
  left: 115px;
  border-radius: 10px;
  z-index: 2;
  transform: rotate(45deg);
  transition: all 0.6s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-icon img {
  width: 45px;
  height: 45px;
  transform: rotate(-45deg);
}

.about-grid:hover .center-icon {
  transform: rotate(405deg);
}

.badge-custom {
  background-color: #1a8085;
  color: white;
  padding: 6px 15px;
  font-size: 14px;
  border-radius: 4px;
  display: inline-block;
  margin: 20px 0;
}

.about-right h3 {
  color: #1a8085;
  font-weight: bold;
}

.about-right p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

.about-link {
  text-decoration: none;
  font-weight: bold;
  color: #1a8085;
  display: inline-block;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.about-link:hover {
  text-decoration: underline;
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .about-grid {
    transform: scale(0.9);
  }
}


  /* about page banner start */

 .page-banner {
  background-color: #1a8085; /* Background color */
  height: 300px;
  text-align: center;
  color: white;
  position: relative;
  display: flex;
  justify-content: center; /* horizontal center */
  align-items: center;     /* vertical center */
  flex-direction: column;  /* keep content stacked */
}

  .page-banner h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
  }

   .breadcrumb-strip {
    padding: 10px 0;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    background-color: #fff;
  }

  .breadcrumb-custom {
    margin: 0;
    padding-left: 15px;
    font-size: 14px;
    color: #333;
  }

  .breadcrumb-custom a {
    text-transform: uppercase;
    text-decoration: none;
    color: #5c7c84;
    font-weight: 500;
  }

  .breadcrumb-custom span {
    font-weight: bold;
    color: #000;
  }

  .breadcrumb-custom i {
    margin: 0 5px;
    color: #888;
  }

  /* 3rd part What We Do */

 
  .services-section {
    padding: 80px 0;
    background-color: #f7fafa;
  }

  .services-section h2 {
    color: #1a8085;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
  }

  .service-card {
    background: white;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
    margin-bottom: 30px;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }

  .service-card i {
    font-size: 36px;
    color: #1a8085;
    margin-bottom: 15px;
  }

  .service-card p {
    font-size: 15px;
    color: #555;
    font-weight: 500;
  }

  .what-desc {
    text-align: center;
    font-size: 15px;
    color: #444;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

/* 4th our infra structure  */

  .infra-section {
    padding: 80px 0;
    background: #ffffff;
  }

  .infra-section h2 {
    color: #1a8085;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
  }

  .infra-desc {
    font-size: 15px;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin: auto;
  }

  .infra-item {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
  }

  .infra-item:hover {
    background-color: #e7fafa;
  }

  .infra-item i {
    font-size: 22px;
    color: #1a8085;
    margin-right: 15px;
    min-width: 30px;
    text-align: center;
  }

  .infra-item p {
    margin: 0;
    font-size: 15px;
    color: #333;
  }


  /* 5th section why choose us  */

  .choose-section {
    padding: 80px 0;
    background: #f8fafa;
  }

  .choose-section h2 {
    text-align: center;
    color: #1a8085;
    font-weight: bold;
    margin-bottom: 50px;
  }

  .choose-card {
    background: white;
    padding: 25px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    height: 100%;
  }

  .choose-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

  .choose-card p {
    font-size: 15px;
    color: #444;
    margin: 0;
  }

  .choose-icon {
    color: #1a8085;
    font-size: 22px;
    margin-right: 10px;
  }

/* industri we seeve 6th section */


  .industries-section {
    background: #ffffff;
    padding: 80px 0;
  }

  .industries-section h2 {
    text-align: center;
    color: #1a8085;
    font-weight: bold;
    margin-bottom: 50px;
  }

  .industry-box {
    background: #f7f7f7;
    text-align: center;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    font-size: 15px;
    color: #333;
  }

  .industry-box:hover {
    transform: scale(1.05);
    background-color: #e9fafa;
    color: black;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  }



  /* lets connect 7th section */

  .connect-section {
    padding: 80px 0;
    background-color: #f0fafa;
  }

  .connect-section h5 {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #1a8085;
    margin-bottom: 30px;
  }

  .connect-section p {
    text-align: center;
    font-size: 15px;
    color: #444;
    max-width: 700px;
    margin: 0 auto 30px;
  }

  .contact-buttons {
    text-align: center;
  }

  .contact-buttons a {
    display: inline-block;
    background: #1a8085;
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    margin: 8px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .contact-buttons a:hover {
    background: #145f61;
    transform: translateY(-3px);
  }

  .contact-buttons i {
    margin-right: 8px;
  }


/* contact page  */
 .contact-section {
  padding: 100px 0;
  background-color: #f7fafa;
}

.contact-section h2 {
  text-align: center;
  font-weight: bold;
  color: #1a8085;
  margin-bottom: 40px;
}

.contact-box {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ✅ NEW CLASS replacing equal-heightss */
@media (min-width: 768px) {
  .contact-column {
    height: 100%;
    min-height: 580px;
  }
}

.contact-info i {
  color: #1a8085;
  margin-right: 10px;
}

.contact-info p {
  font-size: 15px;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  border-radius: 0;
  box-shadow: none;
  border-color: #ddd;
}

.contact-form .btn-primary {
  background-color: #1a8085;
  border-color: #1a8085;
  border-radius: 30px;
  padding: 10px 25px;
  width: 100%;
}

.contact-form .btn-primary:hover {
  background-color: #145f61;
}

.map-responsive {
  position: relative;
  height: 500px; /* ✅ Fixed height so iframe shows inside the card */
  border-radius: 8px;
  overflow: hidden;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* prodcuts page  */

/* tools */
/* Image hover effect */
.tool-highlight img {
  transition: all 0.4s ease;
}

.tool-highlight img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Specification list hover */
/* === Section 1: Intro Image and Text === */
.tool-highlight {
  padding: 80px 0;
  background-color: #f7fafa;
}

.tool-highlight h2 {
  color: #1a8085;
  font-weight: bold;
}

.tool-highlight p {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.8;
}

.tool-highlight img {
  max-height: 350px;
  border: 4px solid #1a8085;
  border-radius: 8px;
  transition: all 0.4s ease;
}

.tool-highlight img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* === Section 2: Specifications === */
.tool-specs {
  padding: 60px 0;
  background-color: #ffffff;
}

.tool-specs h3 {
  color: #1a8085;
  font-weight: bold;
  margin-bottom: 40px;
}

.tool-specs li {
  transition: all 0.3s ease;
  padding: 10px 12px;
  border-left: 3px solid transparent;
  margin-bottom: 10px;
  background-color: #f9f9f9;
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.7;
}

.tool-specs li:hover {
  background-color: #e7f8f9;
  border-left: 3px solid #1a8085;
  color: #1a8085;
  cursor: default;
}

/* === Section 3: Final Summary === */
.tool-summary {
  padding: 60px 0;
  background-color: #f7fafa;
}

.tool-summary p {
  font-size: 16px;
  line-height: 1.8;
  transition: color 0.3s ease, transform 0.3s ease;
}

.tool-summary p:hover {
  color: #1a8085;
  transform: translateY(-3px);
}

/* === Responsive for Mobile === */
@media (max-width: 767px) {
  .tool-highlight .col-md-6 {
    margin-bottom: 30px;
    text-align: center;
  }
}






  




/* Enhanced design for heading and panel */
.section { margin: 40px 0; }
.section .panel { border-radius: 10px; background-color: #ffffff; box-shadow: 0 2px 8px rgba(0,0,0,0.08); border: none; }
.section h2 { color: #1a8085; font-size: 24px; font-weight: 700; margin: 0; padding: 15px; border-bottom: 2px solid #1a8085; border-radius: 10px 10px 0 0; background: #f4fdfd; }
.section .panel-body { padding: 20px; }
.section .panel-body p { margin-bottom: 15px; font-size: 15px; line-height: 1.6; }


