    /* Invest in Fujairah Section */
    .invest-section {
      background: fffe4;
      padding: 80px 0;
    }

    .section-title {
      font-size: 2.4rem;
      font-weight: 550;
      margin-bottom: 2rem;
      letter-spacing: -0.02em;
      font-family: 'Inter', 'Neue Haas Grotesk', sans-serif;
      color: #1A1C1E;
    }

    /* Hero Image */
    .invest-hero-image {
      width: 100%;
      height: auto;
      object-fit: cover;
      filter: brightness(0.92) contrast(1.05);
      margin-bottom: 3rem;
    }

    /* Intro Text */
    .invest-intro {
      max-width: 900px;
      margin: 0 auto 3rem auto;
      text-align: center;
    }

    .invest-intro h3 {
      font-size: 1.6rem;
      font-weight: 500;
      color: #1E3A2F;
      margin-bottom: 1.5rem;
      letter-spacing: -0.01em;
    }

    .invest-intro p {
      font-size: 1rem;
      line-height: 1.65;
      color: #3F4247;
      margin-bottom: 1rem;
    }

    /* Section Heading */
    .section-heading {
      text-align: center;
      margin-bottom: 2.5rem;
    }

    .section-heading h4 {
      font-size: 1.5rem;
      font-weight: 550;
      color: #1A1C1E;
      margin-bottom: 0.75rem;
    }

    .section-heading .heading-underline {
      width: 60px;
      height: 2px;
      background-color: #1E3A2F;
      margin: 0 auto;
    }

    /* Advantage Cards */
    .advantage-card {
  background: #fffcf6;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  padding: 1.8rem;
  border: 1px solid #EFEDE7;
  transition: all 0.25s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
    }

    /* Top-Left L Shape */
#invest-fujairah .advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 3px;
background: linear-gradient(
  90deg,
  #FFE8A3 0%,
  #FFD774 25%,
  #FFB800 50%,
  #B8860B 75%,
  #8C6A00 100%
);
}

#invest-fujairah .advantage-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 40px;
  background: linear-gradient(
  135deg,
  #FFF5CC 0%,
  #FFD774 20%,
  #FFC300 40%,
  #D4A017 60%,
  #A97100 80%,
  #FFF5CC 100%
);
}

/* Bottom-Right L Shape */
#invest-fujairah .advantage-card .br-l {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(
  135deg,
  #FFF5CC 0%,
  #FFD774 20%,
  #FFC300 40%,
  #D4A017 60%,
  #a97100d5 80%,
  #FFF5CC 100%
);
}

#invest-fujairah .advantage-card .br-v {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 3px;
  height: 40px;
  background: linear-gradient(
  135deg,
  #FFF5CC 0%,
  #FFD774 20%,
  #FFC300 40%,
  #D4A017 60%,
  #A97100 80%,
  #FFF5CC 100%
);
}

    .advantage-card:hover {
  border-color: #C2BCAD;
  transform: translateY(-10px);
  background: #fffcf6;
    }

    .advantage-icon {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: #1E3A2F;
    }

    .advantage-card h5 {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
      color: #1A1C1E;
    }

    .advantage-card p {
      font-size: 0.85rem;
      color: #4F5359;
      line-height: 1.5;
      margin-bottom: 0;
    }

/* Importance Box */
.importance-box {
  background: #fffcf6;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 
              0 10px 10px -5px rgba(0, 0, 0, 0.04);
  padding: 2rem;
  margin: 2rem 0;
  position: relative;           /* Important */
  overflow: hidden;
  border-left: 4px solid transparent;   /* Original solid border ko transparent kar diya */
}

/* Gradient Left Border */
.importance-box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    135deg,
    #FFF5CC 10%,
    #FFD774 20%,
    #FFC300 40%,
    #D4A017 60%,
    #A97100 80%,
    #FFF5CC 100%
  );
  box-shadow: 0 0 10px rgba(255, 195, 0, 0.6); /* Nice glow effect */
}

    .importance-box p {
      font-size: 0.95rem;
      line-height: 1.6;
      color: #3F4247;
      margin-bottom: 0;
    }

    /* Quote Box */
    .quote-box {
      background: #1E3A2F;
      padding: 2rem;
      text-align: center;
      margin-top: 2rem;
    }

    .quote-box p {
      font-size: 1rem;
      font-style: italic;
      color: #C2BCAD;
      margin-bottom: 0.75rem;
      line-height: 1.6;
    }

    .quote-box .quote-author {
      font-size: 0.85rem;
      color: #FFFFFF;
      font-style: normal;
      letter-spacing: 0.5px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .invest-section {
        padding: 60px 0;
      }
      .section-title {
        font-size: 1.9rem;
        text-align: center;
      }
      .invest-intro h3 {
        font-size: 1.3rem;
      }
      .invest-intro p {
        font-size: 0.92rem;
      }
      .advantage-card {
        padding: 1.5rem;
      }
      .advantage-card h5 {
        font-size: 1rem;
      }
      .importance-box {
        padding: 1.5rem;
      }
      .quote-box {
        padding: 1.5rem;
      }
      .quote-box p {
        font-size: 0.92rem;
      }
    }