/* Start custom CSS for html, class: .elementor-element-4d358e8 */.ps-partners-section {
  padding: 80px 20px;
  background-color: #ffffff; 
  font-family: 'Roboto', sans-serif; 
}

.ps-partners-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ps-partners-header {
  text-align: center;
  margin-bottom: 60px;
}

.ps-partners-header h2 {
  color: #32373c; 
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Roboto Slab', serif; 
}

.ps-partners-header p {
  color: #666666;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.ps-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.ps-partner-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  border-bottom: 4px solid transparent;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ps-partner-card:hover {
  transform: translateY(-8px);
  border-bottom-color: #0693e3; 
  box-shadow: 0 20px 40px rgba(6, 147, 227, 0.12);
}

.ps-partner-logo {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 30px;
}

/* Link tag er jonno notun CSS jate logo click area thik thake */
.ps-partner-logo a {
  display: flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
}

.ps-partner-logo img {
  max-height: 100%;
  max-width: 200px;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.ps-partner-logo a:hover img {
  opacity: 0.8; /* Hover korle logo te halka effect asbe */
}

.ps-partner-role {
  color: #0693e3; 
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  display: inline-block;
}

.ps-partner-card h3 {
  color: #32373c;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: 'Roboto Slab', serif;
}

.ps-partner-card p {
  color: #555555;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0;
  flex-grow: 1;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .ps-partners-grid {
    grid-template-columns: 1fr;
  }
  .ps-partners-header h2 {
    font-size: 32px;
  }
  .ps-partners-section {
    padding: 60px 15px;
  }
}/* End custom CSS */