/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Genel Ayarlar */
body {
    font-family: 'Poppins', sans-serif;
    color: #4a4a4a;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navbar (Menü) Ayarları */
.navbar {
    transition: all 0.3s ease;
}
.navbar-nav .nav-link {
    font-weight: 600;
    transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
    color: #61ce70 !important;
}
.dropdown-menu {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
}
.dropdown-item {
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}
.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #61ce70;
    padding-left: 20px;
}

/* Buton Efektleri */
.btn {
    transition: all 0.3s ease;
}
.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Hizmet Kartları (Üzerine gelince yukarı kalkma efekti) */
.service-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 15px;
    cursor: pointer;
}
.service-card:hover {
    transform: translateY(-10px);
    background-color: #ffffff !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
}
.service-card:hover i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Form Elemanları */
.form-control {
    border-radius: 8px;
    border-color: #e9ecef;
    font-size: 14px;
}
.form-control:focus {
    box-shadow: none;
    border-color: #61ce70;
}

/* Responsive Düzenlemeler */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section .position-absolute {
        display: none !important; /* Mobilde açılı kesim arkaplanı gizle */
    }
}
/* =========================================
   YENİ NESİL HİZMET DETAY SAYFASI CSS
========================================= */

/* Noktalı Arka Plan Deseni */
.dot-pattern-bg {
    top: -20px;
    left: -20px;
    width: 250px;
    height: 250px;
    background-image: radial-gradient(#d1d1d1 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: 0;
    opacity: 0.7;
}

/* Blob (Organik) Şekilli Görsel Çerçevesi */
.blob-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    /* Gönderdiğin tasarımdaki organik şekli (Blob) oluşturan kod */
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    border: 15px solid #61ce70;
    transition: all 0.5s ease-in-out;
}

/* Hafif bir animasyon efekti (isteğe bağlı, resim yavaşça hareket eder) */
.blob-image-wrapper:hover {
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    border-color: #8acb50;
}

/* Sağ Taraf - Hizmet Alt Başlıkları Tipografisi */
.service-content-wrapper h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.service-content-wrapper p {
    line-height: 1.6;
}

/* Koyu Lacivert İletişim Kutusu */
.contact-box {
    box-shadow: 0 25px 50px rgba(0,0,0,0.2) !important;
}

/* Kutu İçi Dekoratif Yuvarlaklar (Sağ alt ve sol alttaki dalga efektleri) */
.circle-decoration {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    z-index: 1;
}
.circle-1 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
}
.circle-2 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
}

/* Koyu Form Elemanları (Mevcut stilleri bozmadan form-control üzerine yazar) */
.contact-box .form-control {
    background-color: #ffffff;
    border-radius: 4px;
}
.contact-box .form-control:focus {
    box-shadow: 0 0 0 3px rgba(97, 206, 112, 0.3);
}
/* =========================================
   404 SAYFASI ÖZEL ANİMASYON CSS KODLARI
========================================= */

/* Ana Giriş Animasyonları (Keyframes) */

/* 1. ZoomIn (Animasyon kutusu için) */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 2. FadeInUp (Yazılar ve Buton için) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CSS Sınıflarını Oluşturma */

.animate-zoomIn {
    animation: zoomIn 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.animate-fadeInUp {
    opacity: 0; /* Başlangıçta gizli */
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Gecikme (Delay) Sınıfları - Yazıların sırayla gelmesi için */
.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.9s;
}

/* 404 Buton Hover Efekti */
.btn-outline-custom {
    border: 2px solid #61ce70;
    color: #61ce70;
    background-color: transparent;
}

.btn-outline-custom:hover {
    background-color: #61ce70;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(97, 206, 112, 0.2) !important;
}
/* 404 CSS Büyüteç Animasyonu */
.search-animation-circle {
    width: 140px;
    height: 140px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 8px solid #eaf6ec;
}

.search-animation-circle i {
    font-size: 4rem;
    /* Büyüteci sonsuz döngüde hareket ettiren animasyon */
    animation: searchMove 2s infinite ease-in-out;
}

@keyframes searchMove {
    0%, 100% { 
        transform: translate(-10px, -10px) rotate(-15deg); 
    }
    50% { 
        transform: translate(10px, 10px) rotate(15deg); 
    }
}