

.banner-sub-img {
    width: 100%;
    z-index: 99999;
    display: block;
    position: absolute;
    bottom: -20px;
    right: 0;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype'),
         url('../fonts/static/Poppins-Regular.woff') format('woff'),
         url('../fonts/static/Poppins-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Poppinsb';
  src: url('../fonts/static/Poppins-Bold.ttf') format('truetype'),
         url('../fonts/static/Poppins-Bold.woff') format('woff'),
         url('../fonts/static/Poppins-Bold.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Poppinsm';
  src: url('../fonts/static/Poppins-SemiBold.ttf') format('truetype'),
         url('../fonts/static/Poppins-SemiBold.woff') format('woff'),
         url('../fonts/static/Poppins-SemiBold.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

.fa-bars:before {
    content: "\f0c9";
}

.hero-section-2 .container {
    width: 95%;
    max-width: 95% !important;
}



@media (min-width: 1900px) {
    .hero-2 .hero-content h1 {
      font-size: 60px;
      color: var(--white);
      font-weight: 900;
      letter-spacing: 0.5px;
    }

    .hero-2 .hero-content p {
      font-size: 22px;
      font-weight: 300;
      color: var(--white);
      margin: 40px 0 0;
      font-family: 'Poppins', sans-serif;
      font-style: italic;
      letter-spacing: 0.4px;
    }

    .header-main .main-menu ul li a {
        display: inline-block;
        font-size: 18px; 
    }
    .header-2 .header-left {
      display: flex;
      align-items: center;
      gap: 200px;

    }
    .hero-2 {
      padding: 180px 0 180px;
      position: relative;
    }
}

.brand-name {
    font-style: italic;
    text-transform: uppercase;
    font-weight: 600;
    color: #792315;
    margin-right: 5px;
    font-size: 18px;
    font-family: "Poppinsb", sans-serif;
}

.about-section .section-title {
    margin-bottom: 30px;
    margin-top: 0px;
}

.divider-grad {
    width: 39%;
    height: 2.5px;
    background: linear-gradient(45deg, #e1ba49, #e4c152, transparent);
    margin: 6px 0 6px;
}

@media (max-width: 1300px) {
  .header-2 .header-left {
    display: flex;
    align-items: center;
    gap: 100px !important;
  }
}

.footer-widget-wrapper .single-footer-widget .widget-head img {
    background: #fff;
    padding: 5px;
    border-radius: 10px;
    width: 284px;
}

.brand-image img {
    width: 100%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin: 20px 0;
    border-radius: 5px;
    transition: all 500ms ease;
}

.brand-image img:hover {
    transform: scale(0.9);
}

@media (max-width: 767px) {
  .header-2 .header-right .header-contact .info-items {
    display: none;
  }
  nav#mobile-menu {
    display: none;
  }

  .header-2 .header-left a.header-logo img {
    width: 150px;
  }

  .hero-2 .hero-content p {
    display: none;
  }

  .hero-2 .hero-content .hero-button {
    display: none;
  }

  

    .hero-2 {
        padding: 0px 0 48px;
        position: relative;
    }
}

.industries img {
    width: 100%;
    background: #fff;
    border-radius: 15px;
}
.industries img:hover{
    transform: scale(1.12)!important;
        /* transform: translateY(-12px) scale(1.02)!important; */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25)!important;
}

.industries .col-xl-2 {
    width: 20%;
}

.industries .row {
    gap: 40px 0px;
}

.industry-name {
    text-align: center;
    font-size: 35px;
    color: #fff;
    background: #701612;
    width: max-content;
    padding: 0px 20px;
    border-radius: 7px;
}



.industries .col-xl-6 {
    align-items: center;
    justify-content: center;
    display: flex;
}

.industry-sec {
    background: #f9e9b6;
}

/* Make the cols act as hover containers */
.industries .col-xl-2,
.industries .col-xl-3 {
    position: relative;
}

/* Zoom effect on image */
.industries .col-xl-2 img,
.industries .col-xl-3 img {
    transition: transform 0.3s ease;
}

.industries .col-xl-2:hover img,
.industries .col-xl-3:hover img {
    transform: scale(1.05);
}

/* Tooltip base (hidden by default) */
.industries .col-xl-2::after, .industries .col-xl-3::after {
    content: attr(data-name);
    position: absolute;
    left: 50%;
    bottom: -12.5%;
    transform: translateX(-50%);
    background: #701612;
    color: #fff;
    font-size: 16px;
    padding: 4px 20px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
}

/* Show on hover */
.industries .col-xl-2:hover::after,
.industries .col-xl-3:hover::after {
    opacity: 1;
}

