body {
  margin: 0;
  font-family: Arial, sans-serif;
}


/* Header Section */
.nri-header {
  background-color: #000000;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.header-container h1 {
  font-size: 40px;
}

.header-container p {
  font-size: 18px;
  margin-top: 10px;
}

/* Sections */
section {
  padding: 40px 20px;
  background-color: #fff;
  margin: 20px auto;
  border-radius: 8px;
  max-width: 1200px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

section ul li,
section p {
  margin-bottom: 15px;
}

/* Footer Section */
.nri-footer {
  background-color: #34495e;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  header h1 {
    font-size: 30px;
  }

  section h2 {
    font-size: 24px;
  }

  section p,
  ul li {
    font-size: 14px;
  }
}


/* Footer Top Section */
.footer {
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
}

.footer-top {
  text-align: center;
  padding: 20px;
  border-bottom: 1px solid gray;
}

.footer-top h3 {
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 15px;
}

.footer-top h3 i {
  font-style: italic;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-links a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

.footer-links a:hover {
  border-color: gray;
}

/* Footer Bottom Section */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 30px 20px;
}

.footer-column {
  flex: 1;
  padding: 10px;
  min-width: 200px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li:first-child {
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: gray;
}

.footer-column small {
  display: block;
  margin-top: 15px;
  font-size: 12px;
  color: gray;
}

.footer-column p {
  margin-top: 10px;
  font-size: 14px;
}

.footer-logo {
  width: 100px;
  margin-bottom: 15px;
}

/* Building Icon */
.building {
  width: 50px;
  height: 100px;
  background-image: url('building-icon.png');
  /* Replace with actual building image */
  background-size: cover;
  margin-top: 15px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    /* text-align: center; */
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-column {
    margin-bottom: 20px;
  }
}