  .why-choose-us {
      background: #fff;
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .why-choose-us h1 {
    text-align: center;
    font-size: 32px;
    color: #000;
    transition: color 0.3s ease; /* smooth effect */
    }

	.why-choose-us h2 {
      text-align: center;
      font-size: 18px;
      margin-bottom: 50px;
      color: #333;
    }
	
    .why-choose-us h1:hover {
    color: #065084; /* change to your brand color */
    }
    
    .features {
  display: grid;
  grid-template-columns: 1fr; /* default: mobile, 1 column */
  gap: 30px;
}

    .feature {
      background: #e6f9ff; 
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
      text-align: left;
      transition: transform 0.3s ease;
    }

    .feature:hover {
      transform: translateY(-5px);
	}
	.feature:hover {
	    background: #CAE8BD; 
	  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* optional: gives a subtle elevation */
	}

    .feature i {
      font-size: 32px;
      color: #046a6d;
      margin-bottom: 15px;
    }

    .feature h4 {
      font-size: 20px;
      margin: 10px 0;
      color: #333;
      opacity: 0; /* Required for animation */
    }

    .feature p {
      font-size: 14px;
      color: #555;
    }

    @media(max-width: 600px) {
      .why-choose-us h2 {
        font-size: 24px;
      }
    }
    
    @media (min-width: 600px) {
  .features {
    grid-template-columns: repeat(2, 1fr); /* tablet: 2 columns */
  }
}

@media (min-width: 1024px) {
  .features {
    grid-template-columns: repeat(4, 1fr); /* laptop & desktop: 4 columns */
  }
}