/* Unique CSS for this page only */

/* Zoom Effect */
.img-zoom-container {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	margin-bottom: 20px;
}

.img-zoom-container img {
	transition: transform 0.5s ease;
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.img-zoom-container:hover img {
	transform: scale(1.1);
}

.img-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 10px;
	text-align: center;
	font-weight: 500;
}

/* Section Styling */
.gallery-section-title {
    position: relative;
    margin: 3px 20px 30px;
    padding-bottom: 5px;
    border-bottom: 2px solid #3498db;
}

.gallery-section-title h2 {
	display: inline-block;
	background: #3498db;
	color: white;
	padding: 8px 20px;
	border-radius: 30px;
	font-size: 1.3rem;
}

/* Phone List Section */
.phone-list-section {
	background: #f8f9fa;
	padding: 30px 0;
	margin: 40px 0;
	border-radius: 8px;
}

.phone-card {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 3px 10px rgba(0,0,0,0.1);
	margin-bottom: 20px;
	transition: transform 0.3s;
}

.phone-card:hover {
	transform: translateY(-5px);
}

.phone-img {
	height: 180px;
	background: #f1f1f1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.phone-img img {
	max-height: 100%;
	max-width: 100%;
}

.phone-body {
	padding: 15px;
	text-align: center;
}

.phone-price {
	color: #e74c3c;
	font-weight: bold;
	margin: 10px 0;
}

/* Brand Section */
.brand-card {
	text-align: center;
	padding: 20px 10px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 3px 10px rgba(0,0,0,0.1);
	margin-bottom: 20px;
	transition: transform 0.3s;
}

.brand-card:hover {
	transform: translateY(-5px);
}

.brand-img {
	height: 60px;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.brand-img img {
	max-height: 100%;
	max-width: 100%;
}

@media (max-width: 767px) {
	.img-zoom-container img {
		height: 200px;
	}
	
	.phone-img {
		height: 150px;
	}
}

.custom-card{
    background: #f8f9fa;
    padding: 23px;
}