.fip-section {
  width: 100%;
  max-width: 1920px;
  margin: auto;
  font-family: "Montserrat", sans-serif;
  margin-top: -55px;
}

/* ===== TOP SPLIT SECTION ===== */

.fip-top {
  display: flex;
  width: 100%;
  min-height: 700px;
}

.fip-image {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.fip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* GRADIENT OVERLAY */
.fip-image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  pointer-events: none;

  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(245, 166, 35, 0.4) 40%,
    rgba(245, 166, 35, 0.8) 75%,
    #f5a623 100%
  );
}

/* RIGHT CONTENT */
.fip-content {
  width: 60%;
  padding: 80px 150px 0 0;
  background: linear-gradient(135deg, #f6a21a 0%, #f5a623 60%, #ef9e1d 100%);
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.fip-content h2 {
  font-size: 25px;
  margin-bottom: 25px;
  font-weight: 600;
  color: #000;
  font-family: "Rajdhani", sans-serif;
}

.fip-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
  color: #111;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

/* ===== BOTTOM FULL ORANGE ===== */

.fip-bottom {
  background: #f5a623;
  padding: 50px 150px;
  text-align: left;
}

.fip-bottom p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
  color: #111;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

/* READ BUTTON */
.intro-read-btn {
  text-align: center;
  margin: 40px 0;
}

.intro-read-btn button {
  padding: 8px 30px;
  border-radius: 30px;
  border: 1px solid #000;
  background: transparent;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.intro-read-btn button:hover {
  background: #000;
  color: #fff;
}

/* LOGOS */
.fip-logos {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.logo-box {
  background: #fff;
  border-radius: 12px;
}

.logo-box img {
  max-height: 90px;
}

/* ================= 1440px ================= */
@media (max-width: 1440px) {
  .fip-content {
    padding: 60px 100px 0 0;
  }

  .fip-bottom {
    padding: 50px 100px;
  }

  .fip-content p,
  .fip-bottom p {
    font-size: 15px;
  }
}

/* ================= 1024px ================= */
@media (max-width: 1024px) {
  .fip-top {
    min-height: auto;
  }

  .fip-image {
    width: 50%;
  }

  .fip-content {
    width: 50%;
    padding: 50px 60px 0 40px;
  }

  .fip-content h2 {
    font-size: 22px;
  }

  .fip-content p,
  .fip-bottom p {
    font-size: 14px;
  }

  .fip-bottom {
    padding: 40px 60px;
  }
}

/* ================= 768px ================= */
@media (max-width: 768px) {
  .fip-section {
    margin-top: 0;
  }
  .fip-top {
    flex-direction: column;
  }

  .fip-image {
    width: 100%;
    height: 400px;
  }

  .fip-image::after {
    width: 100%;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 30%,
      rgba(245, 166, 35, 0.6) 70%,
      #f5a623 100%
    );
  }

  .fip-content {
    width: 100%;
    padding: 50px 40px;
  }

  .fip-bottom {
    padding: 40px;
  }

  .fip-logos {
    flex-wrap: wrap;
    gap: 20px;
  }

  .logo-box {
    width: 45%;
    text-align: center;
  }
}

/* ================= MOBILE (480px) ================= */
@media (max-width: 480px) {
  .fip-image {
    height: 300px;
  }

  .fip-content {
    padding: 40px 20px;
  }

  .fip-content h2 {
    font-size: 20px;
  }

  .fip-content p,
  .fip-bottom p {
    font-size: 13px;
    line-height: 1.6;
  }

  .fip-bottom {
    padding: 30px 20px;
  }

  .intro-read-btn button {
    padding: 10px 30px;
    font-size: 13px;
  }

  .fip-logos {
    flex-direction: column;
    align-items: center;
  }

  .logo-box {
    width: 100%;
  }

  .logo-box img {
    max-height: 50px;
  }
}
