/* .home-about-h2{
    text-align: start;
    font-size: 30px;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.home-about-p{
    font-size: 18px;
    justify-content: start;
    line-height: 1.7;
    float: inline-start;
    text-align: left;
    letter-spacing: 1px;
}
.home-about-img{
    height: 300px;
    width: 100%;
    border-radius: 20px;
} */




/* Base Section Styling */
.home-about-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

/* Badge */
.home-about-badge {
  color: #ff5722;
  background: rgba(255, 87, 34, 0.08);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Heading */
.home-about-h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: #0b132b;
  letter-spacing: -0.5px;
}

.highlight-text {
  color: #ff5722;
}

/* Cards Wrapper */
.about-content-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Quote Box */
.about-quote-box {
  background: #fff3f0;
  border-left: 4px solid #ff5722;
  padding: 12px 16px;
  border-radius: 0 12px 12px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quote-icon {
  color: #ff5722;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.quote-text {
  color: #1e293b;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Paragraphs */
.home-about-p {
  font-size: 0.925rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 12px;
}

.highlight-p {
  color: #0b132b;
  font-style: italic;
  font-weight: 600;
}

.home-about-callout {
  color: #ff5722;
  font-size: 0.95rem;
  margin-top: 4px;
}

/* Impact List */
.impact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: #334155;
}

.impact-icon {
  color: #ff5722;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Center Image Container */
.home-about-img-container {
  position: relative;
  border-radius: 24px;
  padding: 8px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  max-width: 400px;
  /* max-height: 500px; */
}

.home-about-img {
  width: 100%;
  height: 400px;
  max-height: 480px;
  object-fit: cover;
  border-radius: 18px;
}

/* Floating Badge */
.about-floating-card {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 10px 18px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
  white-space: nowrap;
}

.floating-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 87, 34, 0.1);
  color: #ff5722;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* Action Buttons */
.about-btn-primary {
  background: #ff5722;
  color: #ffffff;
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 18px rgba(255, 87, 34, 0.25);
  transition: all 0.3s ease;
  cursor: pointer;
}

.about-btn-primary:hover {
  background: #e04818;
  transform: translateY(-2px);
}

.about-btn-outline {
  background: transparent;
  color: #0b132b;
  border: 2px solid #cbd5e1;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.about-btn-outline:hover {
  border-color: #ff5722;
  color: #ff5722;
  transform: translateY(-2px);
}

/* Responsive Stack for Mobile */
@media (max-width: 991px) {
  .about-content-card {
    padding: 20px;
  }

  .home-about-img-container {
    max-width: 100%;
  }

  .about-floating-card {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 15px;
    display: inline-flex !important;
  }
}