.N009dpiit-endorsement-container {
  font-family: 'Roboto', sans-serif;
  padding: 0px;
  background-color: #f7f7f7;
}

.N009header-section {
  display: flex;
  justify-content: space-between;
  align-items: left;
  text-align: center;
  background-color:  #770597;
  padding: 25px;
  color: rgb(18, 16, 16);
  border-radius: 10px;
  margin-bottom: 30px;
  position: relative;
}

.N009header-content h1 {
  font-size: 35px;
  font-weight: bold;
  color: #dddecd;
}

.N009header-content p {
  font-size: 19px;
  text-align: left;
  margin-top: 10px;
  color: #faf3f3;
}

.N009get-recognised-btn {
  background-color:#a9993a;
  color: rgb(28, 25, 25);
  text-align: left;
  background-position: left;
  padding: 20px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
}

.N009get-recognised-btn:hover {
  background-color: #2cc096;
}

.N009header-logo {
  width: 400px;
}

.N009criteria-section {
  padding: 20px;
}

.N009criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.N009criteria-item {
  background-color: #c3caa2;
  border-radius: 10px;
  padding: 10px;
  position: relative;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.criteria-header {
  display: flex;
  align-items: left;
  justify-content: space-between;
  margin-top: 80px;
}

.N009criteria-header h3 {
  font-size: 16px;
  font-weight: bold;
}

.N009circle-logo {
  width: 30px;
  height: 30px;
  border-radius: 10%;
  margin-left: 180px;
  margin-right:60px;
}

.N009criteria-item p {
  font-size: 16px;
  margin: 0;
  color: #333;
}
.N009tax-exemption-section-container {
  display: flex;
  justify-content: space-between;
  background-color: #64581f; /* Dark blue background */
  padding: 25px;
  color: rgb(248, 243, 243);
}
.N009tax-exemption-title{
  width: 400px;
  color: rgb(241, 241, 230);
}

.N009tax-exemption-section-left {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.N009tax-exemption-section-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.N009tax-exemption-section-item .tax-exemption-section-icon {
  font-size: 1rem;
  margin-right: 40px;
}

.N009tax-exemption-section-value {
  font-size: 1.5rem;
  font-weight: bold;
}

.N009tax-exemption-section-label {
  font-size: 1rem;
  color: #0f0e0e;
}

.N009tax-exemption-section-right {
  position: relative;
  width: 55%;
}

.N009tax-exemption-section-image {
  width: 50%;
  border-radius: 0px;
}

.N009tax-exemption-section-text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: rgb(18, 17, 17);
}

.N009tax-exemption-section-text-overlay h1 {
  font-size: 2rem;
  margin: 0;
}

.N009tax-exemption-section-text-overlay p {
  font-size: 1.2rem;
  margin: 10px 0 0;
}
.N009tax-exemption-section-item {
  transition: transform 0.3s, box-shadow 0.3s; /* Smooth transition */
}

.N009tax-exemption-section-item:hover {
  transform: translateY(-2px); /* Lift effect on hover */
  box-shadow: 0 4px 8px rgba(157, 149, 149, 0.2); /* Shadow effect on hover */
}

.N009tax-exemption-section-label {
  text-decoration: none; /* Remove underline from links */
  color: #f5f2f2; /* Default text color */
}

.N009tax-exemption-section-label:hover {
  color: #070607; /* Change color on hover */
}

.N009dropdown-btn {
  background: none;
  border: none;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

.N009dropdown-btn:hover {
  color: #040404;
}

.N009objective h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
}

.N009useful-links-section {
  padding: 30px; /* Add some padding to the section */
  background-color: #66afcc; /* Light background for contrast */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.N009useful-links-section h2 {
  font-size: 25px; /* Heading size */
  margin-bottom: 20px; /* Spacing below the heading */
  color: #1e1919; /* Dark text color */
  text-align: center; /* Center the heading */
}

.N009links-grid {
  display: grid; /* Use grid layout */
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
  gap: 15px; /* Space between items */
}

.N009link-item {
  background-color: #fdf8f8; /* White background for link items */
  border: 1px solid #e0e0e0; /* Light border */
  border-radius: 6px; /* Rounded corners for link items */
  padding: 30px; /* Padding inside each link item */
  transition: transform 0.2s, box-shadow 0.2s; /* Smooth transition for effects */
  text-align: center; /* Center align text */
}

.N009link-item a {
  text-decoration: none; /* Remove underline from links */
  color: #151718; /* Link color */
  font-weight: bold; /* Bold text for links */
}

.N009link-item:hover {
  transform: translateY(-2px); /* Slightly lift the item on hover */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Increase shadow on hover */
}

.N009link-item:hover a {
  color: #0056b3; /* Darker color on link hover */
}
.N009logo-container {
  text-align: center; /* Center align the logo and title */
  margin-bottom: 20px; /* Space below the logo section */
}

.N009section-logo {
  width: 80px; /* Adjust logo size as needed */
  height: auto; /* Maintain aspect ratio */
}

.N009item-logo {
  width: 40px; /* Adjust item logo size as needed */
  height: auto; /* Maintain aspect ratio */
  margin-bottom: 8px; /* Space below item logo */
}


.N009number-box {
  display: inline-block;
  padding: 5px 10px;
  background-color: #141414;
  border: 1px solid #211e1e;
  border-radius: 10px;
  font-weight: bold;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.N009container {
  display: flex;
  height: 20vh;
}

/* Sidebar Styling */
.N009sidebar {
  width: 150px;
  background-color: #0e0f12;
  padding: 35px;
  border-right: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
}

.N009sidebar h2 {
  margin-bottom: 40px;
  font-size: 18px;
  color: #131212;
}

.N009sidebar ul {
  list-style-type: none;
}

.N009sidebar ul li {
  padding: 5px;
  cursor: pointer;
  color: #171717;
  border-radius: 2px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.N009sidebar ul li:hover {
  background-color: #c6672c;
  transform: translateX(10px); /* Moves the list item slightly to the right */
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}
.N009container {
  display: flex;
  background-color: #fcfcfd; /* Light background */
  height: 130vh;
}

.N009sidebar {
  width: 200px; /* Sidebar width */
  background-color: #f7f4ef; /* Dark sidebar */
  color: rgb(13, 12, 12); /* White text */
  padding: 20px,5px;
  transition: transform 0.3s ease; /* Smooth transition for collapsing */
}

.N009toggle-sidebar {
  margin:3px;
  padding: 20px 5px;
  background-color: #79a0c1; /* Button color */
  color: bold rgb(14, 13, 13); /* Button text color */
  border: none;
  border-radius: px; /* Rounded corners */
  cursor: pointer; /* Pointer on hover */
  position: relative;
}

.N009content {
  position: relative;
  padding: 10px; /* Replace with your image URL */
   /* Ensures the image covers the whole div */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents repeating the image */
  min-height: 100px; /* Ensures enough space for the content */
  
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #281e65; /* Ensures text is visible on dark background */
}

/* Light background color for the content area */
.N009content {
  flex: 1; /* Takes up remaining space */
  padding: 10px;
  background-color: rgb(255, 255, 255); /* Dark content background */
  backdrop-filter: blur(5px); /* Adds blur for better readability over the background image */
}

.N009objective {
  margin-bottom: 20px; /* Spacing between sections */
}

.N009dropdown-btn {
  background: none;
  border: none;
  cursor: pointer; /* Pointer on hover */
  color: #007bff; /* Color for dropdown button */
}

.N009get-recognised-btn {
  background-color: #28a745; /* Success button color */
  color: white; /* Button text color */
  border: none;
  padding: 10px 20px; /* Padding */
  border-radius: 5px; /* Rounded corners */
  cursor: pointer; /* Pointer on hover */
}

/* Content Area Styling */
.N009content {
  flex: 1;
  padding: 20px;
}

.N009objective {
  background-color: #f9fafc;
  cursor: pointer;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.N009objective h3 {
  font-size: 14px;
  color: #333;
}

.N009objective p {
  margin-top: 10px;
  font-size: 14px;
  color: #0a0909;
}
 /* Section Heading with Toggle Animation */
.N009objective .objective h3 {
  font-size: 16px;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}


/* Button with Hover Animation */
.N009get-recognised-btn {
  background-color: #e0581d;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.N009get-recognised-btn:hover {
  background-color: #0a0909;
  transform: scale(1.05); /* Slight zoom effect */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Animation for Objective Box Hover */
.N009objective:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
}
