@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap');

/* header */

:root {
  --hb-underline-img: url("../images/agentic_ai/lines.png");
  --hb-underline-w: 60px;
  --hb-underline-h: 20px;
}

.hb-header {
  background: linear-gradient(to right, #000000, #0a0a0a);
  font-family: 'Raleway', sans-serif;
}

.hb-header .navbar-brand img {
  max-height: 35px;
}

.hb-header .navbar-nav .nav-item {
  position: relative;
  margin: 0 4px;
}

.hb-header .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF !important;
  padding: 10px 12px;
  display: inline-block;
  position: relative;
}

/* Dropdown menu */
.hb-header .dropdown-menu {
  background-color: #0a0a0a;
  border: none;
  padding: 8px 0;
  margin-top: 8px;
}

.hb-header .dropdown-item {
  color: #fff;
  font-size: 16px;
  padding: 6px 16px;
}

.hb-header .dropdown-item:hover {
  background-color: #204153;
}

.hb-header .nav-item>.nav-link::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: var(--hb-underline-w);
  height: var(--hb-underline-h);
  background-image: var(--hb-underline-img);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.hb-header .nav-item:hover>.nav-link::before {
  opacity: 1;
}


@media (min-width: 992px) {
  .hb-header .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }
}


@media (max-width: 991.98px) {
  .hb-header .nav-item>.nav-link::before {
    bottom: -6px;
  }
}





/* footer start here */
.footer {
  font-family: 'Raleway', sans-serif;
}



.footer {
  padding: 80px 0;
  background-image: url(../images/agentic_ai/footer-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
  overflow: hidden;
}

.footer .hb-info {
  padding-right: 40px;
}

.footer .product-solution {
  padding-left: 30px;
}

.footer .about-hb {
  padding-left: 20px;
}

.footer .hb-sitemap {
  padding-left: 20px;
}

.footer .footer-meta p,
.footer .footer-meta span,
.footer .footer-contact p,
.footer a {
  color: #ffffff;
  font-weight: 400;
  font-size: 14px;
  text-decoration: none;
}

.footer .footer-meta h4 {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 14px;
}

.footer .footer-meta span {
  color: #9370DB;
}

.footer .footer-logo {
  margin-bottom: 25px;
}

.footer .footer-logo img {
  max-height: 50px;
}

.footer .footer-contact {
  margin-top: 25px;
}

/* .footer .footer-contact i {
  margin-right: 10px;
} */

.footer h5 {
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 16px;
  color: #ffffff;
}

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

.footer ul li {
  margin-bottom: 5px;
}

.footer-contact {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 8px;
  color: #ccc;
}

.footer-contact img {
  margin-right: 10px;
}

.footer-contact a {
  color: #ccc;
  text-decoration: none;
}

.footer .hb-rights p {
  color: #93919D;
  font-weight: 500;
  font-size: 14px;
  margin-top: 80px;
}

@media (max-width: 767.98px) {
  .footer h5 {
    margin-top: 20px;
  }

  .footer .col-6 {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    margin-left: 0 !important;
  }

  .navbar-brand img {
    max-height: 25px;
  }
}

/* footer */

.footer {
  overflow: visible;
}

.footer .footer-country .btn.country-toggle {
  background: transparent;
  border: 1px solid #444;
  color: #fff;
  font-size: 14px;
  padding: 5px 12px;
}

.footer .footer-country .dropdown-menu {
  background: #0a0a0a;
  border: 1px solid #444;
  min-width: 110px;
  z-index: 1055;
}

.footer .footer-country .dropdown-item {
  color: #fff;
  font-size: 14px;
  padding: 6px 12px;
}

.footer .footer-country .dropdown-item:hover {
   background-color: #204153;
}
.footer .footer-country{
  margin-top: 20px;
}
.footer .footer-country .flag-icon {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
}


.footer .footer-social a {
  display: inline-block;
  margin-right: 12px;
}

.footer .footer-social img {
  width: 25px;
  height: 20px;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer .footer-social img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

