/*=========================================
        ABOUT HERO
=========================================*/

.about-hero {
  position: relative;

  min-height: 260px;

  display: flex;

  align-items: center;

  overflow: hidden;

  background: url("../images/about-banner.jpg") no-repeat;

  background-size: cover;

  background-position: 72% 25%;
  padding: 0 !important;
}

.about-hero-overlay {
  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      circle at left center,
      rgba(255, 248, 235, 0.92) 0%,
      rgba(255, 248, 235, 0.65) 35%,
      rgba(255, 248, 235, 0.18) 70%,
      rgba(255, 248, 235, 0) 100%
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.78) 0%,
      rgba(255, 255, 255, 0.45) 45%,
      rgba(255, 255, 255, 0.08) 75%,
      rgba(255, 255, 255, 0) 100%
    );
}

.about-hero-content {
  position: relative;

  z-index: 2;

  max-width: 620px;
}

.about-hero .container {
  position: relative;

  z-index: 2;
}

.breadcrumb {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 20px;

  font-size: 15px;

  color: #666;
}

.breadcrumb a {
  color: #c69214;

  font-weight: 600;
}

.hero-tag {
  display: inline-block;

  margin-bottom: 18px;

  padding: 10px 24px;

  border-radius: 50px;

  background: #c69214;

  color: #fff;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;
}

.about-hero h1 {
  max-width: 650px;

  font-size: 46px;

  line-height: 1.1;

  font-weight: 800;

  color: var(--secondary);

  margin-bottom: 10px;
}

.about-hero h1 span {
  color: #c69214;
}

.about-hero p {
  max-width: 520px;

  font-size: 16px;

  line-height: 1.8;

  color: #5f6c80;
}

/* Decorative Circle */

.about-hero::after {
  content: "";

  position: absolute;

  width: 420px;

  height: 420px;

  border-radius: 50%;

  right: -120px;

  top: -120px;

  background: rgba(198, 146, 20, 0.08);

  z-index: 1;
}

/* Mobile */

@media (max-width: 991px) {
  .about-hero {
    min-height: 220px;

    background-position: 68% 18%;
  }

  .about-hero h1 {
    font-size: 42px;
  }

  .about-hero p {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 200px;

    text-align: center;
    background-position: 62% center;
  }

  .about-hero-overlay {
    background: rgba(255, 255, 255, 0.82);
  }

  .about-hero-content {
    max-width: 100%;
  }

  .breadcrumb {
    justify-content: center;
  }

  .about-hero h1 {
    font-size: 34px;
  }

  .about-hero p {
    font-size: 16px;

    line-height: 1.7;
  }

  .hero-tag {
    font-size: 12px;

    padding: 9px 18px;
  }

  .about-hero::after {
    display: none;
  }
}
.about-hero-content {
  position: relative;

  z-index: 2;

  max-width: 600px;

  padding: 30px 0;

  opacity: 0;

  transform: translateY(40px);

  transition: 0.9s ease;
}

.about-hero-content.show {
  opacity: 1;

  transform: translateY(0);
}
.about-hero .hero-tag {
  display: inline-block;

  margin-bottom: 18px;

  padding: 10px 24px;

  border-radius: 50px;

  background: #c69214;

  color: #fff;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;
}
/*=========================================
        OUR STORY
=========================================*/

.about-story {
  padding: 100px 0;

  background: #fff;
}

.story-wrapper {
  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  gap: 70px;

  align-items: center;
}

.section-tag {
  display: inline-block;

  padding: 10px 24px;

  background: #c69214;

  color: #fff;

  border-radius: 50px;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;

  margin-bottom: 25px;
}

.story-content h2 {
  font-size: 52px;

  line-height: 1.1;

  color: #132544;

  margin-bottom: 30px;
}

.story-content h2 span {
  color: #c69214;
}

.story-content p {
  font-size: 17px;

  line-height: 1.9;

  color: #667085;

  margin-bottom: 24px;
  text-align: justify;
}

.story-image {
  overflow: hidden;

  border-radius: 26px;

  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.story-image img {
  width: 100%;

  display: block;

  transition: 0.5s;
}

.story-image:hover img {
  transform: scale(1.05);
}

.story-cards {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;

  margin-top: 25px;
}

.story-card {
  background: #faf8f3;

  padding: 30px;

  border-radius: 20px;

  transition: 0.35s;

  border: 1px solid rgba(198, 146, 20, 0.12);
}

.story-card:hover {
  transform: translateY(-8px);

  background: #fff;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.story-card h3 {
  color: #c69214;

  font-size: 28px;

  margin-bottom: 12px;
}

.story-card p {
  color: #5f6c80;

  line-height: 1.7;

  margin: 0;
}

/* Animation */

.story-content,
.story-image,
.story-card {
  opacity: 0;

  transform: translateY(60px);

  transition: 0.8s ease;
}

.story-content.show,
.story-image.show,
.story-card.show {
  opacity: 1;

  transform: translateY(0);
}

/* Responsive */

@media (max-width: 991px) {
  .story-wrapper {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .story-content {
    text-align: center;
  }

  .story-content h2 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .story-content h2 {
    font-size: 34px;
  }

  .story-content p {
    font-size: 16px;
  }

  .story-cards {
    grid-template-columns: 1fr;
  }
}
/*=========================================
        VISION & MISSION
=========================================*/

.vision-mission {
  padding: 100px 0;

  background: #faf8f3;
}

.vision-mission .section-title {
  max-width: 760px;

  margin: 0 auto 70px;

  text-align: center;
}

.vm-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 35px;
}

.vm-card {
  position: relative;

  background: #fff;

  border-radius: 28px;

  padding: 50px 40px;

  overflow: hidden;

  transition: 0.4s;

  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
}

.vm-card::before {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 6px;

  background: #c69214;
}

.vm-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.vm-icon {
  width: 82px;

  height: 82px;

  border-radius: 50%;

  background: #c69214;

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 34px;

  margin-bottom: 30px;
}

.vm-label {
  display: inline-block;

  font-size: 13px;

  letter-spacing: 2px;

  font-weight: 700;

  color: #c69214;

  margin-bottom: 12px;
}

.vm-card h3 {
  font-size: 34px;

  line-height: 1.2;

  color: #132544;

  margin-bottom: 20px;
}

.vm-card p {
  font-size: 17px;

  line-height: 1.9;

  color: #667085;
  text-align: justify;
}

.vm-card {
  opacity: 0;

  transform: translateY(60px);

  transition: 0.8s;
}

.vm-card.show {
  opacity: 1;

  transform: translateY(0);
}

/* Responsive */

@media (max-width: 991px) {
  .vm-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .vision-mission {
    padding: 80px 0;
  }

  .vm-card {
    padding: 35px 28px;
  }

  .vm-icon {
    width: 70px;

    height: 70px;

    font-size: 28px;
  }

  .vm-card h3 {
    font-size: 28px;
  }

  .vm-card p {
    font-size: 16px;
  }
}
/*=========================================
        WHY TRUST MIGARA CARE
=========================================*/

.trust {
  padding: 100px 0;

  background: #ffffff;
}

.trust .section-title {
  max-width: 760px;

  margin: 0 auto 70px;

  text-align: center;
}

.trust-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.trust-card {
  background: #fff;

  border-radius: 24px;

  padding: 40px 35px;

  text-align: center;

  border: 1px solid rgba(198, 146, 20, 0.12);

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);

  transition: 0.4s;

  opacity: 0;

  transform: translateY(50px);
}

.trust-card.show {
  opacity: 1;

  transform: translateY(0);
}

.trust-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.trust-icon {
  width: 85px;

  height: 85px;

  margin: 0 auto 25px;

  border-radius: 50%;

  background: #c69214;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #fff;

  font-size: 34px;

  transition: 0.35s;
}

.trust-card:hover .trust-icon {
  transform: rotate(8deg) scale(1.08);
}

.trust-card h3 {
  font-size: 24px;

  color: #132544;

  margin-bottom: 18px;
}

.trust-card p {
  color: #667085;

  line-height: 1.8;

  font-size: 16px;

  margin: 0;
}

/* Responsive */

@media (max-width: 991px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .trust {
    padding: 80px 0;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-card {
    padding: 35px 28px;
  }

  .trust-icon {
    width: 72px;

    height: 72px;

    font-size: 28px;
  }

  .trust-card h3 {
    font-size: 22px;
  }
}
/*=========================================
        ABOUT CTA
=========================================*/

.about-cta {
  padding: 0 0 60px 0;

  background: #ffffff;
}

.cta-box {
  position: relative;

  overflow: hidden;

  padding: 90px 80px;

  border-radius: 35px;

  background: linear-gradient(135deg, #fffdf8 0%, #fdf7eb 40%, #f8f1df 100%);

  text-align: center;

  color: #fff;
}

/* Gold Glow */

.cta-box::before {
  content: "";

  position: absolute;

  left: -250px;

  top: -150px;

  width: 650px;

  height: 650px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(198, 146, 20, 0.18),
    transparent 72%
  );
}

/* Decorative Circle */

.cta-box::after {
  content: "";

  position: absolute;

  right: -180px;

  bottom: -180px;

  width: 420px;

  height: 420px;

  border-radius: 50%;

  background: rgba(198, 146, 20, 0.08);
}

.cta-content {
  position: relative;

  z-index: 2;

  max-width: 760px;

  margin: auto;
}

.cta-content .sub-title {
  display: inline-block;

  margin-bottom: 20px;

  padding: 10px 24px;

  border-radius: 50px;

  background: #c69214;

  color: #fff;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;
}

.cta-content h2 {
  font-size: 56px;

  line-height: 1.15;

  color: #132544;
}

.cta-content h2 span {
  display: block;

  margin-top: 8px;

  color: #c69214;

  font-size: 56px;
}

.cta-content p {
  max-width: 640px;

  margin: 0 auto 40px;

  font-size: 18px;

  line-height: 1.9;

  color: #5f6c80;
}

.cta-buttons {
  display: flex;

  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;
}

.cta-buttons .btn {
  min-width: 210px;
}

.cta-buttons .btn-primary {
  background: #c69214;

  color: #fff;
}

.cta-buttons .btn-primary:hover {
  background: #b28112;
}

.cta-buttons .btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.45);

  color: #fff;

  background: var(--primary-dark);
}

.cta-buttons .btn-outline:hover {
  background: var(--primary-light);

  color: #132544;
}

/* Animation */

.cta-box {
  opacity: 0;

  transform: translateY(60px);

  transition: 0.8s ease;
}

.cta-box.show {
  opacity: 1;

  transform: translateY(0);
}

/* Responsive */

@media (max-width: 991px) {
  .cta-box {
    padding: 70px 40px;
  }

  .cta-content h2 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .about-cta {
    padding: 80px 0;
  }

  .cta-box {
    padding: 50px 30px;

    border-radius: 25px;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .cta-content p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}
