* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
:root {
  --theme-color: #ff6b00;
  --secondary-color: #ffc42e;
  --text-color: #6a6a6a;
  --title-color: #111111;
  --testimonail-background: #f1f8ff;
}
a {
  text-decoration: none;
}
ul li {
  list-style: none;
}
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
ul {
  padding-left: 0;
}
.l_container {
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.l_row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.l_col_70 {
  max-width: 70%;
  flex: 0 0 70%;
  padding: 0 15px;
}
.l_col_50 {
  max-width: 50%;
  flex: 0 0 50%;
  padding: 0 15px;
}
.l_col_30 {
  max-width: 30%;
  flex: 0 0 30%;
  padding: 0 15px;
}
/* ================================ */
/* Navbar Area  */
/* ============================ */
.navbar-nav .nav-link {
    color: var(--title-color)!important; 
    font-weight: 500;
    position: relative;
    padding: 10px 15px;
    transition: color 0.3s ease;
}
.navbar-brand{
  max-width: 200px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.dropdown-item:hover {
    color: #ff5e14 !important; 
}

.dropdown-item {
    font-weight: 600;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    padding-left: 1.5rem; 
    background-color: transparent;
}
.nav-item:hover {
    padding-left:0.5rem; 
    background-color: transparent;
    transition: 0.4s ease-in;
}

.offcanvas-body {
    padding: 2rem 1.5rem;
}

.offcanvas-body .nav-item {
    border-bottom: 1px solid #f8f9fa; 
}

/* =============================== */
/* Banner Section */
/* ============================ */
.hero-contact {
  background: url("images/contact/banner_bg.jpg") no-repeat center center/cover;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 10%;
}

.overlay h1 {
    text-align: left;
  font-size: 35px;
  font-weight: normal;
  color: #fff;
}

.container {
  color: white;
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 15px;
  text-align: left;
}

.breadcrumbs a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
}

.breadcrumbs span {
  margin: 0 5px;
}

.title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 5px;
}


/* ============================== */
/* Contact Section */
/* ============================ */

.underline {
  width: 50px;
  height: 3px;
  background-color: #fff;
}
.contact-container {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  gap: 20px;
  height: 600px;
}

.contact_map {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}
.contact_map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.contact{
    padding-top: 40px;
}
.contact_information h4 {
  font-size: 20px;
  border-bottom: 1px solid #e8e8e8;
  padding-top: 50px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-weight: 700;
}
.contact_infor ul li {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
  padding-top: 20px;
  list-style: none;
  display: flex;
  flex-wrap: wrap; 
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px 0;
}
.contact_infor ul li label {
  width: 100%; 
  max-width: 190px;
  margin-bottom: 10px;
}
.contact_infor ul li label i {
  width: 34px;
  height: 34px;
  font-weight: 700;
  line-height: 34px;
  text-align: center;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  margin-right: 10px;
}
.contact_infor ul li label {
  text-transform: uppercase;
  width: 190px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
}
.contact_infor ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact_infor ul li .des {
  width: calc(100% - 200px);
  display: inline-block;
  vertical-align: middle;
}
.contact_infor li:nth-child(2) .des a {
  color: var(--title-color);
}
.contact_infor li:nth-child(2) .des a:hover {
  color: var(--theme-color);
  transition: 0.5s ease-in;
}
.contact_infor li:nth-child(3) .des a {
  color: var(--title-color);
}
.contact_infor li:nth-child(3) .des a:hover {
  color: var(--theme-color);
  transition: 0.5s ease-in;
}
.contact_infor li:nth-child(4) .des a {
  color: var(--title-color);
}
.contact_infor li:nth-child(4) .des a:hover {
  color: var(--theme-color);
  transition: 0.5s ease-in;
}
.communication{
    margin-bottom: 20px;
}
.communication a {
  max-width: 100%;
}


/* ================================== */
/* Query Section */
/* ================================== */
.form-control {
  background-color: #f2f2f2;
  border: none;
  border-radius: 2px;
  padding: 12px 15px;
  color: #666;
}

.form-control:focus {
  background-color: #ebebeb;
  box-shadow: none;
  border: 1px solid #ccc;
}

.btn-submit {
  background-color: #ffb400;
  color: #222;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  padding: 10px 40px;
  transition: 0.3s;
}

.btn-submit:hover {
  background-color: #e6a200;
}

.container h2 {
    padding-top: 30px;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--title-color);
}

.form-container {
  max-width: 900px;
}

/* ============================ */
/* Footer Section */
/* ============================ */
.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 50px 0 30px 0;
  position: relative;
  overflow: hidden;
}
.footer .logo a{
  max-width: 200px;
}
.footer_bottom a:hover span a{
  color: var(--theme-color);
}
.footer_content_box {
  padding-bottom: 85px;
  border-bottom: 1px solid #ffffff1a;
}
.footer .patter_layer {
  position: absolute;
  background: url("images/footer_background.jpg");
  left: 0;
  bottom: 20;
  width: 100%;
  height: 560px;
  background-position: bottom center;
  background-repeat: repeat-x;
  -webkit-animation: slide 60s linear infinite;
}
@keyframes slide {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1920px 0;
  }
}
.footer_container {
  margin: 0 auto;
  padding: 0 20px;
}
.brand_section,
.links_wrapper,
.footer_bottom {
  position: relative;
  z-index: 3;
}
.logo figure a img {
  display: inline-block;
  max-width: 100%;
}
.description {
  color: #fff;
  line-height: 1.6;
  max-width: 350px;
  margin-bottom: 30px;
}
.contact_info a {
  color: #fff;
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}
.contact_info a:hover {
  color: var(--theme-color);
  transition: 0.5s ease-in;
}
.links_wrapper {
  display: flex;
  justify-content: space-between;
}
.link_group div {
  font-size: 24px;
  margin-bottom: 25px;
}
.link_group div:hover{
   color: var(--secondary-color);
   transition: 0.5s ease;
}
.link_group ul {
  list-style: none;
}
.link_group ul li {
  margin-bottom: 15px;
}
.link_group ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 16px;
}
.link_group ul li a:hover {
  color: var(--theme-color);
  transition: 0.5s ease-in;
}

.footer_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #b0b0b0;
  font-size: 14px;
  padding: 24px 0;
}
.footer_copyright,.footer_copyright span a  {
  color: #fff;
  font-weight: 400;
  transition: all 500ms ease;
}
.footer_copyright span a:hover{
  color: var(--theme-color);
}
.footer_bottom a {
  color: #fff;
  font-weight: 400;
  transition: all 500ms ease;
}
.footer-bottom a span {
  color: var(--theme-color);
}
.social_icons a {
  color: #ffffff99;
  margin-left: 20px;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}
.social_icons a i {
  font-weight: 400;
  font-size: 18px;
}
.social_icons a i:hover {
  color: var(--theme-color);
  transition: 0.5s ease-in;
}
@media (min-width: 768px) {
  .hero-contact {
    height: 400px;
  }

  .title {
    font-size: 3.5rem;
  }
}
@media (max-width: 600px) {
  .info-row {
    flex-direction: column;
  }
  .label-box {
    margin-bottom: 10px;
  }
}