/* General Styles */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

.ghatana {
  background: linear-gradient(to right, #e1e3e4, #c7d2dc); 
  padding: 20px;
  border-radius: 0px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: white;
}

/* Section Containers */
.section-1, .section-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

.section-1 .infox, 
.section-2 .infox {
  flex: 1;
  background: rgb(12, 80, 158);
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  color: white;
}

.section-1 .box-1, 
.section-2 .box-1 {
  background: white;
  padding: 15px;
  box-shadow: inset 0 0 0 15px rgb(12, 80, 158);
  border-radius: 10px;
}

.section-1 .header-section-1, 
.section-2 .header-section-1 {
  padding: 10px;
  color: white;
  font-weight: bold;
  text-align: center;
}

.section-1 .text-section-1 h3,
.section-2 .text-section-1 h3 {
  font-size: 16px;
  margin: 0;
  padding: 5px;
  text-align: left;
  color: white;
  text-decoration: none;
}

/* Important Mahiti */
.section-1 .important_mahiti,
.section-2 .important_mahiti {
  width: 100%;
  height: auto;
  overflow-x: auto;
  overflow-y: auto;
  padding: 10px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 5px;
  white-space: normal;
  box-sizing: border-box;
  margin-top: 10px;

}

.section-1 .important_mahiti ul,
.section-2 .important_mahiti ul {
  color: rgb(0, 0, 0);
  text-decoration: none;
  margin-left: -10px;
  list-style: none; /* Remove default bullet points */
  position: relative; /* Required for positioning the icon */
  padding-left: 30px; /* Add space for the icon */
}


.section-1 .important_mahiti ul li,
.section-2 .important_mahiti ul li {
  color: rgb(0, 0, 0);
  text-decoration: none;
  margin-left: -10px;
  list-style: none; /* Remove default bullet points */
  position: relative; /* Required for positioning the icon */
  padding-left: 30px; /* Add space for the icon */
}

.section-1 .important_mahiti ul li::before,
.section-2 .important_mahiti ul li::before {
  content: ""; /* Required for pseudo-elements */
  display: inline-block;
  width: 20px; /* Icon width */
  height: 20px; /* Icon height */
  background-image: url('../images/pdf.png'); /* Add your PDF icon image */
  background-size: cover; /* Ensure the icon fits */
  position: absolute; /* Position the icon */
  left: 0; /* Align the icon to the left */
  top: 50%; /* Center the icon vertically */
  transform: translateY(-50%); /* Center the icon vertically */
}

.section-1 .important_mahiti a,
.section-2 .important_mahiti a {

  color:rgb(0, 0, 0);
  text-decoration: none;

}
.section-1 .footer-section-1, 
.section-2 .footer-section-1 {
  padding: 10px;
  text-align: right;
  font-size: 14px;
  color: white;
}

/* Flexbox Settings */
.section-1 .row, 
.section-2 .row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-radius: 20px;
}

.section-1 .col-md-4, 
.section-2 .col-md-4,
.section-1 .col-md-12, 
.section-2 .col-md-12 {
  flex: 1;
  width: 100%;
}

/* Responsive Layout */
/* Large Screens (1024px and above): 3 containers per row */
@media (min-width: 1024px) {
  .section-1 .infox,
  .section-2 .infox {
    flex: 1;
    min-width: calc(33.33% - 20px);
  }

  .section-1 .important_mahiti,
  .section-2 .important_mahiti {
    width: 100%;
    margin-top: 10px;
  }
}

/* Medium Screens (768px to 1023px): 2 containers per row */
@media (min-width: 768px) and (max-width: 1023px) {
  .section-1 .infox,
  .section-2 .infox {
    flex: 1;
    min-width: calc(50% - 20px);
  }

  .section-1 .important_mahiti,
  .section-2 .important_mahiti {
    width: 100%;
    margin-top: 10px;
  }
}

/* Small Screens (321px to 767px): 1 container per row */
@media (max-width: 767px) {
  .section-1 .infox,
  .section-2 .infox {
    min-width: 100%;
  }

  .section-1 .important_mahiti,
  .section-2 .important_mahiti {
    width: 100%;
    margin-top: 10px;
  }
}

/* Utility Classes */
.clearfix {
  clear: both;
}

.p-10 {
  padding: 10px;
}

.pt-10 {
  padding-top: 10px;
}

.pb-0 {
  padding-bottom: 0;
}

.mb-10 {
  margin-bottom: 10px;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-white {
  color: white;
}

.line-bottom-theme-colored-2 {
  border-bottom: 2px solid #0A55AC;
}

.line-height-1 {
  line-height: 1;
}

.mt-0 {
  margin-top: 0;
}

.mb-15 {
  margin-bottom: 15px;
}

.text-right {
  text-align: right;
}
