.important-links-section {
    position: relative;
    color: white;


    
  
  background-image: url('../../../assets/image/Untitled-removebg-preview2.png') !important;
    background-repeat: repeat-x;
      background-position: bottom;

    z-index: 9;
    background-size: auto 25px;
  }

/* .glance-Governance {
    padding: 0px 30px 35px 30px;
    background-image: url(../user-assets/images/yellowpattern.png);
    background-repeat: repeat-x;
    background-position: bottom;
} */

.important-links-section > * {
  position: relative;
  z-index: 1;
}

.section-title {
  color: #ffc107;
  font-size: 1.8rem;
}

.link-icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.link-icon {
  font-size: 2rem;
  /* color: #ffc107; */
  background: linear-gradient(
    233.19deg,
    #8EC850 -256.88%,
    #428DCB -167.3%,
    #2AB998 -81.23%,
    #C2579B -2.2%,
    #EC7026 80.36%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.link-title {
  /* color: #ff9800; */
  font-weight: bold;
   background: linear-gradient(
    233.19deg,
    #8EC850 -256.88%,
    #428DCB -167.3%,
    #2AB998 -81.23%,
    #C2579B -2.2%,
    #EC7026 80.36%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 3px;
}

.read-more-btn {
  font-weight: bold;
  padding: 5px 15px;
}   






/* Styles for the modal pop-up */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background-color: #fff;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.modal-title {
  margin: 0;
  /* font-size: 1.2rem; */
  font-weight: bold;
  text-align: center !important;
  padding-left: 30px;
}

.close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #888;
}

.modal-body {
  padding: 0;
}

.modal-body .btn {
  font-weight: bold;
}

/* 📱 Mobile styles */


@media (max-width: 576px) {
  .important-links-section {
    padding: 20px 0; 
  }

  /* .section-title {
    font-size: 0.3rem; 
    text-align: center;
  } */

  .link-card {
  
    margin-bottom: 15px;
  }

  .link-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .link-icon {
    font-size: 1.5rem;
  }

  .link-title {
    font-size: 0.6rem;
    text-align: center;
  }

  .link-desc {
    font-size: 0.5rem;
    min-height: auto; 
    text-align: center;
  }

  .read-more-btn {
    font-size: 0.5rem;
    padding: 4px 10px;
    display: block;
   
  }
} 


