.hero_section {
  background-image: url(../img/hero_banner.jpg);
  height: 60vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;

}

.tiltle_sec {
  padding-top: 75px;
}

.tiltle_sec h1 {
  color: #fff;
  max-width: 562px;
  font-size: 68px;
}

.tiltle_sec h6 {
  color: #d0d0d0;
  font-size: 32px;
  max-width: 476px;
  font-weight: 300;
}

button.btn_hero {
  background: #ffc107;
  font-size: 24px;
  font-weight: 500;
  padding: 10px 20px;
  margin-top: 40px;
  border: 2px solid #ffc107;
  /* Adds a visible border */
  border-radius: 5px;
  outline: none;
  /* Removes default outline */
  box-shadow: 0 0 0 5px rgba(255, 255, 0, 0.5);
  /* Creates spacing effect */
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

button.btn_hero:hover {
  background: #e0a800;
  transform: scale(1.05);
  box-shadow: 0 0 0 8px rgba(255, 165, 0, 0.5);
  /* Expands space on hover */
}

footer a {
  color: #acacac;
}

footer a:hover {
  color: #ffc107;
}

@media screen and (max-width: 1500px) {
  .tiltle_sec h1 {

    font-size: 37px;
  }

  .tiltle_sec h6 {

    font-size: 28px;

  }

  button.btn_hero {

    font-size: 20px;
    font-weight: 500;
    padding: 10px 18px;

  }
}

@media screen and (max-width: 991px) {
  .tiltle_sec h1 {

    max-width: 303px;
    font-size: 32px;
  }

  .tiltle_sec {
    padding-top: 160px;
  }

  .tiltle_sec h6 {

    font-size: 24px;
    max-width: 335px;
    font-weight: 300;
  }

  .footer-nav {
    display: flex;
    margin-top: 7px;
    flex-direction: row;
    flex-wrap: wrap;
  }

}

@media screen and (max-width: 768px) {
  .hero_section {

    height: 22vh;



  }

  .tiltle_sec h1 {
    font-size: 18px;
    max-width: unset;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  }

  .tiltle_sec h6 {
    font-size: 16px;
    max-width: 227px;
    
  }
  .tiltle_sec {
    padding-top: 10px !important;
}
  button.btn_hero {
    font-size: 16px;
    font-weight: 500;
    padding: 5px 10px;
    margin-top: 16px;
}
}