.about-left {
  position: relative;
}
.about-shape-img {
  position: absolute;
  left: -120px;
  bottom: -16px;
}
.about-right {
}

.hr-main-heading {
  font-size: 60px;
  font-family: var(--font-03);
  line-height: 1;
  font-weight: 700;
  color: #000;
  margin-bottom: 24px;
}
.hr-text {
  font-size: 21px;
  line-height: 1.4;
  color: #000;
  font-family: var(--font-02);
}

.about-btn {
  background: #06b453;
  border: none;
  padding: 18px 44px;
  transition: .3s ease-in-out;
  margin-top: 30px !important;
  display: inline-block;
}
.hr-btn.btn-main.about-btn:hover {
  background: #000;
  color: #fff;
  transition: .3s ease-in-out;
}
.hr-btn.btn-main.about-btn::after {
  display: none;
}




.about-shape-img-second {
  position: absolute;
  right: 30px;
  bottom: 0;
}
.about-main-img-second {
  text-align: right;
}
.about-list {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}
.about-list li {
  list-style: none;
  font-weight: 600;
  font-size: 20px;
  font-family: var(--font-02);
  position: relative;
  color: #000;
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.about-main-img img {
  width: 100%;
}
@media(max-width:1400px){
  .hr-main-heading {
  font-size: 70px;
}
.hr-text {
  font-size: 20px;
}
.about-list li {
  font-size: 18px;
}
}
@media(max-width:1200px){
  .hr-main-heading {
  font-size: 52px;
}
}
@media(max-width:991px){
  .hr-main-heading {
  font-size: 42px;
  margin-bottom: 10px;
}
.hr-text {
  font-size: 18px;
  margin-bottom: 10px;
}
.about-btn {
  margin-top: 10px !important;
  padding: 8px 24px;
}
.about-list li {
  font-size: 16px;
}
.about-list {
  row-gap: 10px;
}
}
@media(max-width:768px){
  .home-about-inner .row {
  row-gap: 30px;
}
.home-about-second .row {
  flex-direction: column-reverse;
}
}

@media(max-width:576px){
  .hr-main-heading {
  font-size: 28px;
  margin-bottom: 10px;
}
.hr-text {
  font-size: 16px;
  margin-bottom: 10px;
}
}
/* --- MISSION & VISION CUSTOM THEME STYLES --- */
.hr-mission-vision-section {
    padding: 100px 0;
    background-color: #f8f9f6; /* Off-white background matching image_d982ad.jpg */
}

/* Left Column Styling */
.mission-left-content {
    padding-right: 20px;
}
.mission-left-content .section-main-title {
    font-size: 60px;
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: var(--font-03);
}
.mission-left-content .section-main-title span {
    color: #00c874; /* Signature Brand Green */
}
.mission-left-content .section-sub-text {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
}

/* Right Column Card Container */
.mission-right-cards {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}

/* Elegant Component Cards */
.mv-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    display: flex;
    align-items: flex-start;
    column-gap: 25px;
    box-shadow: rgba(149, 157, 165, 0.05) 0px 8px 24px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mv-card:hover {
    transform: translateY(-3px);
    box-shadow: rgba(149, 157, 165, 0.1) 0px 12px 30px;
}

/* Green Iconic Accents */
.mv-icon-box {
    background: rgba(0, 200, 116, 0.08);
    color: #00c874;
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* Typography Inside Cards */
.mv-text-box h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 10px;
    font-family: var(--font-03);
}
.mv-text-box p {
    font-size: 21px;
    line-height: 1.4;
    margin: 0;
    font-family: var(--font-02);
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 991px) {
    .hr-mission-vision-section {
        padding: 70px 0;
    }
    .mission-left-content .section-main-title {
        font-size: 32px;
    }
    .mv-card {
        padding: 25px;
    }
}
@media (max-width: 576px) {
    .mv-card {
        flex-direction: column;
        row-gap: 15px;
    }
    .mv-icon-box {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 18px;
    }
}