/* ============================================= */
/* CARE PLATFORM — Stylesheet                    */
/* ============================================= */

/* --- Hero Section - Left/Right Layout --- */
.care-platform-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.care-platform-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.care-platform-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.care-platform-hero-left img {
  width: 50%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.care-platform-hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.care-platform-hero-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 20px;
}

.care-platform-hero-subtitle {
  font-size: 18px;
  color: #ffffff !important;
  line-height: 1.7;
  text-align: justify;
  max-width: 600px;
  margin-bottom: 30px;
}

/* --- Book Demo Button - Same as Homepage --- */
.care-platform-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* --- Row Sections - Same as H-Man --- */
.care-platform-row {
  padding: 80px 0;
}

.care-platform-row .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.care-platform-row .two-col .col p {
  text-align: justify;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

.care-platform-row .two-col .col .section-title {
  font-size: 36px;
  font-weight: 600;
  color: #142D47;
  line-height: 1.3;
  margin-bottom: 24px;
  font-family: 'Poppins', sans-serif;
}

.care-platform-row .two-col .col img {
  width: 100%;
  height: auto;
  border-radius: 0;
  border: none;
}

/* --- Light Background Row --- */
.bg-light .care-platform-row .two-col .col p {
  color: #555;
}

/* --- No Border Utility --- */
.no-border {
  border: none !important;
  border-radius: 0 !important;
  outline: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .care-platform-hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .care-platform-hero-left img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  }

  .care-platform-hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .care-platform-hero-title {
    font-size: 32px;
  }
  
  .care-platform-hero-subtitle {
    font-size: 16px;
    max-width: 500px;
  }
  
  .care-platform-row .two-col {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .care-platform-hero {
    min-height: 60vh;
    padding: 60px 0 40px;
    margin-top: 56px;
  }
  
  .care-platform-hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .care-platform-hero-left {
    text-align: center;
  }
  
  .care-platform-hero-right {
    text-align: center;
  }
  
  .care-platform-hero-subtitle {
    max-width: 100%;
    text-align: justify;
  }
  
  .care-platform-hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .care-platform-hero-left img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  }

  .care-platform-hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .care-platform-hero-title {
    font-size: 26px;
  }
  
  .care-platform-hero-subtitle {
    font-size: 16px;
    margin-bottom: 0;
  }
  
  .care-platform-row {
    padding: 50px 0;
  }
  
  .care-platform-row .two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .care-platform-row .two-col .col .section-title {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .care-platform-hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .care-platform-hero-left img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  }

  .care-platform-hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .care-platform-hero-title {
    font-size: 22px;
  }
  
  .care-platform-hero-subtitle {
    font-size: 15px;
  }
  
  .care-platform-row .two-col .col .section-title {
    font-size: 22px;
  }
}