body { font-family: 'Poppins', sans-serif; color: #333; }
.top-bar { background: #003366; color: white; font-size: 14px; padding: 8px 0; }
.navbar { box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.btn-primary { background-color: #003366; border: none; padding: 10px 25px; }
.btn-primary:hover { background-color: #002244; }

/* Hero Section */
.hero { 
	background: linear-gradient(rgba(0,51,102,0.7), rgba(0,51,102,0.7)), url('https://images.unsplash.com/photo-1513584684374-8bab748fbf90?auto=format&fit=crop&w=1350&q=80');
	background-size: cover;
	background-position: center;
	color: white;
	padding: 120px 0;
}

/* Hizmet Kartları (Galeri Düzeni) */
.service-gallery-item {
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
	cursor: pointer;
}
.service-gallery-item:hover {
	transform: scale(1.03);
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.service-gallery-img {
	width: 100%;
	height: 200px;
	object-fit: cover; /* Resimlerin kare gridde bozulmamasını sağlar */
}
.service-gallery-title {
	background-color: #003366; /* Firma laciverti */
	color: white;
	text-align: center;
	padding: 12px 5px;
	margin: 0;
	font-size: 15px;
	font-weight: 600;
}

/* WhatsApp Butonu */
.wp-float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 40px;
	right: 40px;
	background-color: #25d366;
	color: #FFF;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 3px #999;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.footer { background: #1a1a1a; color: #ccc; padding: 50px 0; }
.footer h5 { color: white; margin-bottom: 20px; }




/* Usta Profili Galeri Stilleri */
.gallery-pro .gallery-img-wrapper {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-pro .gallery-img-wrapper.large {
    height: 400px;
}

.gallery-pro .gallery-img-wrapper.small {
    height: 196px;
}

.gallery-pro img {
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-pro .gallery-img-wrapper:hover img {
    transform: scale(1.05);
}

.rounded-4 {
    border-radius: 1.25rem !important;
}

.object-fit-cover {
    object-fit: cover;
}

/* Sticky-top mobilde bazen sorun çıkarabilir, düzeltme: */
@media (max-width: 991px) {
    .sticky-top {
        position: static !important;
    }
}