/* START = HERO Section CSS */
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.text-content {
  flex: 1;
  max-width: 600px;
  text-align: left;
  padding: 20px;
}

.text-content h1 {
  color: black;
  font-size: 1.9rem;
}

.text-content h1 span {
  color: var(--primary-color);
}

.text-content p {
  margin: 10px 0;
  font-size: 1rem;
}

.contact-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  font-size: 1rem;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.contact-btn:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.image-box {
  flex: 1;
  max-width: 500px;
  text-align: right;
}

.Heroimage-box img {
  width: 100%;
  max-width: 500px;
  height: auto;
}
/* END = HERO Section CSS */

/* START = Why choose NNT CSS*/
/* Container for Image and Content */
.why-choose-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
  max-width: 1200px;
}

.image-box {
  flex: 1;
  max-width: 500px;
  text-align: center;
}

.image-box img {
  width: 70%;
  max-width: 500px;
  height: auto;
}

.why-choose {
  flex: 1;
  max-width: 600px;
  background: white;
  box-shadow: 5px 5px 15px rgba(106, 90, 205, 0.2);
  border-radius: 10px;
  padding: 20px;
  text-align: left;
}

.why-choose h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
}

.why-choose p {
  font-size: 1rem;
  margin: 10px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .why-choose-container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .why-choose {
    text-align: center;
  }
}
/* END = Why choose NNT CSS*/

/* Industries css Strat */

.industries {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  margin-bottom: -15px;
}

.industries h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.industries p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 30px;
}

/* Industry Grid */
.industry-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Industry Card */
.industry-card {
  background: white;
  padding: 20px;
  width: 250px;
  border-radius: 10px;
  box-shadow: 2px 2px 15px rgba(106, 0, 255, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.industry-card:hover {
  transform: scale(1.05);
  box-shadow: 2px 2px 15px rgba(106, 0, 255, 0.3);
}

/* Icon Styling */
.icon-container {
  width: 80px; /* Fixed size */
  height: 80px; /* Fixed size */
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-container img {
  width: 100%;
  height: auto;
  max-height: 80px;
}

/* Title */
.industry-card h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1180px) {
  .industry-card {
    width: 45%;
  }
}

@media (max-width: 890px) {
  .industry-card {
    width: 48%;
  }
}

@media (max-width: 620px) {
  .industry-card {
    width: 100%;
  }
}

/* Industries css End */

/* Expertise in Industries Section Start From Here */
.IndustriesContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  text-align: left;
}

.center-btn {
  display: inline-block;
  padding: 10px 15px;
  border: 2px solid var(--primary-color);
  border-radius: 5px;
  background: none;
  color: var(--primary-color);
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 30px;
}
.center-btn:hover {
  background: var(--primary-color);
  color: white;
}

.box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin-top: 10px;
}

.box {
  background-color: #e6e0ff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 5px 5px 10px rgba(127, 80, 255, 0.5);
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.box h2 {
  color: var(--primary-color);
  font-size: 20px;
}

.box p {
  margin: 10px 0;
}

.box button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 15px;
  border: 2px solid #6100ff;
  border-radius: 5px;
  background: none;
  color: var(--primary-color);
  font-weight: bold;
  cursor: pointer;
}
.box button a {
  text-decoration: none;
  color: var(--primary-color);
}
.box button a:hover {
  color: white;
}
.box button:hover {
  background: #6100ff;
  color: white;
}

/* Responsive Design */
/* Responsive Design */
@media (max-width: 768px) {
  .box-container {
    flex-direction: column;
    align-items: center;
  }

  .box {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .center-btn {
    width: 90%;
    text-align: center;
  }

  .box {
    width: 100%;
  }
}

/* Expertise in Industries Section End Here */

/*  */
/* .suggestions {
  margin-top: 5px;
  display: flex;
  flex-direction: column;
} */

