.hero-heading{
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
}

.text-orange{
  color:#FF9914;
}

.text-white{
  color: #ffffff;
}

.btn-orange{
  background-color: #FF9914;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
}
.hero-section {
  margin-left: 50px;
  min-height: 100vh;
  padding-top:200px;
}

.hero-section p {
  font-size: 1.2rem;
}

.custom-navbar{
  background : linear-gradient(90deg, #fbfbfb, #003063, #003063, #003063);
  opacity: 1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.3);
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar .nav-link  {
  color:white;
  padding: 2px 0;
  font-weight: 500;
  font-size: 0.95rem;
}

.navbar .nav-link.text-orange{
  color:#ff9914  ;
}

.btn-outline-orange{
  background-color:#ff9914  ;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s;
  margin-left: 100px;
  vertical-align: middle;
}

.btn-outline-orange:hover{
  background-color: #FF9914;
  color: #fff
}

.navbar-brand{font-size: 14px;
  line-height: 1.2;
  margin-left: 10px;
}

.navbar-brand img{
  margin-left: 35px;
  height: 150;
  width: 73;
  margin-top: 10px;
}


/* Footer General Styling */
.custom-footer{
  background : linear-gradient(90deg, #003063, #003063, #003063);
  opacity: 1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.3);
  padding-top: 10px;
  padding-bottom: 10px;
}

.footer {
  padding-top: 60px;
  padding-bottom: 40px;
  font-size: 1rem; 
}

.footer h6 {
  font-size: 1.15rem;
  margin-bottom: 20px;
}

.footer .footer-link {
  color: #ddd;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: lighter;
}

.footer-link{
  font-weight: lighter;
}

.footer .footer-link:hover {
  text-decoration: underline;
  color: #fff;
}

.footer-logo {
  max-height: 80px;
  margin-bottom: 20px;
}

.footer-bottom {
  font-size: 1rem;
  padding: 15px 0;
}


/* Special effect for Services tab */
    .highliterbutton, a.highliter {
      font-weight: bold;
      font-size: xx-large;
      animation: pulseGlow 2s infinite;
    }
    /* Glow animation */
    @keyframes pulseGlow {
      0%, 100% {
        text-shadow: 0 0 4px rgba(255,255,255,0.6), 0 0 8px rgba(255,255,255,0.4);
        transform: scale(1);
      }
      50% {
        text-shadow: 0 0 8px rgba(255,255,255,1), 0 0 16px rgba(255,255,255,0.8);
        transform: scale(1.5);
      }
    }
