/*Input Your Custom CSS Here*/

.service-list {
   list-style: none;
   padding-left: 0;
   margin: 0;
}

.service-list li {
   margin-bottom: 12px;
}

.service-list li a {
   display: flex;
   align-items: center;
   gap: 10px;
   background: #f9f9f9;
   padding: 10px 15px;
   border: 1px solid #eee;
   border-radius: 6px;
   color: #002147;
   font-weight: 600;
   text-decoration: none;
   transition: all 0.3s ease;
}

.service-list li a i {
   font-size: 18px;
   color: #002147;
   transition: color 0.3s ease;
}

.service-list li a:hover {
   background: #002147;
   color: #fff;
}

.service-list li a:hover i {
   color: #fff;
}

  .widget-tag ul {
      display: grid;
      grid-template-columns: repeat(2, 1fr); /* 2 columns */
      gap: 12px 20px; /* vertical and horizontal spacing */
      padding-left: 0;
      list-style: none;
   }

   .widget-tag ul li {
      margin: 0;
   }

   .widget-tag ul li a {
      display: block;
      background: #f9f9f9;
      border: 1px solid #eee;
      padding: 10px 15px;
      border-radius: 5px;
      color: #002147;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
   }

   .widget-tag ul li a:hover {
      background: #002147;
      color: #fff;
   }


   .blog-list {
   list-style: none;
   padding-left: 0;
   margin: 0;
}

.blog-list li {
   margin-bottom: 12px;
}

.blog-list li a {
   display: flex;
   align-items: center;
   gap: 10px;
   background: #f9f9f9;
   padding: 10px 15px;
   border: 1px solid #eee;
   border-radius: 6px;
   color: #002147;
   font-weight: 600;
   text-decoration: none;
   transition: all 0.3s ease;
}

.blog-list li a i {
   font-size: 18px;
   color: #002147;
   transition: color 0.3s ease;
}

.blog-list li a:hover {
   background: #002147;
   color: #fff;
}

.blog-list li a:hover i {
   color: #fff;
}


.countup-text {
  text-align: center;
}

.counter {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  color: #ffcc00; /* number color yellow */
  font-size: 3rem;
  font-weight: 700;
}

.counter .symbol {
  color: #ffcc00; /* same yellow as number */
  font-size: 2rem;
  margin-left: 5px;
  font-weight: 700;
  line-height: 1;
}

.countup-text h4 {
  color: #fff;
  font-size: 1rem;
  margin-top: 10px;
}


/* Active menu link highlight */
.main-menu ul li a.active {
    color:  #fab909;; /* text color for active */

}

.highlight-title {
   font-size: 22px;
   font-weight: 700;
   color: #FFD700; /* golden shade */
   text-transform: uppercase;
   letter-spacing: 1px;
   margin-bottom: 12px;
   position: relative;
   display: inline-block;
   padding-bottom: 6px;
}

.highlight-title::after {
   content: "";
   position: absolute;
   bottom: 0;
   left: 0;
   width: 60px;
   height: 3px;
   background-color: #FFD700; /* same golden underline */
   border-radius: 2px;
}





.logo-main {
    height: 80px;
    width: auto;
}

.logo-secondary {
      height: 73px;
    width: 188px;
}