html{
  scroll-behavior:smooth;
}

.footer-section{
    background:#0b1220;
    color:#ccc;
}

.footer-section h4{
    color:#fff;
    font-weight:600;
}

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

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:#ccc;
    text-decoration:none;
    transition:0.3s;
}

.footer-links a:hover{
    color:#00d4ff;
    padding-left:5px;
}

.social-icons a{
    display:inline-block;
    width:35px;
    height:35px;
    line-height:35px;
    text-align:center;
    margin-right:8px;
    border-radius:50%;
    background:#111a2e;
    color:#fff;
    transition:0.3s;
}

.social-icons a:hover{
    background:#00d4ff;
    color:#000;
    transform:translateY(-3px);
}

.map-box iframe{
    box-shadow:0 5px 20px rgba(0,0,0,0.3);
}

.counter-section{
    background-image:url('../img/counter_bg.png');
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    position:relative;
    width:100%;
    min-height:320px;
    display:flex;
    align-items:center;
}
.counter-section::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

.counter-section .container{
    position:relative;
    z-index:2;
}

  /* Base Navbar */
.techno-navbar{
  background: transparent;
  transition: all 0.35s ease;
  padding: 22px 0;
  z-index: 9999;
}

/* Sticky scrolled state */
.techno-navbar.scrolled{
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* Logo */
.techno-navbar .navbar-brand{
  font-size: 26px;
  letter-spacing: 2px;
  transition: all 0.35s ease;
}

.techno-navbar.scrolled .navbar-brand{
  font-size: 20px;
}

/* Nav links */
.techno-navbar .nav-link{
  color: #fff;
  font-weight: 500;
  position: relative;
  transition: 0.3s ease;
}

/* underline animation */
.techno-navbar .nav-link::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #0d6efd;
  transition: 0.3s ease;
}

.techno-navbar .nav-link:hover::after{
  width: 100%;
}

/* CTA buttons smooth shrink */
#callBtn, #quoteBtn{
  transition: all 0.3s ease;
}

/* shrink buttons on scroll */
.techno-navbar.scrolled #callBtn,
.techno-navbar.scrolled #quoteBtn{
  padding: 4px 12px !important;
  font-size: 12px;
}

/* mobile spacing fix */
@media (max-width: 991px){
  .techno-navbar .navbar-nav{
    margin-top: 15px;
  }
}
.navbar-collapse{
  flex-grow: 0 !important;
}

.aboutsection{
  background: #f8f9fa;
}

.about-img{
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 18px;
}

.about-img:hover{
  transform: scale(1.03);
}

/* Button premium feel */
.aboutsection .btn-primary{
  
  padding: 10px 26px;
  transition: all 0.3s ease;
}

.aboutsection .btn-primary:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(13,110,253,0.25);
}

.logo-wrap{
  display: flex;
  align-items: center;
}

.logo-wrap img{
  height: 50px;
  padding: 4px 6px;
  
  border-radius: 10px;

  filter: drop-shadow(0 0 8px rgba(255,255,255,0.9))
            drop-shadow(0 0 15px rgba(255,255,255,0.7));
  transition: all 0.3s ease;
}

.logo-wrap img:hover{
  transform: scale(1.05);
  
}

.techno-navbar .nav-link{
    color:#fff;
    font-size:15px;
    font-weight:500;
    padding:10px 18px !important;
    position:relative;
    transition:0.3s ease;
    display:inline-block;
}

/* HOVER */



/* ACTIVE */

.techno-navbar .nav-link.active{
    color:#0d6efd !important;
    font-weight:600;
}


.techno-navbar .nav-link.active::after{
    content:'';
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:0;
    width:70%;
    height:2px;
    background:#0d6efd;
    border-radius:10px;
}

.navbar .nav-link:hover{
  color: #0d6efd;
  transform: translateY(-1px);
}

/* Mobile only */
@media (max-width:991px){
	
    .navbar-collapse.show{
        background: #0A2342;   /* Your background color */
       
        box-shadow: 0 10px 25px rgba(0,0,0,.25);
    }

    .navbar-nav .nav-link{
        color:#fff !important;
        padding:12px 15px;
        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .navbar-nav .nav-link:last-child{
        border-bottom:none;
    }

    .navbar-collapse .btn{
        width:100%;
        margin-top:10px;
    }
}
