/* Section Spacing */
.section-spacing {
	padding: 60px 0;
}

.section-spacing-lg {
	padding: 80px 0;
}

/* Content Spacing */
.content-gap {
	margin-bottom: 30px;
}

.content-gap-lg {
	margin-bottom: 50px;
}

/* Card Spacing */
.card-spacing {
	margin-bottom: 25px;
}

/* Text Styling */
.section-subtitle {
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #6c757d;
	margin-bottom: 10px;
}

.section-title {
	font-size: 2rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 25px;
	line-height: 1.3;
}

.section-description {
	font-size: 1rem;
	line-height: 1.8;
	color: #555;
}

/* Core Values Overlay */
.core-value-card {
	position: relative;
	overflow: hidden;
	margin-bottom: 20px;
}

.core-value-card img {
	transition: transform 0.3s ease;
}

.core-value-card:hover img {
	transform: scale(1.05);
}

.core-value-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

@media (min-width: 768px) {
	.core-value-overlay {
		font-size: 1.8rem;
	}
}

/* Info Cards */
.info-card {
	padding: 30px;
	margin-bottom: 20px;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	box-shadow: 0 2px 15px rgba(0,0,0,0.05);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
	height: 100%;
}

.info-card:hover {
	box-shadow: 0 5px 25px rgba(0,0,0,0.1);
	transform: translateY(-3px);
}

.info-card-icon {
	width: 50px;
	height: auto;
	margin-bottom: 15px;
}

.info-card-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 12px;
}

.info-card-text {
	font-size: 0.95rem;
	color: #666;
	line-height: 1.7;
	text-align: justify;
}

/* Vision Mission Cards */
.vm-card {
	background: #f8f9fa;
	padding: 25px;
	border-radius: 8px;
	margin-bottom: 20px;
}

.vm-card h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 15px;
}

/* Location List */
.location-list {
	list-style: none;
	padding-left: 0;
	margin-top: 15px;
}

.location-list li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 8px;
	color: #555;
}

.location-list li:before {
	content: "•";
	position: absolute;
	left: 0;
	color: #007bff;
	font-weight: bold;
}

/* Page Header */
.page-header {
	padding: 40px 0 30px;
}

.page-header h2 {
	font-size: 2.2rem;
	font-weight: 700;
	color: #333;
}

/* Core Values Description */
.core-value-description {
	padding: 15px 10px;
	text-align: center;
}

/* VM Card with Blue Background */
.vm-card-blue {
	background-color: #007bff;
	color: #fff;
}

.vm-card-blue h4 {
	color: #fff;
}

.vm-card-motto-text {
	margin-bottom: 0;
	font-style: italic;
	font-size: 1.1rem;
}

/* Hero Image with Object Fit */
.hero-image-cover {
	object-fit: cover;
	height: 100%;
}
