.entry-block, .entry-block-small, .entry-block-xs {
    float: left;
    width: 31%;
    margin: 0 2% 1.625em 0;
    border: 2px solid #ddd;
}

.entry-block-small {
    display: inline-block;
    vertical-align: top;
    margin-bottom: 1.625em;
    /*height: 380px !important;*/
    height: auto;
    background-color: #fff;
    position: relative;
}

.entry-image {
    display: block;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    background-color: #f0f8ff;
	text-align: center;
}

.entry-block .entry-image::before, .entry-block-small .entry-image::before, .entry-block-xs .entry-image::before {
    display: block;
    content: '';
    padding-top: 5%;
}

:after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

:after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.article .entry-block .entry-content, .article .entry-block-small .entry-content, .entry-block-xs .entry-content {
    display: block;
    vertical-align: top;
    width: auto;
    padding: 12px 22px 6px;
}

.entry-block:hover, .entry-block-small:hover, .entry-block-xs:hover {
    -webkit-box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.1);
}

.para{
	font-size: 15px;
	color: #fff !important;
	text-align: justify;
}

.marquee-container {
	height: 312px;
	overflow: hidden;
	position: relative;
}

.marquee-content {
	display: block;
	animation: scrollUp 15s linear infinite;
}

.marquee-container:hover .marquee-content {
	animation-play-state: paused; /* ⏸ pause on hover */
}

.marquee-content .col-12 {
	padding: 5px 0;
}

@keyframes scrollUp {
	0%   { transform: translateY(0); }
	100% { transform: translateY(-50%); } /* half, since content is duplicated */
}

/* jssor slider loading skin spin css */
.jssorl-009-spin img {
	animation-name: jssorl-009-spin;
	animation-duration: 1.6s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

@keyframes jssorl-009-spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

/* Media query for mobile devices */
@media (max-width: 768px) {
	#jssor_1 {
		margin-top: -25 !important;
		/* Set margin-top to 0 for mobile view */
	}
}

.jssora093 {
	display: block;
	position: absolute;
	cursor: pointer;
}

.jssora093 .c {
	fill: none;
	stroke: #fff;
	stroke-width: 400;
	stroke-miterlimit: 10;
}

.jssora093 .a {
	fill: none;
	stroke: #fff;
	stroke-width: 400;
	stroke-miterlimit: 10;
}

.jssora093:hover {
	opacity: .8;
}

.jssora093.jssora093dn {
	opacity: .6;
}

.jssora093.jssora093ds {
	opacity: .3;
	pointer-events: none;
}

.body1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: url('https://newfirestation.test-demo.in/public/new_assets/img/service-bg.jpeg'), #29485d;
    background-size: cover;
    margin: 0;
    padding: 10px 50px;
    color: #fff;
  }

  .container1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 20px;
    max-width: 100%;
    margin: auto;
  }

  .card {
    background-color: #f7f9ff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0px 4px 10px 4px #81b4e7;
  }

  .card:hover {
    background: linear-gradient(90deg, rgb(17, 94, 89) 0%, rgb(17, 94, 89, 1) 30%, rgb(0, 37, 142, .3) 100%);
    transform: translateY(-5px);
    border-color: #3ec0ff;
    h3{
        color:#fff;
    }
  }
  
  .card i {
    font-size: 30px;
    margin-bottom: 15px;
    color: #3ec0ff;
  }

  .card h3 {
    font-size: 16px;
    color: #00258e;
    font-weight: 500;
  }
  
  .name_title{
	color: #00258e !important;
  }
  
  .services {
      text-align: center;
      padding: 30px 20px;
    }

    .services h2 {
      color: #2a2a2a;
      font-size: 28px;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .services h2::after {
      content: "";
      display: block;
    }

    .services .underline {
      display: inline-block;
      width: 80px;
    }

    .services .underline::before {
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      max-width: 100%;
      margin: 10px auto;
    }

    .service-card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      padding: 25px 15px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      background: linear-gradient(90deg, rgb(17, 94, 89) 0%, rgb(17, 94, 89, 1) 30%, rgb(0, 37, 142, .3) 100%);
      h3, p{
          color: #fff;
      }
    }

    .service-card svg {
      width: 40px;
      height: 40px;
      margin-bottom: 12px;
      color: #2b6cb6;
    }

    .service-card p {
      margin: 0;
      color: #333;
      font-size: 14px;
      line-height: 1.4;
    }
	
	.service-number{
		font-size: 25px;
		margin-bottom:5px;
		font-weight: bold;
	}
	
	:root {
		--breadcrumb-bg: url('assets/img/breadcrumb.jpg');
	}
	.breadcrumb-item+.breadcrumb-item::before {
		float: left;
		padding-right: .5rem;
		color: #6c757d;
		content: var(--bs-breadcrumb-divider, "");
	}
	.mlngbtn{
		padding: 10px 28px 14px 0px;
		margin: 19px 0 0 20px;
		font-weight: bold;
		cursor: pointer;
		position: absolute
	}
	@media (max-width: 575px) {
		.btn, .btn.btn-sm, .btn.btn-md {
			font-size: 1.1075rem;
			padding: .375rem .75rem!important;
		}
	}
	
.vision-class{
	font-size: 16px;
	margin: 15px;
	font-weight: 400;
}


