* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.block-space {
  margin-block: 9rem;
}

.alert-message {
  position: fixed;
  transform: translate(-50%, -50%);
  z-index: 999999999;
  width: max-content;
  top: 41%;
  left: 50%;
}

/*css for loader */
.loader-container {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99999;
  height: 100dvh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  background-color: #f3f3f3;
}

.loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 190px;
  background-size: cover;
  animation: scale 1s infinite alternate;
}

.loader-text {
  font-size: 28px;
  margin-top: 160px;
  color: #333;
  font-weight: bold;
}

.contact-link {
  color: rgb(252 255 198);
}

.loader-text .mahila {
  color: red;
}

.sahaj {
  color: green;
}

@keyframes scale {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

.top-barsection {
  background: #136c2a;
  /*
  background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(0,0,0,1) 26%, rgba(0,212,255,1) 84%);*/
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
}

.container11 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info span {
  margin-right: 20px;
  font-family: Arial, Helvetica, sans-serif;
}

.social-icons a {
  color: #fff;
  margin-left: 10px;
}

.social-icons a:hover {
  color: #ccc;
}

/*style for the logo and company name with media query*/
@media(max-width:700px) {
  .company-info {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
  }

  .company-info-1 {
    display: none;
  }
}

@media (min-width:701px) {
  .company-info {
    display: none;
  }

  .company-info-1 {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 3rem;

    h3 {
      font-size: 17px;
      color: #0d6410f0;
    }

    & a>h3 {
      text-decoration: underline;
    }
  }

  .location,
  .nav-email {
    display: flex;
    gap: 10px;
  }

}

.company-logo {
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 20px;
}

.company-names {
  text-align: center;
}

.company-name {
  margin: 0;
  font-weight: bold;
  font-size: 24px;
  color: #136c2a;
}

.company-name-nepali {
  margin: 0;
  font-size: 18px;
  font-weight: normal;
  border-top: 2px solid #cf1919;
  padding-top: 1px;
  color: #136c2a;
}

@media only screen and (max-width: 600px) {
  .company-logo {
    width: 80px;
    height: 80px;
    margin-right: 10px;
  }

  .company-name {
    font-size: 20px;
  }

  .company-name-nepali {
    font-size: 16px;
  }
}

/* Style the container of the marquee */
.marquee-container {
  height: 30px;
  /* Adjust the height as needed */
  overflow: hidden;
  position: relative;
  background: green;
  margin: 200px 0px 0px 0px;
}

/* Style the marquee text with white color */
.marquee {
  color: white;
  font-size: 16px;
  /* Adjust the font size as needed */
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  animation: marquee-animation 10s linear infinite;
}

/* Define the marquee animation */
@keyframes marquee-animation {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin-block: 2rem;
  gap: 2rem;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.message {
  display: flex;
  flex-direction: row;
  background-color: #dcfce7;
  padding: 1px;
}

.mimage {
  text-align: center;
}

.mimage img {
  max-width: 55%;
  aspect-ratio: 1;
  border-radius: 100px;
  border: 4px solid green;
  margin-left: 20%;
}

.mimage p {
  margin-top: 0px;
  font-size: 16px;
}

.paragraph {
  text-align: justify;
  font-size: 18px;
  font-weight: smaller;
  max-width: 75%;
  text-align: justify;
}

/* Media Query for screens smaller than 600px */
@media screen and (max-width: 600px) {
  .message {
    flex-direction: column;
  }

  .mimage {
    margin-bottom: 10px;

  }

  .mimage img {
    margin: 0 auto;
    width: 30%;
  }

  .mimage p,
  .paragraph {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
    margin-top: 0px;
  }
}

.card {
  display: flex;
  flex-direction: column;
  width: clamp(20rem, calc(20rem + 2vw), 22rem);
  overflow: hidden;
  border-radius: 1em;
  background: #ECE9E6;
  transition: transform 200ms linear;

}

.card:hover {
  box-shadow: 0 0px 8px 0px rgba(0, 0, 0, 0.2);
}

.card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}


.tag {
  align-self: flex-start;
  padding: .25em .75em;
  border-radius: 1em;
  font-size: .75rem;
}

.tag+.tag {
  margin-left: .5em;
}

.tag-blue {
  background: #56CCF2;
  background: linear-gradient(to bottom, #2F80ED, #56CCF2);
  color: #fafafa;
}

.tag-brown {
  background: #D1913C;
  background: linear-gradient(to bottom, #FFD194, #D1913C);
  color: #fafafa;
}

.tag-red {
  background: #cb2d3e;
  background: linear-gradient(to bottom, #ef473a, #cb2d3e);
  color: #fafafa;
}

.card__body h4 {
  font-size: 1.5rem;
  text-transform: capitalize;
  color: green;
}

.card__footer {
  display: flex;
  padding: 1rem;
  margin-top: auto;
}

.user {
  display: flex;
  gap: .5rem;
}

.user__image {
  border-radius: 50%;
}

/* Media Query for Small Devices */
@media only screen and (max-width: 600px) {
  .card {
    width: 100%;
  }
}

.user__info>small {
  color: #666;
}

.date-container {
  display: flex;
  align-items: center;
  padding: 0px;
  /* Green color */
  color: black;
}

.calendar-icon {
  font-size: 24px;
  margin-right: 8px;
  color: #042825;
}

nav {
  width: 100%;
  height: 100%;
  height: 60px;
  background: #136c2a;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

nav .navbar {
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* background: red; */
  padding: 0 50px;
}

.navbar .logo a {
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

nav .navbar .nav-links {
  line-height: 70px;
  height: 100%;
}

nav .navbar .links {
  display: flex;
}

nav .navbar .links li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
  margin-right: 38px;
}

nav .navbar .links li a {
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
  transform: rotate(180deg);
}

nav .navbar .links li .arrow {
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #fff;
  transition: all 0.3s ease;
}

nav .navbar .links li .sub-menu {
  position: absolute;
  top: 59px;
  left: 0;
  line-height: 40px;
  background: #3E8DA8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}

nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
  display: block;
}

.navbar .links li .sub-menu li {
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .links li .sub-menu a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.navbar .links li .sub-menu .more-arrow {
  line-height: 40px;
}

.navbar .links li .sub-menu .more-sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}

.links li .sub-menu .more:hover .more-sub-menu {
  display: block;
}

.navbar .nav-links .sidebar-logo {
  display: none;
}

.navbar .bx-menu {
  display: none;
}

@media (max-width:920px) {
  nav .navbar {
    max-width: 100%;
    padding: 0 25px;
  }

  nav .navbar .logo a {
    font-size: 27px;
  }

  nav .navbar .links li {
    padding: 0 10px;
    white-space: nowrap;
  }

  nav .navbar .links li a {
    font-size: 15px;
  }
}

@media (max-width:800px) {
  .navbar .bx-menu {
    display: block;
  }

  nav .navbar .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background: #3E8DA8;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }

  .navbar .nav-links .sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .sidebar-logo .logo-name {
    font-size: 25px;
    color: #fff;
  }

  .sidebar-logo i,
  .navbar .bx-menu {
    font-size: 25px;
    color: #fff;
  }

  nav .navbar .links {
    display: block;
    margin-top: 20px;
  }

  nav .navbar .links li .arrow {
    line-height: 40px;
  }

  nav .navbar .links li {
    display: block;
  }

  nav .navbar .links li .sub-menu {
    position: relative;
    top: 0;
    box-shadow: none;
    display: none;
  }

  nav .navbar .links li .sub-menu li {
    border-bottom: none;

  }

  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
    position: relative;
    left: 0;
  }

  .navbar .links li .sub-menu .more-sub-menu li {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .links li:hover .htmlcss-arrow,
  .links li:hover .js-arrow {
    transform: rotate(0deg);
  }

  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
  }

  .navbar .links li .sub-menu .more span {
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }

  .links li .sub-menu .more:hover .more-sub-menu {
    display: none;
  }

  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu {
    display: none;
  }

  .navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu {
    display: block;
  }

  .navbar .nav-links.show1 .links .htmlcss-arrow,
  .navbar .nav-links.show3 .links .js-arrow {
    transform: rotate(180deg);
  }

  .navbar .nav-links.show2 .links .more-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width:370px) {
  nav .navbar .nav-links {
    max-width: 100%;
  }
}

/* Existing styles ... */

.card__body p {
  /* ... existing styles ... */
  overflow: hidden;
  /* Hide overflow to create a truncated effect */
  max-height: 100px;
  /* Set a max height to show only part of the content */
  position: relative;
  /* Required for the absolute positioning of the Read More link */
}

.read-more {
  color: #3498db;
  /* Blue color for the Read More link */
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  background: #fff;
  /* Background color for better visibility */
  padding: 5px 10px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #2980b9;
  /* Change color on hover */
}

.custom-container {
  position: relative;
  padding: 20px;
  /* Adjust the padding value according to your preference */
}

.custom-heading {
  color: #093;
  /* Change the color as needed */
  background-color: #eee;
  /* Change the background color as needed */
  padding: 10px;
  /* Adjust the padding value according to your preference */
  margin: 0;
  border-bottom: 2px solid #333;
  /* Adjust the color and thickness of the underline bar */
}

/*css for service*/
/* styles.css */



.quinque-wrapper {
  padding: 10px 10%;
}

.quinque-card-area {
  padding: 50px 0;
}

.quinque-box-area {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 40px;
  margin-top: 0px;
}

.quinque-box {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.9);
  height: 420px;
  transition: transform 0.3s ease;
}

.quinque-box:hover {
  transform: scale(1.05);
}

.quinque-box img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: block;
  object-fit: cover;
}

.quinque-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent, rgba(7, 116, 48, .8));
  border-radius: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 40px;
  text-align: center;
  font-size: 14px;
  transition: height 0.5s;
  color: whitesmoke;
}

.quinque-overlay h3 {
  font-weight: 750;
  margin-bottom: 5px;
  margin-top: 80%;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 2px;
  color: white;
}

.quinque-overlay a {
  margin-top: 10px;
  margin-bottom: 3.5rem;
  color: white;
  text-decoration: none;
  font-size: 14px;
  background: #f57e20;
  border-radius: 50px;
  text-align: center;
  padding: 5px 15px;
}


/*stytdystdysdtsyd*/
footer {
  position: relative;
  background: #136c2a;
  width: 100%;
  bottom: 0;
  left: 0;
}

footer::before {
  content: '';
  position: absolute;
  left: 0;
  top: 100px;
  height: 1px;
  width: 100%;
  background: #AFAFB6;
}

footer .content {
  max-width: 1250px;
  margin: auto;
  padding: 30px 40px 40px 40px;
}

footer .content .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.content .top .logo-details {
  color: #fff;
  font-size: 30px;
}

.content .top .media-icons {
  display: flex;
}

.content .top .media-icons a {
  height: 40px;
  width: 40px;
  margin: 0 8px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.top .media-icons a:nth-child(1) {
  background: #4267B2;
}

.top .media-icons a:nth-child(1):hover {
  color: #4267B2;
  background: #fff;
}

.top .media-icons a:nth-child(2) {
  background: #1DA1F2;
}

.top .media-icons a:nth-child(2):hover {
  color: #1DA1F2;
  background: #fff;
}

.top .media-icons a:nth-child(3) {
  background: #E1306C;
}

.top .media-icons a:nth-child(3):hover {
  color: #E1306C;
  background: #fff;
}

.top .media-icons a:nth-child(4) {
  background: #0077B5;
}

.top .media-icons a:nth-child(4):hover {
  color: #0077B5;
  background: #fff;
}

.top .media-icons a:nth-child(5) {
  background: #FF0000;
}

.top .media-icons a:nth-child(5):hover {
  color: #FF0000;
  background: #fff;
}

footer .content .link-boxes {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

footer .content .link-boxes .box {
  width: calc(100% / 5 - 10px);
}

.content .link-boxes .box .link_name {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  position: relative;
}

.link-boxes .box .link_name::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 35px;
  background: #fff;
}

.content .link-boxes .box li {
  margin: 6px 0;
  list-style: none;
}

.content .link-boxes .box li a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.4s ease
}

.content .link-boxes .box li a:hover {
  opacity: 1;
  text-decoration: underline;
}

.content .link-boxes .input-box {
  margin-right: 55px;
}

.link-boxes .input-box input {
  height: 40px;
  width: calc(100% + 55px);
  outline: none;
  border: 2px solid #AFAFB6;
  background: #136c2a;
  border-radius: 4px;
  padding: 0 15px;
  font-size: 15px;
  color: #fff;
  margin-top: 5px;
}

.link-boxes .input-box input::placeholder {
  color: #AFAFB6;
  font-size: 16px;
}

.link-boxes .input-box input[type="button"] {
  background: #fff;
  color: #140B5C;
  border: none;
  font-size: 18px;
  font-weight: 500;
  margin: 4px 0;
  opacity: 0.8;
  cursor: pointer;
  transition: all 0.4s ease;
}

.input-box input[type="button"]:hover {
  opacity: 1;
}

footer .bottom-details {
  width: 100%;
  background: #136c2a;
}

footer .bottom-details .bottom_text {
  max-width: 1250px;
  margin: auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
}

.bottom-details .bottom_text span,
.bottom-details .bottom_text a {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
}

.bottom-details .bottom_text a:hover {
  opacity: 1;
  text-decoration: underline;
}

.bottom-details .bottom_text a {
  margin-right: 10px;
}

@media (max-width: 900px) {
  footer .content .link-boxes {
    flex-wrap: wrap;
  }

  footer .content .link-boxes .input-box {
    width: 40%;
    margin-top: 10px;
  }
}

@media (max-width: 700px) {
  footer {
    position: relative;
  }

  .content .top .logo-details {
    font-size: 26px;
  }

  .content .top .media-icons a {
    height: 35px;
    width: 35px;
    font-size: 14px;
    line-height: 35px;
  }

  footer .content .link-boxes .box {
    width: calc(100% / 3 - 10px);
  }

  footer .content .link-boxes .input-box {
    width: 60%;
  }

  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a {
    font-size: 12px;
  }
}

@media (max-width: 520px) {
  footer::before {
    top: 145px;
  }

  footer .content .top {
    flex-direction: column;
  }

  .content .top .media-icons {
    margin-top: 16px;
  }

  footer .content .link-boxes .box {
    width: calc(100% / 2 - 10px);
  }

  footer .content .link-boxes .input-box {
    width: 100%;
  }
}

/* About us */
/*service card*/
.title h1 {
  text-align: center;
  padding-top: 50px;
  font-size: 42px;
}

.title h1:after {
  content: "";
  height: 4px;
  width: 230px;
  background-color: #000;
  display: block;
  margin: auto;
}

.services {
  width: 85%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 75px auto;
  text-align: center;
  flex-direction: column;
  margin: 0px 20px;
  background-color: #efefef;
  border-radius: 10px;
  cursor: pointer;
}

.service_card .icon {
  font-size: 35px;
  margin-bottom: 10px;
}

.service_card h2 {
  font-size: 28px;
  color: #c94f4f;
  margin-bottom: 20px;
}

.service_card h2 {
  font-size: 28px;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #5e5e5e;
}

.button {
  font-size: 15px;
  text-decoration: none;
  color: #fff;
  padding: 8px 12px;
  border-radius: 5px;
  letter-spacing: 1px;
}


.new-message-box {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  /*
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  */
  width: 95%;
  margin: 50px auto;
}

.heading {
  font-size: 24px;
  color: green;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 900;
  text-decoration: none !important;
  padding: 27px;
}



.new-message {
  font-size: 18px;
  color: #333;
  line-height: 1.5;
}

/* Media query for smaller screens */
@media only screen and (max-width: 600px) {
  .new-message-box {
    width: 90%;
    padding: 15px;
    background-color: #dcfce7;
    margin-top: 10px;
    background-image: url("../images/logo.69828e80ec50.png");
    background-blend-mode: lighten;
  }

  .heading {
    font-size: 20px;
    padding: 0px;
  }

  .new-message {
    font-size: 16px;
    text-align: justify;

  }
}



.counter {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  /* place-content: center; */

  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-top: -44px;

  flex-wrap: wrap;
  gap: 1rem;
}

.counter-item {
  text-align: center;
  border: 1px solid #136c2a;
  padding: 0 12px;
}

.counter-number {
  font-size: 36px;
  color: #db2a4a;
  animation: countUp 2s ease-in-out forwards;
}

.counter-label {
  font-size: 18px;
  color: #666;
  font-weight: bold;
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
  .counter {
    flex-direction: column;
    align-items: center;
  }

  .counter-item {
    margin-bottom: 20px;
  }
}



.social-icon {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 10;
}

.social-links {
  text-decoration: none;
  width: 210px;
  color: #fff;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 5px;
  font-size: 20px;
  transform: translateX(-170px);
  -webkit-transform: translateX(-170px);
  -ms-transform: translateX(-170px);
  transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
}

.facebook {
  background: #3b5998;
}

.twitter {
  background: #00aced;
}

.instagram {
  background: #e4405f;
}

.youtube {
  background: #cd201f;
}

.linkedin {
  background: #0077B5;
}

.social-links i {
  padding-left: 20px;
  font-size: 30px !important;
  animation: letszoom 3s linear alternate-reverse infinite;
}

@keyframes letszoom {
  from {
    transform: scale(0.8);
  }

  to {
    transform: scale(1);
  }
}

.social-links:hover {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
}


a .heading {
  color: green;
}


/* scroll bar css */
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #dcfce7;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #0cb14b;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #0cb14b99;

}