
    html { 
      scroll-behavior: smooth; 

    }
    
    body { padding-top: 70px; } /* offset for fixed navbar */
    section { padding: 80px 0; }

   

    /* Logo */
    .bsb-tpl-logo {
      max-height: 80px;  
      width: auto;       
      object-fit: contain;
      transition: all 0.3s ease;
    }

    /* bello css code for Navbar */
    .navbar {
      transition: all 0.3s ease;
      padding: 20px 0; 
    }

   
    .navbar.shrink {
      padding: 8px 0; 
      background-color: #ffffff; 
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }


    .navbar-collapse .navbar-nav .nav-item {
      margin-left: 20px; 
    }

    .navbar-nav .nav-link {
      color: #0c7f7c !important; 
      font-weight: bold; 
    }

    .navbar-nav .nav-link:hover {
     color: #212529 !important; 
  }

    .navbar.shrink .bsb-tpl-logo {
      max-height: 55px; 
    }

.drawer-link {
  padding: 10px 10px;
  border-radius: 5px;  
  transition: background-color 0.3s ease, color 0.3s ease;
}

.offcanvas-body .navbar-nav .nav-link:hover {
  background-color: #0c7f7c; 
  color: #fff !important;               
}

     /* Bellow css code for hero area */
.hero {
      min-height: 100vh;
      display: flex; 
      align-items: center; 
      justify-content: center;
      text-align: center;
    }
.bsb-circle {
  border-radius: 50%;
  opacity: 0.9;
}



.circle-small {
  width: 120px;
  height: 120px;
}

.circle-big {
  width: 100%;
  max-width: 460px;  
  aspect-ratio: 1/1; 
  background-color: #0c7f7c;
  border-radius: 50%; 
  margin: 0 auto;   
}

.border-dark{
  border: 4px solid #0c7f7c !important;
}

.circle-top {
  width: 100px;
  height: 100px;
}

/* Optional floating animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.bsb-circle {
  animation: float 6s ease-in-out infinite;
}


/* Bellow css for hilights sections */

.hover-card {
  overflow: hidden; 
  border-radius: 0px;
  transition: transform 0.3s ease;
  border: 1px solid #0c7f7c;
}

.hover-card .overlay {
  position: absolute;
  top: 10px;       
  left: 10px; 
  right: 10px; 
  bottom: 10px; 
  background: rgba(12, 127, 124, 0.2);
  opacity: 0;
  border-radius: 0px;
  transition: opacity 0.3s ease;
  pointer-events: none;

}

.hover-card:hover .overlay {
  opacity: 1;
}

.hover-card:hover {
  transform: scale(1.03); 
}

.libertinus-serif-display-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: justify;

}

.fw-bold{
  font-family: "Roboto", sans-serif;
}


/* Bellow css for hilights and about section sections */


.dot-wrapper {
  position: relative;
  display: inline-block;
  padding: 84px 20px 84px 20px; 
}

.dot-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#0c7f7c 1px, transparent 1px);
  background-size: 5px 5px;
  z-index: 99; 
}

.dot-wrapper img {
  display: block;
  max-width: 100%;
  height: auto;
}

.dot-wrapper:hover::before {
  background-image: radial-gradient(red 1px, transparent 1px);
}



.card-custom {
  border: 1px solid #2381a1; 
  border-radius: 0; 
  position: relative;
  overflow: hidden;
  height: 100%;
}


.section-title{
  font-size: 20px;
  font-family: Georgia, serif;
  color: #ffffff; 
  margin-bottom: 1rem;

  display: inline-block;   /* background wraps only around the text */
  background-color:#2381a1;  /* change to your preferred color */
  padding: 5px 10px;        /* optional, adds spacing around text */
  border-radius: 4px;       /* optional, for rounded corners */
  font-weight: bold;  
  
}

/* Bellow css code for timeline */
.card-custom .card-title {
  font-family: Georgia, serif;
  font-weight: 600;
  color: #212529; /* Dark text */
  margin-bottom: 1rem;
}


.card-custom .quarter-circle {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background-color: #2381a1;
  border-top-left-radius: 100%;
}

.process-timeline .timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #2381a1 0%, #2381a1 100%);
  border-radius: 10px;
}

.process-item {
  margin-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.process-card , .card{
  border-radius: 0px;
  transition: transform .2s ease, box-shadow .2s ease;
  background: #ffffff;
  border: 1px solid #2381a1 !important;
}
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 .75rem 1.75rem rgba(13, 110, 253, .12);
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2381a1;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 .25rem .75rem rgba(13, 110, 253, .25);
}

@media (max-width: 991.98px) {
  .process-timeline {
    padding-left: 0;
  }
  .process-item {
    position: relative;
    padding-left: 2rem;
  }
  .process-item::before {
    content: "";
    position: absolute;
    left: .5rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #e5efff, #bfd7ff);
    border-radius: 10px;
  }
}




.btn-color{
  background-color: #2381a1;
}

.btn:hover{
  background-color:#dc3545;
}

.text-icon{
  color: #2381a1;
}