
/* ========== =====================
	SERVICE SINGLE PAGE
 ========== ======================*/



/* ===== Service Spotlight Area - Complete CSS ===== */
.service-spotlight-area{
	margin-top: 30px;
}

/* Grid container — mobile-first: dividers only BETWEEN items (no outer border) */
.service-spotlight-area .service-spotlight-items {
	display: grid;
	gap: 0;
	margin: 0;
	overflow: visible;
}

/* Every direct child cell (these keep their original col-md-4 col-sm-6 classes in the HTML,
   we just stop relying on Bootstrap floats and drive layout with grid instead) */
.service-spotlight-area .service-spotlight-items > div {
	float: none;
	width: auto;
	max-width: none;
	flex: none;
	position: relative;
	border-right: none;
	border-bottom: 1px solid var(--b2, #e2c9c2);
}

/* ===== BASE (Mobile First) — 0px to 767px : 1 column ===== */
.service-spotlight-area .service-spotlight-items {
	grid-template-columns: 1fr;
}
.service-spotlight-area .service-spotlight-items > div:last-child {
	border-bottom: none;
}

.service-spotlight-area .service-spotlight-items .item {
	padding: 15px 30px;
}

.service-spotlight-area.item-full .service-spotlight-items .item {
	padding: 30px;
}

.service-spotlight-area .service-spotlight-items .item h4 {
	position: relative;
}

.service-spotlight-area.bottom-small {
	padding-bottom: 25px;
}

.service-spotlight-area.default-padding.bottom-none {
	padding-bottom: 30px;
}

.service-spotlight-area .item .icon {
	margin-bottom: 20px;
}

.service-spotlight-area .item .info {
}

.service-spotlight-area .item .icon i {
	background: #ffffff none repeat scroll 0 0;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-moz-box-shadow: 0 0 10px #cccccc;
	-webkit-box-shadow: 0 0 10px #cccccc;
	-o-box-shadow: 0 0 10px #cccccc;
	box-shadow: 0 0 10px #cccccc;
	color: var(--b3);
	display: inline-block;
	font-size: 40px;
	height: 80px;
	line-height: 80px;
	position: relative;
	text-align: center;
	width: 80px;
	z-index: 1;
	/*transition: all 0.5s ease;*/
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	cursor: pointer;
}

.service-spotlight-area .item:hover .icon i {
	background: var(--primary-color, #1a7cd4);
	color: #ffffff;
	transform: scale(1.01);
	box-shadow: 0 8px 25px rgba(26, 124, 212, 0.3);
}

.service-spotlight-area .service-spotlight-items .items-box i {
	background: transparent;
}

.service-spotlight-area .item .icon {
	margin-bottom: 25px;
}

.service-spotlight-area .service-spotlight-items.icon-solid i {
	border-radius: inherit;
	-moz-box-shadow: 0 0 10px #cccccc;
	-webkit-box-shadow: 0 0 10px #cccccc;
	-o-box-shadow: 0 0 10px #cccccc;
	box-shadow: 0 0 10px #cccccc;
	color: #ffaf5a;
	display: inline-block;
	font-size: 50px;
	height: 80px;
	line-height: 80px;
	position: relative;
	text-align: center;
	width: 80px;
}

.service-spotlight-area .item .info h4 {
	font-weight: 600;
	text-transform: capitalize;
	font-size: 20px;
}
.service-spotlight-area .item .info p {
	margin: 0;

	font-size: 14px;
	line-height: 1.6;
	color: var(--text-light);
	margin: 0;
}

.service-spotlight-area .service-spotlight-items.less-icon .items-box.inc-cell .item .info {
	padding-left: 0;
}

.service-spotlight-area .service-spotlight-items .items-box.inc-cell .item .info a {
	color: #666666;
	display: inline-block;
	margin-top: 15px;
	text-transform: uppercase;
}

.service-spotlight-area .service-spotlight-items .items-box.inc-cell .item .info a:hover {
	color: #ffaf5a;
}	


.service-spotlight-area .service-spotlight-items > div.empty {
	display: none;
}


/* ===== TABLET — 768px to 991px : 1 column ===== */
@media (min-width: 768px) {
	.service-spotlight-area .service-spotlight-items {
		grid-template-columns: 1fr;
	}
	.service-spotlight-area .service-spotlight-items > div {
		border-right: none;
		border-bottom: 1px solid var(--b2, #e2c9c2);
	}
	.service-spotlight-area .service-spotlight-items > div:last-child {
		border-bottom: none;
	}
}

/* ===== DESKTOP — 992px to 1199px : 2 columns ===== */
@media (min-width: 992px) {
	.service-spotlight-area .service-spotlight-items {
		grid-template-columns: repeat(2, 1fr);
	}
	.service-spotlight-area .service-spotlight-items > div {
		border-right: 1px solid var(--b2, #e2c9c2);
		border-bottom: 1px solid var(--b2, #e2c9c2);
	}
	.service-spotlight-area .service-spotlight-items > div:nth-child(2n) {
		border-right: none;
	}
	.service-spotlight-area .service-spotlight-items > div:nth-last-child(-n+2) {
		border-bottom: none;
	}
}

/* ===== LARGE DESKTOP — 1200px and above : 3 columns ===== */
@media (min-width: 1200px) {
	.service-spotlight-area .service-spotlight-items {
		grid-template-columns: repeat(3, 1fr);
	}
	.service-spotlight-area .service-spotlight-items > div {
		border-right: 1px solid var(--b2, #e2c9c2);
		border-bottom: 1px solid var(--b2, #e2c9c2);
	}
	.service-spotlight-area .service-spotlight-items > div:nth-child(2n) {
		border-right: 1px solid var(--b2, #e2c9c2);
	}
	.service-spotlight-area .service-spotlight-items > div:nth-last-child(-n+2) {
		border-bottom: 1px solid var(--b2, #e2c9c2);
	}
	.service-spotlight-area .service-spotlight-items > div:nth-child(3n) {
		border-right: none;
	}
	.service-spotlight-area .service-spotlight-items > div:nth-last-child(-n+3) {
		border-bottom: none;
	}
}










/* ========== SERVICE RECENT WORKS ========== */
.service-recent-works-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.service-recent-works-card {
	border-radius: 5px;
	overflow: hidden;
	background: var(--white);
	/*border: 1.5px solid var(--b2);*/
	transition: transform .2s ease, box-shadow .2s ease;
	border: 2px solid #bde0fea8;
	/*box-shadow: 0 16px 40px -8px rgba(26, 124, 212, 0.25);*/
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.service-recent-works-card:hover {
	/*transform: translateY(-2px);*/
	/*border-color: var(--primary-color, #1a7cd4);*/
}


.service-recent-works-thumb {
	height: 170px;
	overflow: hidden;
	position: relative;
}

.service-recent-works-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}

.service-recent-works-card:hover .service-recent-works-thumb img {
	/*transform: scale(1.06);*/
}

.service-recent-works-info {
	padding: 18px;
}

.service-recent-works-tag {
	background: var(--b2);
	color: var(--b4);
	font-size: 11px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 20px;
	display: inline-block;
	margin-bottom: 10px;
	letter-spacing: .02em;
}

.service-recent-works-info h3 {
	font-weight: 700;
	margin-bottom: 4px;
	color: var(--text-mid);
}

.service-recent-works-info p {		
	font-size: 16px;
	color: var(--text-light);
	font-weight: 600;
}

/* ---- Projects section enhancements (overlay + featured card) ---- */

.service-recent-works-grid-feature {
	grid-template-columns: repeat(3, 1fr);
	align-items: start;
}

@media (max-width: 880px) {
	.service-recent-works-grid{
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width:600px) {
	.service-recent-works-grid{
		grid-template-columns: 1fr;
	}
}














/* ========== SERVICE PAGE MAIN CONTENT -  .service-page-card ========== */
.service-page-card {
	background: var(--b1);
	border-radius: 4px;
	padding: 28px 24px;
	border: 1px solid var(--b2);
	/* transition: transform .2s ease, box-shadow .2s ease; */
	/* transition: .25s ease; */
	display: flex;
	flex-direction: column;
}
