/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: #030303;
}

/* Section Wrapper */
.why-ntm {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  position: relative;
}

/* Title */
.why-ntm__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;           
  font-style: normal;         
  font-size: 36px;
  line-height: 130%;          
  letter-spacing: 0;          
  color: #030303;
  margin-bottom: 15px;
}


/* Description */
.why-ntm__desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;   
  font-style: normal;
  font-size: 16px;
  line-height: 150%;  
  letter-spacing: 0;
  text-align: center;
  color: #030303;
  max-width: 836px;        
  margin: 0 auto 30px;     
}


/* Features container */
.why-ntm__features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

/* Base feature style */
.why-ntm__feature {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;       
  font-style: normal;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  text-align: center;
  border: 1px solid #e74c3c;
  color: #030303;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  box-sizing: border-box;
  padding: 0 20px;
}

.why-ntm__feature::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("images/chek.png") no-repeat center center;
  background-size: contain;
}

/* Individual feature widths */
.why-ntm__feature--client {
  width: 272px;
}

.why-ntm__feature--support {
  width: 197px;
}

.why-ntm__feature--expertise {
  width: 197px;
}

.why-ntm__feature--innovation {
  width: 205px;
}

/* Awards */
.why-ntm__awards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 40px;
}

/* Each award */
.why-ntm__award {
  width: 303px;  
  height: 303px;  
  object-fit: contain; 
}


/* CTA Button */
.why-ntm__cta {
  margin-top: 20px;
  text-align: center; 
}

/* CTA button */
.why-ntm__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 198px;         
  height: 51px;         
  background: #e74c3c;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;     
  font-style: normal;
  font-size: 16px;    
  line-height: 100%;
  letter-spacing: 0;
  border-radius: 10px;   
  text-decoration: none;
  transition: background 0.3s ease;
  cursor: pointer;
}

/* Hover state */
.why-ntm__button:hover {
  background: #c0392b;
}
