.section-title {
    position: relative;
    margin-bottom: 1rem;
}
.small-title-small {
       font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ed213e;
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
    letter-spacing: 1px;
}
.sec-big-title {
    font-size: 34px;
    font-weight: 600;
    position: relative;
    line-height: 1.3;
    margin-bottom: 1rem;
    /* margin-bottom: 3rem; */
}


.long-term-investment {
       padding: 60px 0 60px;
    position: relative;
        background: #e1e1e13b;
}
.page-header.nri-header{
        margin-bottom: 0 !important;
}
.long-term-invest img{
        height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.long-term-invest h2.sec-big-title {
    text-align:start;
}
/* Remove default list styles */
.nri-prefer-ceheck {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Style each list item */
.nri-prefer-ceheck li {
  position: relative;
  padding-left: 35px; /* Space for the icon */
  margin-bottom: 15px; /* Spacing between items */
  line-height: 1.5;
}

/* Add the SVG icon using ::before */
.nri-prefer-ceheck li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  
  /* SVG Settings */
  background-image: url('../images/svg/correct-check.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.nri-prefer-listing p{
        position: relative;
    padding: 20px;
    background-color: antiquewhite;
    border-radius: 20px;
    border: 2px #ffc10787 solid;
}
.long-term-invest p{
    position:relative;
    font-style: italic;
}


/* Styles for why-investment-section */
.why-investment-section {
  padding:50px 0 50px;
}
.why-investment-section .row{
    row-gap:20px;
}

.why-investment-section .section-title p{
        max-width: 45%;
    margin: auto;

}

.why-investment-section .description {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.why-investment-section .card {
  background: #e1e1e13b;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e1e1e1;
  transition: transform 0.3s ease;
}

.why-investment-section .icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.why-investment-section .card h3 {
  margin: 10px 0;
  font-size: 1.25rem;
}

.why-investment-section .card p {
    color: #555;
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}


.investing-from-overseas{
    position:relative;
    padding:4rem 0 4rem;
}

/* Left Content Styles */
.nri-content .label { color: #e11d48; font-weight: bold; font-size: 0.8rem; }
.nri-content h1 { font-size: 2.5rem; margin: 10px 0; }
.nri-content h1 span { color: #e11d48; }
.city-tags { 
        display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    padding-left: 0;
}
.city-tags li {     
      border: 1px solid #ddd;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    background: #e1e1e13b;
    list-style-type:none;
    }

/* Right Box Styles */
.nri-services-box { border-top: 4px solid #e11d48; padding: 25px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.nri-services-box ul { list-style: none; padding: 0; }
.nri-services-box li { 
  padding: 15px 0; 
  border-bottom: 1px solid #eee; 
  display: flex; 
  align-items: center; 
}

/* CSS Checkmark Logic */
.nri-services-box li::before {
  content: ""; /* Must be empty to show the background image */
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* SVG Image Settings */
  background-image: url('../images/svg/check-mark.svg');
  background-size: 12px 12px; /* Adjust size based on your SVG */
  background-repeat: no-repeat;
  background-position: center;
  
  /* Box Styling */
  background-color: #e11d48;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  margin-right: 15px;
  flex-shrink: 0; /* Ensures the box doesn't shrink on long text */
}


.high-potential-locations {
    position:relative;
    padding:4rem 0 4rem;
    background: #f8f8f8;
}
.high-potential-locations .row{
    row-gap:20px;
}
.location-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 22px;
    height: 100%;
    transition: all 0.3s ease;
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.location-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0d2b5c;
    margin: 0;
}

.location-tag {
    background: #fff4e5;
    color: #d8901f;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
}

.location-line {
      width: 28px;
    height: 2px;
    background: #ed213e;
    margin: 15px 0;
}

.location-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.location-link {
    color:#ed213e;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.location-link:hover {
    color: #b9770e;
}

.location-link i {
    font-size: 13px;
}
