/* ==========================================================================
   CSDCI - Industry Partners Page Styles (Clean Raw CSS)
   ========================================================================== */

/* Main container */
.csdci-ip-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #ffffff;
  font-family: Raleway, Arial, sans-serif;
  color: #333333;
}

.csdci-ip-intro {
  margin-bottom: 45px;
}

.csdci-ip-title {
  font-family: 'Raleway', Georgia, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #4e2300;
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #6dbfe8;
  text-align: center;
}

.csdci-ip-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #444444;
  margin-bottom: 25px;
  text-align: justify;
}

/* Benefits Grid */
.csdci-ip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.csdci-ip-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.csdci-ip-card:hover {
  border-color: #6dbfe8;
  box-shadow: 0 6px 18px rgba(109, 191, 232, 0.15);
}

.csdci-ip-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #6dbfe8;
  border-radius: 8px 8px 0 0;
  transition: background-color 0.3s ease;
}

.csdci-ip-card:hover::before {
  background-color: #4e2300;
}

.csdci-ip-card-title {
  font-family: 'Raleway', Georgia, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #4e2300;
  margin-top: 5px;
  margin-bottom: 12px;
}

.csdci-ip-card-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: #555555;
  text-align: justify;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
  .csdci-ip-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .csdci-ip-container {
    padding: 40px 15px;
  }
}
