/* ============================================= */
/* H-MAN — Stylesheet                            */
/* ============================================= */

/* --- Hero Section - Centered (No Image per Instruction) --- */
.h-man-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.h-man-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;
}

.h-man-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.h-man-hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

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

.h-man-hero-title {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 20px;
}

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

/* --- Book Demo Button - Increased Width --- */

.h-man-hero-btn {
  /* padding uses btn-lg default - was 220px */
  font-size: 16px;
}

.h-man-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* --- Row Sections - Same as Homepage --- */
.h-man-row {
  padding: 80px 0;
}

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

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

.h-man-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;
}

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

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

/* --- Stats Section - Same as Homepage --- */
.bg-dark-blue .centered p {
  text-align: justify;
  font-size: 17px;
}

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

/* --- Section Text Alignment --- */
.section .two-col .col p {
  text-align: justify;
}

.section .two-col .col .section-title {
  text-align: left;
}

/* --- Responsive - Same as Homepage --- */
@media (max-width: 992px) {
  .h-man-hero-title {
    font-size: 32px;
  }
  
  .h-man-hero-subtitle {
    font-size: 16px;
    max-width: 500px;
  }
  
  .h-man-row .two-col {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .h-man-hero {
    min-height: 60vh;
    padding: 60px 0 40px;
    margin-top: 56px;
  }
  
  .h-man-hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .h-man-hero-left {
    text-align: center;
  }
  
  .h-man-hero-right {
    text-align: center;
  }
  
  .h-man-hero-left {
    text-align: center;
  }

.h-man-hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

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

  .h-man-hero-subtitle {
    max-width: 100%;
    text-align: justify;
    margin-bottom: 24px;
  }
  
  .h-man-hero-title {
    font-size: 26px;
  }
  
  .h-man-hero-subtitle {
    font-size: 16px;
    margin-bottom: 0;
  }
  
  .h-man-row {
    padding: 50px 0;
  }
  
  .h-man-row .two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .h-man-row .two-col .col .section-title {
    font-size: 26px;
  }
  
  .h-man-hero-btn {
    width: 100%;
    padding: 16px 32px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .h-man-hero-title {
    font-size: 22px;
  }
  
  .h-man-hero-subtitle {
    font-size: 15px;
  }
  

  
  .h-man-row .two-col .col .section-title {
    font-size: 22px;
  }
  
  .h-man-hero-btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
  }
}