/* Products Section Styles */
.products-section {
  padding: 40px 40px;
  background: white;
}

.product-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.products-header {
  text-align: center;
  margin-bottom: 40px;
}

.products-subtitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: #292929;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.products-title {
  font-size: 32px;
  font-weight: 600;
  color: #292929;
  margin: 0;
  letter-spacing: -1px;
}

/* Products Grid - 2x3 Layout */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 40px;
  margin-top: 15px;
}

/* Product Card */
.product-card {
  background: white;
  border-radius: 16px;
  padding: 40px 35px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Product Icon */
.product-icon {
  margin-bottom: 25px;
  display: flex;
  gap: 15px;
  text-align: center;
}

.icon-circlee {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
}

.icon-circlee svg {
  width: 32px;
  height: 32px;
}

.product-icon-image {
  width: 50px;
  height: 50px;
}

/* Product Content */
.product-content {
  text-align: left;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  margin-top: 15px;
  font-size: 24px;
  font-weight: 600;
  color: #292929;
  margin-bottom: 15px;
  line-height: 1.3;
}

.product-description {
  font-size: 15px;
  line-height: 1.6;
  color: #6c7284;
  margin-bottom: 25px;
  text-align: justify;
  flex-grow: 1;
}

/* Product Button */
.product-btn {
  display: inline-block;
  background: transparent;
  color: #4790ff;
  border: 2px solid #4790ff;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  text-transform: capitalize;
  align-self: flex-end;
  margin: auto;
  margin-top: auto;
}

.product-btn:hover {
  background: #4790ff;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(79, 150, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 30px;
    margin-top: 0;
  }

  .products-title {
    font-size: 32px;
  }
}

@media (max-width: 900px) {
  .products-section {
    padding: 20px 0;
    background: white;
  }
  .product-container {
    padding: 0 16px;
  }

  .products-header {
    margin-bottom: 20px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 20px;
  }

  .products-title {
    font-size: 28px;
  }

  .product-card {
    padding: 30px 25px;
    min-height: 280px;
  }

  .product-title {
    font-size: 20px;
  }

  .product-description {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .products-section {
    padding: 20px 0;
    background: white;
  }
  .product-icon {
  margin-bottom: 10px;
  display: flex;
  gap: 15px;
  text-align: center;
}
  .products-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
  }
  .products-header {
    margin-bottom: 10px;
  }

  .product-container {
    padding: 0 16px;
  }

  .products-subtitle {
    font-size: 16px;
  }

  .products-title {
    font-size: 24px;
  }

  .product-card {
    padding: 25px 20px;
    min-height: 260px;
  }

  .icon-circlee {
    margin:auto 0;
    width: 35px;
    height: 35px;
  }

  .icon-circlee svg {
    width: 28px;
    height: 28px;
  }

  .products-subtitle {
    text-align: left;
  }
}
