body {
  margin: 0;
  width: 100%;
  padding: 0;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: larger;
}

.navbar-brand {
  overflow-x: hidden;
}
.navbar-brand img {
  width: 30px;
}
.navbar-brand span {
  margin-left: 20px;
}

.page-1 img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 50px;
}
.page-1 .heading-button {
  display: flex;
  align-items: center;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  color: rgb(0, 0, 0);
}
.page-1 .heading-button h1 {
  font-size: 4em;
  text-align: left;
}
.page-1 .heading-button hr {
  color: white;
  width: 50%;
}
.page-1 .heading-button h5 {
  font-size: medium;
  text-align: left;
}
.page-1 .heading-button a {
  text-decoration: none;
  text-align: center;
  margin-left: 20px;
  color: black;
  background-color: #ffffff;
  width: 50%;
  border: 2px white solid;
  border-radius: 10px;
  padding: 2px;
  transition: 0.5s;
}
.page-1 .heading-button a:hover {
  color: white;
  background-color: #000000;
  transition: 0.5s;
}

.page-2 {
  margin-top: 100px;
}
.page-2 .heading-para {
  text-align: center;
}
.page-2 .heading-para p {
  text-align: center;
}
.page-2 ul {
  list-style: none;
  display: grid;
  overflow-x: hidden;
  margin-bottom: 50px;
  margin-right:20px;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 70px;
}
.page-2 ul li {
  border: 1px solid rgba(0, 0, 0, 0.188);
  text-align: justify;
  padding: 10px;
  text-align: center;
  border-radius: 20px;
}

.page-3 {
  margin-top: 50px;
  margin-left: 20px;
  text-align: center;
}
.page-3 a {
  color: #000000;
}
.page-3 h1 {
  text-decoration: none;
}
.page-3 ul {
  list-style: none;
  display: grid;
  margin-bottom: 50px;
  overflow-x: hidden;
  justify-items: center;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.page-3 ul .card {
  height: 300px;
  border-radius: 20px;
}


.page-6 {
  overflow-x: hidden;
  text-align: center;
  background: linear-gradient(to right, #000000, #353060);
  color: white;
  padding-top: 50px;
  padding-bottom: 50px;
  border-radius: 10px;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 50px;
}
.page-6 a {
  color: white;
  font-size: 20px;
}

.footer {
  background: linear-gradient(to right, #000000, #353060);
  color: #d6a936;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr)); /* Two divs per line */
  row-gap: 0px; /* Adding gap between grid items */
  padding: 20px; /* Adding some padding for spacing */
  text-align: justify;
}
.footer a {
  color: #d6a936;
}
.footer .phone-no,
.footer .address,
.footer .support,
.footer .contact-us {
  width: 40%;
  margin: 0;
  padding: 0;
}
.footer img {
  width: 100px;
  margin-right: 50px;
  margin-top: 20px;
  position: absolute;
  justify-self: end;
}

.logo-big {
  width: 100px !important; /* Adjust as needed */
  transition: width 0.3s ease; /* Add smooth transition */
  font-size: xx-large;
}

.logo-small {
  width: 40px !important; /* Adjust as needed */
  transition: width 0.3s ease; /* Add smooth transition */
}

.visible-nav {
  background-color: rgba(255, 255, 255, 0.1254901961) !important;
  transition: 0.3s ease;
}

.less-visible-nav {
  background-color: #ffffff !important;
  transition: 0.3s ease;
}

@media only screen and (max-width: 886px) {
  body {
    width: 100%;
  }
  .navbar-brand span {
    margin-left: 20px;
    font-size: 60%;
    z-index: 4;
  }
  .page-1 img {
    width: 100%;
    height: 500px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 50px;
    overflow: hidden;
  }
  .page-1 .heading-button {
    display: block;
    align-items: center;
    z-index: 1;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    color: rgb(0, 0, 0);
    text-align: center;
  }
  .page-1 .heading-button h1 {
    font-size: 2em;
    text-align: left;
  }
  .page-1 .heading-button hr {
    color: white;
    width: 50%;
  }
  .page-1 .heading-button h5 {
    font-size: medium;
    text-align: left;
    margin-bottom: 30px;
  }
  .page-1 .heading-button a {
    text-decoration: none;
    text-align: center;
    margin: 0;
    color: black;
    background-color: #ffffff;
    width: 50%;
    border: 2px white solid;
    border-radius: 10px;
    padding: 2px;
  }
  .page-2 {
    text-align: center;
  }
  .page-2 .heading-para {
    text-align: center;
  }
  .page-2 .heading-para p {
    text-align: center;
  }
  .page-2 ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(1, minmax(0px, 1fr));
    gap: 80px;
    text-align: center;
  }
  .page-2 ul li {
    border: 1px solid rgba(0, 0, 0, 0.188);
    padding: 20px;
    text-align: center;
    border-radius: 20px;
    margin-right: 20px;
  }
  .page-3 {
    margin-top: 50px;
    text-align: center;
  }
  .page-3 img {
    width: 50%;
  }
  .page-3 h1 {
    text-decoration: none;
  }
  .page-3 ul {
    list-style: none;
    display: grid;
    margin-bottom: 50px;
    overflow-x: hidden;
    grid-template-columns: repeat(1, minmax(0px, 1fr));
  }
  .page-3 ul .card {
    height: 300px;
    border-radius: 20px;
  }
  .footer {
    overflow-x: hidden;
    margin-top: 20px;
    width: 100%;
  }
  .footer img {
    width: 40%;
    transform: translate(-20px, 100px);
    position: absolute;
    right: 20px;
    width: 60px;
    text-align: left;
    margin: 0;
    padding: 0;
  }
  .footer p {
    width: 100%;
  }
  .footer .phone-no, .footer .address, .footer .support, .footer .contact-us {
    width: 60%;
    margin: 0;
    padding: 0;
  }
  .logo-big {
    width: 50px !important; /* Adjust as needed */
    transition: width 0.3s ease; /* Add smooth transition */
    font-size: 0px;
  }
  .logo-small {
    width: 20px !important; /* Adjust as needed */
    transition: width 0.3s ease; /* Add smooth transition */
  }
  .visible-nav {
    background-color: rgba(255, 255, 255, 0.1254901961) !important;
    transition: 0.3s ease;
  }
  .less-visible-nav {
    background-color: #ffffff !important;
    transition: 0.3s ease;
  }
}/*# sourceMappingURL=home.css.map */