
html {
  scroll-behavior: smooth;
}


/* Hero section css start here      */
    
.income-fund-section {
  position: relative;
  width: 100%;
}

.image-wrapper {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.income-fund-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.income-fund-banner-absoulute-p{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px;
  /* background-color: #dcb29e; */
}

@media (max-width: 1200px) {
  .income-fund-banner-absoulute-p { 
  transform: translate(-40%, -50%);
  width: 1200px;
  /* background-color: #dcb29e; */
}}



.income-fund-banner {
  background-color: #fc5400;
  color: white;
  padding: 45px 30px;
  /* position: absolute;
  top: 75px;
  left: 340px; */
  max-width: 550px;
  z-index: 2;
}

.category {
  font-size: 1.5rem;
  color: #2a2a2a;
  font-weight: 500;
  margin-bottom: 10px;
  /* margin-top: 15px; */
}

.title {
  font-size: 42px;
  font-weight: bold;
  margin: 0 0 10px;
}

.subtitle {
  font-size: 1.15rem;
  margin: 0;
}

/* ✅ Responsive: pin banner to bottom of image */
@media screen and (max-width: 992px) {
  .income-fund-banner-absoulute-p {
    /* top: auto; */
    bottom: 0;
    left: 0;
    right: 0;
    /* transform: translate(-0%, -0%); */
    transform: translate(-0%, 12%);
    height: 207px;
    /* padding: 20px; */
    max-width: 100%;
    box-sizing: border-box;
  }

  .image-wrapper {
    height: 400px;
  }

  .income-fund-bg {
    height: 100%;
    object-fit: cover;
  }

  .income-fund-banner {
    max-width: 100%;
    padding: 35px 20px;
  }

  .title {
    font-size: 25px;
   
  }
} 
 
/* Hero section css end here */
      
    /* nabvar css */

    .nav-bar {
    background-color: #262626;
    padding: 20px 0;
  }

  .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 6px 10px;
    transition: color 0.3s;
  }

  .nav-links a:hover {
    color: #f35600;
  }

  .nav-links a.active {
    color: #f35600;
  }

  .nav-links .apply-btn {
    background-color: #f35600;
    color: white;
    padding: 10px 16px;
    border-radius: 2px;
    font-weight: 600;
    transition: background 0.3s ease;
  }

  .nav-links .apply-btn:hover {
    background-color: #d64500;
  }

  @media screen and (max-width: 768px) {
    .nav-links {
      flex-wrap: wrap;
      gap: 20px;
    }
  }


 /* Form index.php End */

  .nmw-navbar {
    /* background-color: #2a2a2a; */
    background-color: #0c2a49;
    color: white;
     padding: 0px 20px;
  }
  
  /* MOBILE HEADER */
  .nmw-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
  }
  
  .nmw-title {
    font-weight: bold;
    font-size: 1.2rem;
  }
  
  .nmw-toggle {
    font-size: 1rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.4rem;
    margin-left: auto;
    margin-right: 1rem;
  }
  
  .nmw-cta {
    background-color: #fc5400;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
  }


  .nmw-cta:hover {
    background-color: #c94300;
    transition: background 0.3s ease;
    text-decoration: none !important;
   
  }
  
  /* UNIVERSAL NAV LIST */
  .nmw-nav-list {
    display: none;
    flex-direction: column;
    background-color: #0c2a49;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  .nmw-nav-list.nmw-open {
    display: flex;
  }
  
  .nmw-nav-list li {
    border-bottom: 1px solid #444;
  }
  
  .nmw-nav-list a {
    display: block;
    padding: 10px 15px !important;
    font-size: 1rem;
    color: white;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .nmw-nav-list a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  
  .nmw-nav-list a.nmw-active {
    color: #ff6600;
  }
  
  /* Desktop Styles */
  @media screen and (min-width: 992px) {
    .nmw-mobile-header {
      display: none;
    }
  
    .nmw-nav-list {
      display: flex !important;
      flex-direction: row;
      align-items: center;
      justify-content: end;
      /* gap: 24px; */
      /* padding: 1rem 2rem; */
      /* padding: 1.1rem 1.7rem; */
      padding: 1.1rem 0;
      border: none;
      max-width: 1200px;
      margin: auto;
    }
  
    .nmw-nav-list li {
      border: none;
    }
  
    .nmw-nav-list a {
      padding: 0;
    }
  
    .nmw-cta-inline {
      margin-left: auto;
    }
  }

  /* 4 cards section CSS start here */
  .nmw-benefits-section {
    background-color: #d0ccbf;
    /* padding: 100px 40px; */
    /* padding: 100px 0px; */
    padding: 100px 20px;
    overflow: hidden;
    position: relative; /* Needed for ::after to position absolutely */
  }
  
  .nmw-benefits-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to left, #d5d0c3 0%, transparent 100%);
    display: none; /* Hide by default */
  }
  
  .nmw-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
  }
  
  .nmw-benefit-card {
    background: white;
    padding: 30px 25px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); */
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, .1), 0 1px 4px 0 rgba(0, 0, 0, .1);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 0 0 auto;
  }
  
  .nmw-icon {
    width: 35px;
    /* font-size: 28px; */
    /* color: #eb5e28; */
  }
  
  .nmw-title {
    font-size: 18px;
    font-weight: 700;
    color: #002a4c;
    margin: 0;
  }
  
  .nmw-list {
    padding-left: 20px;
    margin: 0;
    color: #002a4c;
  }
  
  .nmw-list li {
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 15px;
  }
  
  /* DESKTOP (≥ 992px) */
  @media (min-width: 992px) {
    .nmw-carousel-track {
      flex-wrap: wrap;
      justify-content: space-between;
      overflow: visible;
      max-width: 1200px;
      margin: auto;
    }
  
    .nmw-benefit-card {
      width: 280px;
    }
  }
  
  /* MOBILE (< 992px): 2-card carousel and fade effect */
  @media (max-width: 991px) {
    .nmw-carousel-track {
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch; 
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
  
    .nmw-carousel-track::-webkit-scrollbar {
      display: none;
    }
  
    .nmw-benefit-card {
      flex: 0 0 calc(50% - 20px);
      scroll-snap-align: start;
    }
  
    .nmw-benefits-section::after {
      display: block;
    }
  }
  
    /* 4 cards section CSS end here */


    /* youtube video and about the fund section start here */

    .nmw1-section {
      /* background-color: #f0ece1;  */
       background-color: #fff; 
      padding: 96px 20px;
      /* max-width: 1200px; */
      margin: auto;
    }
    
    .nmw1-container {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      align-items: flex-start;
      padding: 0px 20px
    }
    
    .nmw1-video-wrapper {
      flex: 1 1 500px;
      max-width: 600px;
      aspect-ratio: 16 / 9;
      /* background-color: #000; */
    }
    
    .nmw1-video {
      width: 100%;
      height: 100%;
      border: none;
    }
    
    .nmw1-text-content {
      flex: 1 1 400px;
    }
    
    .nmw1-heading {
      font-size: 32px;
      color: #002a4c;
      font-weight: 700;
      margin-bottom: 16px;
      width: 350px;
    }
    
    .nmw1-text-content p {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 12px;
      color: #002a4c;
    }
    
    /* youtube video and about the fund section end here */

/* ------------------------------------------------------------------------------------------------------------------- */
/* news and insights section start here  */
/* Box-sizing Safe Default */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Base Section */
.nmw2-section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
  background: #fff;
}

/* Section Heading */
.nmw2-heading {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #002a4c;
  font-weight: 700;
}

/* Carousel Container */
.nmw2-carousel-wrapper {
  position: relative;
}

/* Carousel Track */
.nmw2-carousel-track {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  /* justify-content: center; */
  justify-content: space-between;
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}

/* Card Styles */
.nmw2-card {
  background: #fff;
  width: 290px;
  cursor: pointer;
  flex: 0 0 auto;
}

@media (min-width: 1200px) {
  .nmw2-card {
    width: 350px;
  }
}

/* Card Images and Thumbnails */
.nmw2-card img,
.nmw2-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

/* Video Thumbnail Container */
.nmw2-thumb {
  position: relative;
}

/* Play Button Style */
.nmw2-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  padding: 10px 16px;
  line-height: 1;
}

/* Card Content */
.nmw2-card h3 {
  font-size: 1.171875rem;
  font-weight: 700;
  margin: 15px 0 10px;
  color: #002a4c;
}

.nmw2-card p {
  font-size: 14px;
  color: #002a4c;
}

.nmw2-date {
  font-size: 13px;
  font-weight: bold;
  margin: 10px 0;
  color: #002a4c;
}

.nmw2-learn-more {
  display: inline-block;
  color: #e94e1b;
  font-weight: bold;
  text-decoration: none;
  margin-top: 10px;
}

/* Modal Styles */
.nmw2-modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
}

.nmw2-modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  background: #000;
}

.nmw2-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.nmw2-close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}

/* Carousel Controls */
.nmw2-carousel-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-start;
  margin-top: 10px;
}

.nmw2-arrows {
  display: flex;
  gap: 15px;
}

.nmw2-carousel-arrow {
 
  background-color: #ffffff;
  color: #0c2a49;
  border: 2px solid #0c2a49;
  width: 35px;
  height: 35px;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 3px;;
}


@media (min-width: 992px) {
  .nmw2-carousel-controls {
    display: none;
  }
}


.nmw2-carousel-dots {
  display: flex;
  gap: 8px;
}

.nmw2-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  transition: background-color 0.3s ease;
}

.nmw2-dot.active {
  background-color: #0c2a49;
}

/* Responsive: Under 992px */
@media (max-width: 991px) {
  .nmw2-carousel-track {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
  }

  .nmw2-carousel-track::-webkit-scrollbar {
    display: none;
  }

  .nmw2-card {
    scroll-snap-align: start;
  }

  .nmw2-carousel-controls {
    flex-wrap: wrap;
    margin-top: 15px;
  }
}


/* news and insights section end here  */

/* ------------------------------------------------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------------------------------------------------ */
/* Property Income Fund section start here */
/* Main section styles */

/* Modal Styles */
/* General Layout */
.nmw3-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  /* font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; */
}

.nmw3-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #002a4c;
}

/* Cards Grid */
.nmw3-card-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Individual Card */
.nmw3-card {
  background-color: white;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  max-width: 350px;
  width: 100%;
  transition: transform 0.3s ease;
}

.nmw3-card:hover {
  transform: translateY(-5px);
}

.nmw3-card-image {
  width: 100%;
  height: auto;
  display: block;
}

.nmw3-card-content {
  padding: 20px;
}

.nmw3-name {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
  color: #002a4c;
}

.nmw3-role {
  font-size: 14px;
  color: #002a4c;
  margin: 0 0 20px;
}

.nmw3-profile-link {
  color: #fc5400;
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
}

.nmw3-profile-link:hover {
  text-decoration: underline;
}

/* Modal Overlay */
.nmw3-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  overflow-y: auto;
}

/* Modal Box */
.nmw3-modal-content {
  background: white;
  margin: 5% auto;
  padding: 30px;
  border-radius: 4px;
  max-width: 900px;
  position: relative;
}

.nmw3-modal-header h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}

.nmw3-modal-header p {
  color: #444;
  margin-bottom: 15px;
}

.nmw3-modal-header hr {
  border: none;
  border-top: 1px solid #ccc;
  margin-bottom: 20px;
}

.nmw3-modal-body {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.nmw3-modal-text {
  flex: 2;
  font-size: 15px;
  color: #222;
}

.nmw3-modal-text p {
  margin-bottom: 15px;
}

.nmw3-link {
  color: #f15a22;
  text-decoration: none;
  font-weight: bold;
}

.nmw3-link:hover {
  text-decoration: underline;
}

.nmw3-modal-image {
  flex: 1;
  min-width: 150px;
}

.nmw3-modal-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Modal Footer */
.nmw3-modal-footer {
  text-align: center;
  margin-top: 30px;
  background-color: #f5f2eb;
  padding: 15px;
  border-top: 1px solid #eee;
}

.nmw3-close-btn {
  background: none;
  border: none;
  color: #f15a22;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

/* Property Income Fund section end here */

/* ------------------------------------------------------------------------------------------------------------------ */
  

/* documents section css start here */

.nmw4-section {
  background: #fff;
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
}

.nmw4-heading {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #002a4c;
}

/* ====== Document List ====== */
.nmw4-doc-list {
  list-style: none;
  padding: 0;
  margin: 0;

  /* Force vertical layout even if HTML is invalid */
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ====== Document Link Wrapper ====== */
.nmw4-doc-icon {
  display: block;
  width: 100%;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.nmw4-doc-icon:hover {
  transform: translateY(2px);
}

/* ====== Individual Document Row ====== */
.nmw4-doc-item {
  display: flex;
  /* flex-direction: column; */
  flex-direction: row;
  /* gap: 10px; */
  gap: 5px;

  /* Background removed */
  /* background-color: #f0ede4; */ 
}

/* ====== Document Title ====== */
.nmw4-doc-title {
  font-size: 18px;
  font-weight: 400;
  color: #0c2a49;
  font-family: "Georgia", sans-serif;
  cursor: pointer;
}

/* ====== Icon and Meta Group ====== */
.nmw4-doc-bottom {
  display: flex;
  align-items: center;
}

/* ====== PDF Meta Info ====== */
.nmw4-doc-meta {
  font-size: 14px;
  color: #333;
  white-space: nowrap;
}

/* ====== Download Icon Image ====== */
.nmw4-doc-icon-img {
  width: 35px;
}

/* ====== SVG Icon Styling (if used) ====== */
.nmw4-doc-icon-svg {
  width: 20px;
  height: 20px;
  display: block;
}

.nmw4-doc-icon-svg path {
  fill: #2a2a2a;
  stroke: #2a2a2a;
}

/* ====== Responsive Layout for Desktop (Optional) ====== */
@media (min-width: 768px) {
  .nmw4-doc-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .nmw4-doc-title {
    flex: 1;
  }

  .nmw4-doc-bottom {
    justify-content: flex-end;
    gap: 5px;
  }
}

/* documents section css end here */



/* ====== Section Container ====== */
.nmw5-section {
  background: #fff;
  padding: 50px 0px;
  max-width: 1200px;
  margin: auto;
}

/* ====== Heading ====== */
.nmw5-heading {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #002a4c;
}

/* ====== Accordion Wrapper ====== */
.nmw5-accordion {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 20px;
}

/* ====== Accordion Item ====== */
.nmw5-item {
  background-color: #eee9dd;
  border: none;
  overflow: hidden;
}

/* ====== Accordion Toggle ====== */
.nmw5-summary {
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #002a4c;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ====== Icon Toggle +/– ====== */
.nmw5-icon {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 20px;
  font-weight: bold;
  position: relative;
}
.nmw5-icon::before {
  content: "+";
}
.nmw5-item[open] .nmw5-icon {
  transform: rotate(180deg);
}
.nmw5-item[open] .nmw5-icon::before {
  content: "–";
}

/* ====== Accordion Content Transition ====== */
.nmw5-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 14px;
  color: #333;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.3s ease;
}
.nmw5-item[open] .nmw5-content {
  max-height: 5000px;
  opacity: 1;
  padding: 15px 20px;
}

/* ====== Announcements List ====== */
.nmw5-announcement-list {
  list-style: disc inside;
  padding-left: 0;
  margin: 0;
}
.nmw5-announcement-list li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #222;
}
.nmw5-announcement-list a {
  color: #e94e1b;
  text-decoration: underline;
}
.nmw5-announcement-list a:hover {
  text-decoration: none;
}

/* ====== Ratings Card Layout ====== */
.nmw5-ratings-card {
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  overflow: hidden;
  max-width: 600px;
  margin: 20px auto;
}
.nmw5-ratings-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 30px 20px;
  background-color: #f5f5f5;
}
.nmw5-rating-block img {
  max-width: 100%;
  height: auto;
  display: block;
  max-height: 120px;
}
.nmw5-ratings-footer {
  background: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 15px 10px;
  font-size: 14px;
  color: #000;
  text-align: center;
  border-top: 1px solid #e5e5e5;
}
.nmw5-ratings-footer div {
  flex: 1;
}

/* ====== Tax Info – List Style (Fund Payment Notices) ====== */
.nmw5-tax-links {
  list-style: disc inside;
  padding-left: 0;
  margin: 0;
}
.nmw5-tax-links li {
  margin-bottom: 8px;
  font-size: 14px;
}
.nmw5-tax-links a {
  color: #e94e1b;
  text-decoration: underline;
}
.nmw5-tax-links a:hover {
  text-decoration: none;
}

/* ====== Important Information Block ====== */
.nmw5-important-text {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}
.nmw5-important-text p {
  margin-bottom: 15px;
}
.nmw5-important-text a {
  color: #e94e1b;
  text-decoration: underline;
  word-break: break-word;
}
.nmw5-important-text a:hover {
  text-decoration: none;
}

/* footer section css start here */
.nmw-8-footer {
  background-color: #0c2a49;
}

.nmw-8-footer-content {
  /* padding: 40px 20px; */
   padding: 40px 48px;
  background-color: #0c2a49;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1600px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.nmw-8-footer-left {
  font-weight: bold;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 20px;
}

.nmw-8-footer-right {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.nmw-8-footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nmw-8-footer-column a {
  text-decoration: none;
  color: #ffffff;
  font-size: 15px;
}

.nmw-8-footer-column a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .nmw-8-footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .nmw-8-footer-right {
    flex-direction: column;
    gap: 30px;
  }
}

/* footer section css end here */

/* update responsiveness 2025 06 23 start here */
@media (max-width: 599px) {
  .nmw-benefit-card {
    flex: 0 0 calc(80% - 20px);
  }
}

/* June 25 upadtes start here */
.nmw-list {
 list-style-position: unset !important;
}

/* css code for fix navbar sticky issue */
.nmw-navbar.fixed {
  position: fixed !important;
  top: 100px !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  /* box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important; */
  background-color: #0b2a49 !important; /* Ensure navbar background */
}

/* For screens less than 768px */
@media (max-width: 767px) {
  .nmw-navbar.fixed {
    top: 80px !important;
  }
}


/* align the footer with the original footer */
@media (max-width: 1439px) {
  .nmw-8-footer-content {
    padding: 40px 24px;
  }
}

/* reduce footer padding */
.footer-padding {
  padding-bottom: 0px !important;
}

/* hide how to apply screens less than 992px */
@media (max-width: 992px) {
  .how-to-apply {
    display: none !important; 
  }
}


/* june 26 updates */
.about-the-fund-img{
  width: 150px;
  margin-top: 0px
}

@media (max-width: 969px) {
  .about-the-fund-img {
    margin-top: 30px;
  }
}


.fund-image-control {
  display: flex;
  justify-content: end
}

@media (max-width: 639px) {
  .income-fund-bg {
    display: none;
  }
}

.income-fund-bg-mobile {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  padding-bottom: 100px;
}

@media (min-width: 640px) {
  .income-fund-bg-mobile {
    display: none;
  }
}

@media (max-width: 969px) {
  .fund-image-control {
    justify-content: start;
  }
}


@media (max-width: 1200px) {
  .nmw1-container {
    padding: 0;
  }
}


