.banner-carousel-item {
    height: 700px; /* veya istediğiniz yükseklik */
    position: relative;
    overflow: hidden;
}

.banner-carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Slider üzerine hafif karartma */
    z-index: 1;
}

.box-slider-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-slider-text {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.box-slide-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.box-slide-sub-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slider.btn {
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.slider.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .banner-carousel-item {
        height: 500px;
    }
    
    .box-slide-title {
        font-size: 2rem;
    }
    
    .box-slide-sub-title {
        font-size: 1.5rem;
    }
}

/* Owl Carousel özelleştirmeleri */
.banner-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.banner-carousel .owl-nav button {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3) !important;
    border-radius: 50% !important;
    transition: all 0.3s ease;
}

.banner-carousel .owl-nav button:hover {
    background: rgba(255, 255, 255, 0.5) !important;
}

.banner-carousel .owl-prev {
    left: 20px;
}

.banner-carousel .owl-next {
    right: 20px;
}

.banner-carousel .owl-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.banner-carousel .owl-dot span {
    background: rgba(255, 255, 255, 0.5) !important;
}

.banner-carousel .owl-dot.active span {
    background: #fff !important;
}

/* Slider Styles */
.fullscreen-slider {
    width: 100%;
    height: 100vh;
    position: relative;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 3;
}

.slider-content {
    text-align: center;
    max-width: 800px;
    padding: 40px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7); /* Transparan siyah arka plan */
    border-radius: 10px;
    backdrop-filter: blur(5px); /* Bulanık cam efekti */
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.slider-subtitle {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

.slider-subtitle:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #fff;
    margin: 15px auto 0;
}

.slide-description {
    font-size: 3rem;
    margin-bottom: 40px;
    font-weight: 500;
    color: #fff;
    line-height: 1.4;
    text-shadow: none; /* Text shadow'u kaldırdık çünkü artık arka plan var */
}

.slider-button {
    margin-top: 20px;
}

.slider-button .btn {
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 40px;
    transition: all 0.3s ease;
}

.slider-button .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .slider-content {
        padding: 25px;
        margin: 0 15px;
    }
    
    .slider-subtitle {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .slide-description {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .slider-button .btn {
        font-size: 1rem;
        padding: 12px 30px;
    }
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.4);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    color: #fff;
}

/* Pagination Dots */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #fff;
}

/* Projeler Bölümü Stillleri */
.project-area {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-sub-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    color: #333;
    text-align: center;
}

.section-sub-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #007bff;
}

.project-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 300px;
}

.project-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.project-img-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.project-img-container:hover img {
    transform: scale(1.1);
}

.project-item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.project-img-container:hover .project-item-info {
    transform: translateY(0);
}

.project-item-title {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.project-cat a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.project-cat a:hover {
    opacity: 1;
    color: #007bff;
}

@media (max-width: 768px) {
    .project-img-container {
        height: 250px;
    }
    
    .section-sub-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

/* Müşteri Memnuniyeti Bölümü */


.features-list {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.features-list p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.features-list p:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.text-primary {
    color: #007bff !important;
}

/* Haber Bölümü */
.news {
    padding: 80px 0;
    background: #fff;
}

.section-title h3.seo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}

.new_summary_text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Genel Buton Stilleri */
.btn-primary {
    padding: 12px 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    background: #007bff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
    background: #0056b3;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .section-sub-title,
    .kentsel-donusum h2,
    .section-title h3.seo {
        font-size: 2rem;
    }

    .features-list {
        padding: 20px;
    }

    .features-list p {
        font-size: 1rem;
        padding: 10px;
    }

    .project-img-container {
        margin-bottom: 20px;
    }
}

.kentsel-donusum {
    background: url("https://impainsaat.com/front/resimler/333.png") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    color: #fff;
}

.kentsel-donusum p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
}

.kentsel-donusum h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
}

.kentsel-donusum span {
    color: #fff;
}

.kentsel-donusum .basvuru-formu a {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
}

.kentsel-donusum .basvuru-formu a:hover {
    color: #fff;
    text-decoration: none;
}

.kentsel-donusum .basvuru-formu {
    background-color: #f9a825;
}

.news-section .news-card {
    transition: all 0.3s ease;
}

.news-section .news-card:hover {
    transform: translateY(-5px);
}

.hover-primary:hover {
    color: var(--bs-primary) !important;
}

.news-title a {
    transition: color 0.3s ease;
}

.news-image {
    overflow: hidden;
}

.news-image img {
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
} 