:root {
  --red:#113383;
  --white:#fff;
  --blue:#113383;
}

a {
  text-decoration: none;
}

body {
  margin: 0;
  padding: 0;
}

.top_haeader {
  background: var(--red);
  padding: 0.8em 0;
  text-align: center;
}
.top_haeader .logo_text {
  color: #fff;
  margin: auto;
  text-align: center;
}
.top_haeader .logo_text .m_tital {
  font-size: clamp(1.2rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 0;
}
.top_haeader .logo_text .sub_tital {
  font-size: clamp(0.65rem, 1.5vw, 1.2rem);
}

.menu_sty .navbar-nav .nav-link {
  text-transform: uppercase;
}

@media (min-width: 1200.98px) {
  .menu_sty .navbar-nav {
    gap: 1em;
  }
}
@media (min-width: 992px) {
  .dropdown-menu {
    position: relative;
  }
  .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 20px; /* arrow position */
    width: 14px;
    height: 14px;
    background: #fff;
    transform: rotate(45deg);
    border-left: 1px solid rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    z-index: -1;
  }
}
.dropdown-menu.dark {
  background: #212529;
  color: #fff;
}

.dropdown-menu.dark::before {
  background: #212529;
  border-color: #343a40;
}

/* Desktop only */
@media (min-width: 992px) {
  .dropdown-menu {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.2s ease;
    display: block;
    visibility: hidden;
  }
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}
@media (min-width: 991.98px) {
  .menu_sty .navbar-nav .nav-link {
    color: var(--white);
  }
}
@media (max-width: 991.98px) {
  .menu_sty .navbar-nav .nav-link {
    color: #212529;
  }
}
.about-ijera {
  text-align: justify;
}
.about-ijera h1 {
  margin: 0;
  padding: 0;
}

.site-breadcrumb {
  padding: 3em 0;
  background: #dfdfdf;
  color: #000000;
}

.img_page {
  max-width: 450px;
}

.list_style {
  margin: 0;
  padding: 0;
}
.list_style li {
  display: block;
  color: var(--blue);
  margin-bottom: 1em;
  border-bottom: #eee 1px solid;
  padding-bottom: 1em;
}
.list_style li:last-child {
  border-bottom: 0;
}
.list_style li h4 {
  color: var(--blue);
}
.list_style li h4 a {
  color: var(--blue);
}
.list_style li p {
  color: #000;
}

.btn-bg-diagonal {
  position: relative;
  overflow: hidden;
  background: #113383;
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 0.5rem;
}
.btn-bg-diagonal::before {
  content: "";
  position: absolute;
  width: 140%;
  height: 100%;
  background: #0d2a6b;
  top: 0;
  left: -150%;
  transform: skewX(-20deg);
  transition: left 0.4s ease;
  z-index: 0;
}
.btn-bg-diagonal span {
  position: relative;
  z-index: 1;
}
.btn-bg-diagonal:hover::before {
  left: -20%;
}
.btn-bg-diagonal:hover {
  color: #fff;
}

.pageothercontent {
  margin: 0;
  margin-bottom: 10px;
}
.pageothercontent p {
  margin: 0;
  padding: 0;
  font-weight: bold;
}

#backToTopBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed position */
  bottom: 15px; /* Distance from bottom */
  right: 15px; /* Distance from right */
  z-index: 1000; /* On top of other elements */
  background-color: #007bff; /* Button color */
  color: white; /* Text color */
  border: none;
  outline: none;
  border-radius: 50%; /* Circular button */
  cursor: pointer;
  transition: all 0.3s ease;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
}

#backToTopBtn:hover {
  background-color: #0056b3; /* Darker on hover */
  transform: translateY(-2px);
}

.footer_bx {
  background-color: #222;
  color: #fff;
  padding: 40px 0;
  font-family: Arial, sans-serif;
}
.footer_bx h5 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer_bx ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer_bx ul li {
  margin-bottom: 10px;
}
.footer_bx ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}
.footer_bx ul li a:hover {
  color: #007bff;
  text-decoration: underline;
}
.footer_bx .social-icons {
  margin-top: 10px;
}
.footer_bx .social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #ccc;
  font-size: 18px;
  transition: color 0.3s;
}
.footer_bx .social-icons a:hover {
  color: #007bff;
}
@media (max-width: 767px) {
  .footer_bx {
    padding: 30px 15px;
  }
}

.footer_b {
  padding: 4px 0;
}/*# sourceMappingURL=styles.css.map */