/* --- Skills & Tools Section Responsive Styles --- */
.skills-tools-section {
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

.skills-category {
	margin-bottom: 2.5rem;
}

.skills-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.1rem 0.5rem;
	padding: 0.5rem 0;
	max-width: calc(5 * 120px + 4 * 0.5rem); /* 5 items * item width + 4 gaps */
	margin-left: auto;
	margin-right: auto;
}

.skill-item {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	width: 120px;
	min-width: 120px;
	max-width: 120px;
	height: 120px;
	margin-bottom: 1rem;
	word-break: break-word;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
	border: 1px solid #e0e0e0;
	overflow: hidden;
}

.skill-label-box {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	min-height: 40px;
	max-height: 40px;
	text-align: center;
	font-weight: 600;
	font-size: 1rem;
	background: #f7f7f7;
	border-bottom: 1px solid #e0e0e0;
	padding: 0;
}

.skill-img-box {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 80px;
	min-height: 80px;
	max-height: 80px;
	background: #fafbfc;
	padding: 0;
}

.skill-img-box img {
	max-height: 60px;
	max-width: 60px;
	object-fit: contain;
	display: block;
	margin: auto;
}

@media (max-width: 800px) {
	.skill-item {
		min-width: 70px;
	}
}

@media (max-width: 600px) {
	.skill-item {
		min-width: 60px;
	}
}

@media (max-width: 900px) {
	.skills-tools-section {
		max-width: 98vw;
		padding-left: 10px;
		padding-right: 10px;
	}
}

@media (max-width: 800px) {
	.skills-list {
		gap: 0.5rem 0.5rem;
	}

	.skill-item {
		min-width: 70px;
	}
}

@media (max-width: 600px) {
	.skills-list {
		gap: 0.1rem 0.5rem;
	}

	.skill-item {
		min-width: 60px;
	}
}

.expertise-section {
	padding: 20px 0 0 0
}

.expertise-section h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #2c3e50;
	text-transform: uppercase;
	width: 100%;
	text-align: center
}

.expertise-section h4 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-top: 10px;
	color: #2c3e50
}

.expertise-section ul {
	list-style-type: none;
	padding: 0;
	margin: 0
}

.expertise-section ul li {
	font-size: 1rem;
	padding: 5px 0;
	color: #2c3e50
}

.expertise-section .row {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	width: 80%;
	margin: 0 auto
}

@media (max-width:1200px) {
	.expertise-section .row {
		width: 100%
	}
}

.expertise-section .card {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
	margin: 10px 0;
	padding: 20px;
	box-sizing: border-box;
	flex: 1 1 calc(33.333% - 20px);
	display: flex;
	flex-direction: column;
	height: 100%
}

.expertise-section .col-lg-4,
.expertise-section .col-md-6 {
	padding-left: 10px !important;
	padding-right: 10px !important
}

@media (max-width:768px) {

	.expertise-section .col-lg-4,
	.expertise-section .col-md-6 {
		padding-left: 25px !important;
		padding-right: 25px !important
	}
}

.divider-custom {
	align-items: center;
	justify-content: center;
	margin: 20px 0;
	width: 100%
}

.divider-custom-line {
	width: 40%;
	height: 2px;
	background-color: #2c3e50
}

.divider-custom-icon {
	font-size: 1.5rem;
	color: #1abc9c;
	margin: 0 10px
}

.experience-section {
	padding: 80px 0
}

.experience-section h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #2c3e50;
	text-transform: uppercase;
	width: 100%;
	text-align: center
}

.experience-section .divider-custom {
	align-items: center;
	justify-content: center;
	margin: 20px 0;
	width: 100%
}

.experience-section .divider-custom-line {
	width: 40%;
	height: 4px;
	background-color: #2c3e50
}

.experience-section .divider-custom-icon {
	font-size: 1.5rem;
	color: #1abc9c;
	margin: 0 10px
}

.img-fluid.rounded-shadow {
	margin-top: 20px;
	width: 100%;
	border-radius: 15px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, .1)
}