@charset "UTF-8";

/* Contact Section Styles for Department of Statistics Website */

.contact-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 40px auto;
	padding: 0 15px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.3);
	overflow: hidden;
}

.contact-wrapper {
	display: flex;
	background: white;
	margin: 3px;
	border-radius: 18px;
	overflow: hidden;
}

.contact-info {
	flex: 1;
	padding: 50px 40px;
	background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
	color: white;
	position: relative;
}

.contact-info::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
	opacity: 0.3;
}

.contact-title {
	font-size: 32px;
	margin-bottom: 10px;
	color: #ffd700;
	letter-spacing: 2px;
	position: relative;
	z-index: 1;
	font-weight: bold;
}

.contact-subtitle {
	font-size: 16px;
	margin-bottom: 30px;
	color: #e0e0e0;
	font-weight: normal;
	position: relative;
	z-index: 1;
}

.contact-item {
	margin: 20px 0;
	display: flex;
	align-items: flex-start;
	position: relative;
	z-index: 1;
}

.contact-icon {
	width: 40px;
	height: 40px;
	background: rgba(255,255,255,0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	flex-shrink: 0;
	font-size: 18px;
}

.contact-text {
	flex: 1;
	line-height: 1.6;
}

.contact-label {
	font-size: 12px;
	color: #ffd700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 5px;
	font-weight: bold;
}

.contact-value {
	font-size: 15px;
	color: white;
	font-weight: normal;
}

.contact-value a {
	color: #ffd700;
	transition: all 0.3s ease;
	text-decoration: none;
}

.contact-value a:hover {
	color: white;
	text-decoration: underline;
}

.image-section {
	flex: 1;
	position: relative;
	overflow: hidden;
	background: #f0f0f0;
	min-height: 400px;
}

.building-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.building-image:hover {
	transform: scale(1.05);
}

.image-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
	padding: 20px;
	color: white;
}

.image-caption {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 5px;
}

.image-subcaption {
	font-size: 14px;
	font-weight: normal;
	opacity: 0.9;
}

/* Responsive Styles for Contact Section */
@media (max-width: 900px) {
	.contact-wrapper {
		flex-direction: column;
	}
	
	.image-section {
		min-height: 300px;
	}
	
	.contact-info {
		padding: 40px 30px;
	}
	
	.contact-title {
		font-size: 28px;
	}
	
	.contact-subtitle {
		font-size: 14px;
	}
}

@media (max-width: 768px) {
	.contact-container {
		margin: 0 auto 30px auto;
		border-radius: 15px;
	}
	
	.contact-info {
		padding: 30px 20px;
	}
	
	.contact-title {
		font-size: 24px;
	}
	
	.contact-subtitle {
		font-size: 13px;
		margin-bottom: 20px;
	}
	
	.contact-item {
		margin: 15px 0;
	}
	
	.contact-icon {
		width: 35px;
		height: 35px;
		font-size: 16px;
	}
	
	.contact-label {
		font-size: 11px;
	}
	
	.contact-value {
		font-size: 14px;
	}
	
	.image-section {
		min-height: 250px;
	}
}

@media (max-width: 480px) {
	.contact-container {
		margin: 0 10px 25px 10px;
		border-radius: 12px;
	}
	
	.contact-wrapper {
		margin: 2px;
		border-radius: 10px;
	}
	
	.contact-info {
		padding: 25px 15px;
	}
	
	.contact-title {
		font-size: 22px;
		letter-spacing: 1px;
	}
	
	.contact-item {
		margin: 12px 0;
	}
	
	.contact-icon {
		width: 32px;
		height: 32px;
		font-size: 14px;
		margin-right: 12px;
	}
	
	.contact-value {
		font-size: 13px;
	}
	
	.image-section {
		min-height: 200px;
	}
	
	.image-caption {
		font-size: 16px;
	}
	
	.image-subcaption {
		font-size: 12px;
	}
}