.banner {
  background: url('img/bannerall.jpeg') center/cover no-repeat;
  height: 30vh;               
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.banner::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5); 
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
}

.banner h1 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 20px;
  
 
}


    .address-card {
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }


    .contact-section img {
      border-radius: 12px;
      object-fit: cover;
      width: 100%;
      height: 100%;
    }

.lead {
  margin-right: 15px !important;
}
.dimension {
  height: 230px;
}

.dimension2 {
  height: 230px;
}

.top-bar {
    background-color: #000;
    color: #fff;
    padding: 14px 0;
    font-size: 14px;
}

.text-scrooling {
    overflow: hidden;
    white-space: nowrap;
    width: 50%;
    position: relative;
}

.text-scrooling span {
    display: inline-block;
    animation: animate-Text 12s linear infinite;
}

@keyframes animate-Text {
    0%{transform: translateX(-100%);}
    100%{transform: translateX(100%);}
}


.navbar-main {
      background: #fff;
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
      height: 80px;
      transition: all 0.3s ease;
    }
    .navbar-main.scrolled {
      background: #f8f9fa;
      box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    }
    .navbar-brand img { height: 50px; }
    .nav-link {
      font-weight: 500;
      margin: 0 8px;
      color: #212529 !important;
    }
    .navbar-nav .nav-link:hover { color: #3b3b3b !important; }
    @media (max-width: 991px) {
      .navbar-nav {
        background: #fff;
        border-radius: 8px;
        padding: 10px;
      }  
    }
