.container {
  width: 400px;
  padding: 20px;
  /* border: 1px solid #ccc; */
  font-family: Arial, sans-serif;
}

.align-items-center{
  margin-top: -60px;
}

/* media query  */
@media (max-width: 768px) {
  .hero-img {
    height: 500px;
    /* smaller height for mobile */
    background-position: center center;
    background-size: cover;
    /* full cover */
    padding: 50px;
  }

  .hero-img h1 {
    font-size: 28px;
    /* adjust text size */
    line-height: 1.4;
    padding-top: 100px;
    color: #fff;
    /* white for visibility */
  }
}

/* media query  */
.u-align-center {
  padding-top: 50px;
}

.button {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #ddd;
  /* border: 1px solid #999; */
  cursor: pointer;
  display: inline-block;
}

/*header start  */

.nav-item .nav-link.active {
  color: #198754 !important;
}

.navbar .nav-link {
  color: #fff !important;
  font-weight: 600;
}

.navbar .nav-link:hover {
  color: #198754 !important;
}


/* header end */
/* Mobile view (max-width: 575px) */
@media (max-width: 575px) {
  .navbar {
    /* background: #fff !important; */
    /* mobile वर white navbar */
    padding: 8px 8px;
  }

  .navbar-brand img {
    max-height: 50px;
    /* छोटं logo */
    margin-left: -20px;
  }

  .logo-left {
    margin-left: 10px !important;
  }

  .navbar-toggler {
    background-color: #198754;
    /* green button */
  }

  .navbar-collapse {
    padding: 10px;
  }

  .navbar .nav-link {
    display: block;
    margin: 8px 0;
    text-align: center;
  }

}

/* Mobile view navbar toggler */
@media (max-width: 991px) {
  .navbar-toggler {
    border: none !important;        
   /*  background-color: transparent !important;
    /* हिरवा box काढला */
  }

  .navbar-toggler-icon {
    border-color: #fff !important;
    background-color: #fff !important;
  }
}


/* header end */
.home-form{
margin-left: 45%;
margin-bottom: 10%;
}
.home-form a{
  color: black;
}
/* start border */
.about-page-container:hover {
  border: 1px solid;
}

/* end border */

.carousel-item img {
  height: 400px;
}
button:hover{
  background-color: none;
}

/* section packge */
/* ====== Default (Desktop jasa aahe tasa rahil) ====== */


/* ====== Mobile View (max-width: 768px) ====== */
@media (max-width: 768px) {
  .about-page-container .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Carousel full width */
  .about-page-container .col-xl-6.col-6 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100%;
  }

  .about-page-container img {
    height: auto !important;
    max-height: 250px; /* mobile la jast height nako */
    object-fit: cover;
  }

  /* Text container */
  .about-page-container .container {
    text-align: center;
    padding: 15px;
  }

  .about-page-container h4 {
    font-size: 20px;
    margin-top: 10px;
  }

  .about-page-container p {
    font-size: 14px;
    line-height: 1.5;
    text-align: justify;
  }

  /* Button center */
  .about-page-container .button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* footer start */

:root {
  --bg: #0000;
  --muted: #c7c7c7;
  --accent: #ff6600;
  --white: #fff;
  --container: 1200px;
}

.site-footer{
  background: #000;
  color: var(--muted);
  font-family: "Poppins", sans-serif;
  padding: 60px 50px 70px;
}


.footer-inner {
  max-width: var(--container);
  /* padding-left: 20px; */
  margin: auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 30px;
}


.footer-col h4 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 14px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 18px;
}

.footer-desc {
  line-height: 1.6;
  margin-bottom: 18px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2c3137;
  color: var(--white);
  margin-right: 8px;
}

.socials a:hover {
  background: var(--accent);
  color: #fff
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin: 10px 0;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.contact-item {
  display: flex;
  gap: 12px;
  margin: 12px 0;
}

.contact-item i {
  /* background:#2c3137; */
  padding: 10px;
  border-radius: 8px;
  color: var(--accent);
}

.contact-item strong {
  color: var(--white);
  font-size: 14px;
  display: block;
}

.contact-item div {
  font-size: 14px;
}

.footer-bottom {
  max-width: var(--container);
  margin: 28px auto 0;
  padding: 18px 20px 40px;
  text-align: center;
}

.footer-bottom .divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 auto 16px;
  width: 80%;
}

@media(max-width:980px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:640px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}


/* footer end */