.hero {
  position: relative;
  width: auto;
  /* margin:  0 30px 10px 30px; */
  height: 90vh;
  background-image: url("../img/manage/management.png"); /* 🔥 same image */
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* dark to transparent gradient */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.45) 30%,
    rgba(0, 0, 0, 0.2) 55%,
    rgba(0, 0, 0, 0) 75%
  );
}

/* text */
.hero-content {
  position: relative;
  z-index: 2;
  padding-left: 80px;
  color: #fff;
}

.hero-content h1 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 6px;
}

.hero-content p {
  font-size: 17px;
  color: #e5e7eb;
}

.hero-content span {
  color: #f59e0b;
  font-weight: 600;
}

/* ✅ RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    height: 80vh;
    background-position: center;
    /* margin:  0 10px 10px 10px; */
  }

  .hero-content {
    padding-left: 24px;
  }

  .hero-content h1 {
    font-size: 28px;
  }
}

/* --------------------
   Management Section
-------------------- */
.management-section {
  width: 100%;
  padding-top: 60px;
  font-family: Arial, sans-serif;
}

/* --------------------
   Top Heading
-------------------- */
.management-heading {
  width: 100%;
  text-align: center;
  /* margin-bottom: 60px; */
}

.management-heading span {
  font-size: 18px;
  /* letter-spacing: 2px; */
  /* text-transform: uppercase; */
  font-weight: 600;
  color: var(--tertiary-color);
}



/* --------------------
   Manager Row
-------------------- */
.manager-row {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 40px 10%;
  flex-wrap: wrap;
}

.manager-row.white-bg {
  background: #ffffff;
}

.manager-row.grey-bg {
  background: #f3f3f3;
}

.manager-row.reverse {
  flex-direction: row-reverse;
}

/* --------------------
   Image (SIZE CONTROL)
-------------------- */
.manager-img {
  flex: 0 0 320px;  
  max-width: 320px;
  text-align: center;
}

.manager-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* --------------------
   Content
-------------------- */
.manager-content {
  flex: 1;
}

.manage-tag {
  /* display: inline-block; */
  font-size: 18px;
  font-weight: 600;
  color: var(--tertiary-color);
  margin-bottom: 12px;
  position: relative;
  padding-left: 40px;
}
.manage-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 2px;
  background: var(--tertiary-color);
  transform: translateY(-50%);
}

.manager-content h2 {
  font-size: 34px;
  margin-bottom: 15px;
  color: #111;
}

.manager-content .meta {
  font-size: 18px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: justify;
}

.manager-content p {
  font-size: 18px;
  line-height: 1.4;
  color: #333;
  text-align: justify;
}

/* --------------------
   Responsive
-------------------- */
@media (max-width: 992px) {
  .manager-row {
    padding: 40px 6%;
  }
  .manager-row.white-bg{
    gap: 10px;
  }

  .manager-row.grey-bg{
    gap: 10px;
  }

  .manager-img {
    flex: 0 0 260px;
    max-width: 360px;
  }
}

@media (max-width: 768px) {
  .manager-row {
    flex-direction: column !important;
    text-align: center;
    padding: 30px 5%;
  }
    .management-section{
    padding-top: 30px;
  }

  .manager-img {
    width: 100%;
    max-width: 360px;
    flex: 0 0 100%;
    margin-bottom: 15px;
  }

    .manager-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .manager-content h2 {
    font-size: 24px;
  }

  
  .manager-content .meta {
    font-size: 16px;
  }

  .manager-content p{
    font-size: 16px;
  }
}

@media (max-width: 480px) {

  .management-section{
    padding-top: 30px;
  }

  .manager-img {
    max-width: 360px;
  }

  .management-heading span {
    font-size: 19px;
  }
}


.what-we-do {
  padding: 80px 0;
  background: #fff;
}

.what-we-do .container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}
.section-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 2px;
  background: var(--tertiary-color);
  transform: translateY(-50%);
}

.section-tag {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: var(--tertiary-color);
  /* margin-bottom: 12px; */
  position: relative;
  padding-left: 40px;
}

.what-we-do h2 {
  font-size: 40px;
  margin: 10px 0 20px;
  color: #222;
  line-height: 1.2;
}

.accordion-item {
  margin-bottom: 10px;
}

.accordion-header {
  width: 100%;
  background: #4a4a4a;
  color: #fff;
  padding: 18px 22px;
  text-align: left;
  border: none;
  font-size: 17px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-header .icon {
  transition: transform 0.3s ease;
}

.accordion-item.active .icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #f5f5f5;
  transition: max-height 0.35s ease;
}

.accordion-content p {
  padding: 20px;
  font-size: 16px;
  text-align: justify;
  color: #444;
  line-height: 1.5;
}

.accordion-item.active .accordion-header {
  background: #f7941d;   /* orange (ya jo bhi chahiye) */
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .what-we-do h2 {
    font-size: 26px;
  }

  .accordion-header {
    font-size: 14px;
  }
}
