body {
    margin: 0;
    font-family: 'Arial', sans-serif;
}

header {
    background-color: #fff;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: black ;
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    transition: color 0.3s;
    
}

nav ul li::after{
    content: '';
    width: 0;
    height: 2px;
    background: #cd0808;
    display: block;
    margin: auto;
    transition: 0.5s;
}

nav ul li:hover::after{
    width: 100%;
    
    
}

nav ul li.active::after {
    width: 100%;
    transition: none; /* Disable transition for the active link */
}

main {
    padding: 30px;
}
.content-container {
  max-width: 1000px; /* Adjust the max-width according to your design */
  margin: 0 auto; /* Center the container horizontally */
  padding: 20px; /* Add padding for better visual appeal */
}

table {
  box-shadow: 0px 5px 5px -5px rgba(0, 0, 0, 0.4);

}

/* Additional style to remove default table border-spacing */
table {
  border-collapse: collapse;
  border: 1px solid #ddd; /* Add this line if you want to retain cell borders */
}

.container-wrapper {
    display: flex;
    padding-top: 10px;
    
  }
  
  .left-container {
    flex: 3; /* Takes /3 of the available space */
    background-color: #ffffff;
    padding: 20px;
    height: 900px;
    font-family: 'Poppins', sans-serif ;
  }
  
  .right-container {
    flex: 1; /* Takes 1/3 of the available space */
    background-color: white;
    padding: 20px;
    /* box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); ; */
    color: #fff;
    height:450px;
    width: 10%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center content horizontally */
    text-align: center;
  }
  .rightRightcontainer{
    background-image: url('images/Hari_image2.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    height: 300px;
    width: 100%; /*change acc to size*/
    padding-bottom: 10px;
  }
  .right-container p {
    color: #fff;
    font-size: 1rem;
    margin: 10px 0; /* Add margin between elements */
  }

  .rightDowncontainer {
    box-shadow:  0px 2px 5px rgba(0, 0, 0, 0.3);
    width: 100%;/*change acc to size*/
    border-radius: 10px;
  }

  .rightDowncontainer p {
    font-family: 'Poppins', sans-serif;
    color: gray;
  }
  footer {
    text-align: center;
    padding: 20px; /* Optional padding for better visual appeal */
    background-color: #f0f0f0; /* Optional background color for the footer */
}

footer p {
    margin: 0; /* Remove default margin */
}

.about_container {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about_container p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  text-align: justify;
  padding-right: 10px; /* Adjust the value as needed */
  margin: 0; /* Remove default margin to center the text vertically */
}

.news_container {
  padding:  18px;
  /* display: flex;
  justify-content: center;
  align-items: center; */
  text-align: start;;
}

.news_container h1 {
  font-family: 'Poppins', sans-serif;
  font-size: larger; /* Adjust the value as needed */
  margin: 0; /* Remove default margin to center the text vertically */
}
.news_table_container {
  padding: 0px;
  text-align: left;
}

.news_table_container table {
  width: 100%;
  border-collapse: collapse;
  border: none;
  box-shadow: none;
}

.news_table_container table, .news_table_container th, .news_table_container td {
  border: none;
}

.news_table_container td {
  padding: 10px;
}

.popup {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%); /* Bring to center */
  border: 0px solid #000; /* Black border */
  background-color: #fff; /* White background */
  z-index: 2; /* Sit on top */
  padding: 20px; /* Add some padding */
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); /* Add shadow for better visibility */
  overflow: hidden;
  word-wrap: break-word;
  max-width: 700px;
  min-height: 200px;
  top: 50vh;
  
}
.popup .container1{
  background: #f0f0f0;
  padding: 10px;
}
.popup .container1 p {
  margin-left: 10px; /* Adjust the value as needed */
  margin-right: 10px; /* Adjust the value as needed */
  text-align: auto; /* Center the text within the popup */
  font-family: 'Courier Prime', monospace;
  word-spacing: normal;
}
.popup button {
  display: block;
  margin: 0 auto;
}

/* Style for the background overlay */
.overlay {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Black background with opacity */
  z-index: 1; /* Sit behind the popup */
}

.custom-link {
  color: #cd0808; /* Your desired text color */
  text-decoration: none; /* Remove underline */
}

.custom-link:hover {
  text-decoration: underline; /* Add underline on hover */
}

